I want to execute runcommand with a parameter, something like:
RunCommand myParameter
The problem is that I want to store the values to myParameter as strings; that is, I want to store the string “acCmdZoom100” and not its numeric equivalent. Then I want to somehow be able to convert the string to its numeric equivalent so it can be properly processed. So I need a function to do this conversion, so I can use:
RunCommand myFunction( myParameter )
I thought this could be done with Eval, but I can’t get it to work. Any ideas?