am632 Posted April 13, 2016 Posted April 13, 2016 Hi, I have been reading the unicode standard version 8 documentation and I want to use some 'special characters' in my code. For example... local $℔ $℔ = "myVariable" msgbox(0,"",$℔) Is this possible? Thanks
Developers Jos Posted April 13, 2016 Developers Posted April 13, 2016 Nope. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
kcvinu Posted April 14, 2016 Posted April 14, 2016 It's a lot easier to write this code in SciTE or any other IDE and just run it. You will get the answer yourself. Spoiler My Contributions Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language. UDF Link Viewer --- A tool to visit the links of some most important UDFs Includer_2 ----- A tool to type the #include statement automatically Digits To Date ----- date from 3 integer values PrintList ----- prints arrays into console for testing. Alert ------ An alternative for MsgBox MousePosition ------- A simple tooltip display of mouse position GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function Access_UDF -------- An UDF for working with access database files. (.*accdb only)
czardas Posted April 14, 2016 Posted April 14, 2016 (edited) To do something like this with AutoIt, you need to parse the name in some way and assign it using standard word characters. In other words, create your own language syntax. I sometimes do things like this by assigning the hexadecimal returned from StringToBinary(). This method introduces case sensitivity into the variable name, which brings with it some potential uses. Assign() is the function you need. I would only do something like this if it makes the code easier to write. In most situations it just makes things more complicated. Edited April 14, 2016 by czardas kcvinu 1 operator64 ArrayWorkshop
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now