Rustywinger Posted October 3, 2007 Report Posted October 3, 2007 I don't suppose there is any way to have the multiple choice dialog box put a number in a variable instead of a character? This is so I can use the number in the variable as a counter for the repeat function. I guess I can select "Put text into variable" and add a number prefix to the selection, and then delete everything past the first character with a Variable Modify String? Quote
floyd Posted October 3, 2007 Report Posted October 3, 2007 You can, instead, change the "A" through "Z" to an ASCII value and then subtract 64 from the results to get a number 1 through 26. Variable Set %N1% to ASCII Value of %T1% Variable Modify Integer: %N1% = %N1% - 64 Quote
Rustywinger Posted October 3, 2007 Author Report Posted October 3, 2007 I'll be sure to give that a try! Thanks! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.