Quantcast
Channel: AutoIt v3 - General Help and Support
Viewing all articles
Browse latest Browse all 12506

Trying to Send() a dynamic variable name

$
0
0
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.

[ 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 ]      
Send(Eval("AOAccount" & "loginNumber"))
I am trying to do the equivalent of:
[ autoit ]      
Send($AOAccount1))

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!

Viewing all articles
Browse latest Browse all 12506

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>