Sandro Alvares Posted December 28, 2005 Posted December 28, 2005 Hi all... im programmer web more 6 years!! I love autoit3 in work 2 mounth is little day Look my script of php: <? $num = 1; $word = "sim"; $word1 = "autoit3 victory"; $rider = "word$num"; echo $$rider; ?> But i need make for Autoit3 is not work $num = 1 $word = "sim" $word1 = "autoit3 victory" $rider = "word$num" msgbox(0,"test",$$rider) All that's example ... i need script good au3 I wait answer is thanks Programmer PHP, ASP, CGI, Perl, Delphi, JScript, ......... :)
NegativeNrG Posted December 28, 2005 Posted December 28, 2005 try this: $num = 1 $word = "sim" $word1 = "autoit3 victory" $rider = $word & $num msgbox(0,"test",$rider) im not sure about word$num, so i just guess [size=20]My File Upload[/size]Register at my site and upload.
seandisanti Posted December 28, 2005 Posted December 28, 2005 $num = 1$word = "sim"$word1 = "autoit3 victory"$rider = "word$num"msgbox(0,"test",$$rider)there's your issue... only 1 $ necessary
Moderators SmOke_N Posted December 28, 2005 Moderators Posted December 28, 2005 there's your issue... only 1 $ necessary$num = 1$word = "sim"$word1 = "autoit3 victory"$rider = "word$num"msgbox(0,"test",$$rider)Hmm, looks like Larry caught it, but with the $$ , the variable in quotes wouldn't work either. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
seandisanti Posted December 28, 2005 Posted December 28, 2005 Hmm, looks like Larry caught it, but with the $$ , the variable in quotes wouldn't work either.oops, i didn't even see that concatenation... i saw quotes and moved on, didn't even look at the string...
MrSpacely Posted December 28, 2005 Posted December 28, 2005 It seems those 6 years made you forget to overlook code
seandisanti Posted December 28, 2005 Posted December 28, 2005 It seems those 6 years made you forget to overlook codeoh come on man. everyone does it. hell, i did it while posting in this thread. and i bet if you look back at the older posts of anyone on the forum you'll find atleast one silly error
pingpong24 Posted December 28, 2005 Posted December 28, 2005 hahahaha, happens to everyone. NumCR Super Fast EASY NUMBER OCR, easiest and the fastest AUTOIT OCR released on this forum
seandisanti Posted December 28, 2005 Posted December 28, 2005 oh come on man. everyone does it. hell, i did it while posting in this thread. and i bet if you look back at the older posts of anyone on the forum you'll find atleast one silly errorsorry, this looks like i over-reacted this morning, but i mean it was his very first post asking for help, and i didn't think that mockery would convey the kind of welcome that we want for new users to the forums...
Sandro Alvares Posted December 31, 2005 Author Posted December 31, 2005 Thanks larry... i no wise use command EVAL =S Programmer PHP, ASP, CGI, Perl, Delphi, JScript, ......... :)
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