Hi all,
I am trying to use the Send() function to send a string of text that is determined by a dynamic variable name. This variable name is determined by a string of text being combined with which step I am currently on in my For loop.
So, for example, the For loop starts on 1. When it gets to this part...
But it is not working. I have tried declaring $loginNumber as a global variable to make sure that it is able to be accessed, but still no luck.
I've searched all over and believe I should be using the Call/Assign/Eval function, but I'm not exactly sure which to use, or what I'm doing wrong with this eval function. Thanks!
I am trying to use the Send() function to send a string of text that is determined by a dynamic variable name. This variable name is determined by a string of text being combined with which step I am currently on in my For loop.
[ autoit ]
HotKeySet("{ESC}", "Terminate") Global $loginNumber $AOAccount1 = "MPLogin" $AOAccount2 = "TradeLogin" $AOAccountPassword = "password" $AOAccountCount = 1 Func Terminate() Exit 0 EndFunc Func OpenNewAO() ShellExecute("AnarchyOnline.exe", "", "C:\Users\BL\Desktop\Games\Anarchy Online") Sleep(4000) Send("{ENTER}") Sleep(6000) EndFunc Func LoginAO() MouseClick("left",739,353,1) Sleep(500) Send("{CTRLDOWN}{BACKSPACE}{CTRLUP}") Sleep(500) Send(Eval("AOAccount" & "loginNumber")) Sleep(1000) Send("{TAB}") Sleep(500) Send($AOAccountPassword) Sleep(1000) Send("{ENTER}") Sleep(3000) Send("{ENTER}") Sleep(15000) ; Character is logging in and loading EndFunc For $loginNumber = 1 To $AOAccountCount Step +1 OpenNewAO() LoginAO() Next
So, for example, the For loop starts on 1. When it gets to this part...
[ autoit ]
I am trying to do the equivalent of:[ autoit ]
But it is not working. I have tried declaring $loginNumber as a global variable to make sure that it is able to be accessed, but still no luck.
I've searched all over and believe I should be using the Call/Assign/Eval function, but I'm not exactly sure which to use, or what I'm doing wrong with this eval function. Thanks!