infernothebest Posted September 9, 2005 Posted September 9, 2005 does anyone know how i can jump 2 a line in a autoit script Apple Keybord shortcuts for XP
GaryFrost Posted September 9, 2005 Posted September 9, 2005 there is no goto anymore, you'll have to figure another way, such as an conditional statement or function etc... SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
seandisanti Posted September 9, 2005 Posted September 9, 2005 there is no goto anymore, you'll have to figure another way, such as an conditional statement or function etc...<{POST_SNAPBACK}>if you post your code i'm sure someone could show you another way to get what you want without a goto.
/dev/null Posted September 9, 2005 Posted September 9, 2005 does anyone know how i can jump 2 a line in a autoit script<{POST_SNAPBACK}>yes: jump(+2), an undocumented function. You won't find it in the help file .... __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
/dev/null Posted September 9, 2005 Posted September 9, 2005 if you post your code i'm sure someone could show you another way to get what you want without a goto.Oh, yes please Mr. Inferno (aka Asim). Send us your complete VIRUS script, so we can learn something from you!!! Please !!! __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
seandisanti Posted September 10, 2005 Posted September 10, 2005 yes: jump(+2), an undocumented function. You won't find it in the help file ....<{POST_SNAPBACK}>watch, someone who doesn't want to write a virus is going to look to this post for advice and mess up their script.
/dev/null Posted September 10, 2005 Posted September 10, 2005 watch, someone who doesn't want to write a virus is going to look to this post for advice and mess up their script.<{POST_SNAPBACK}>well, the answer is in post #2. It's not my fault if somebody does not believe that and tries to implement my "advice".CheersKurt __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
Dickb Posted September 10, 2005 Posted September 10, 2005 watch, someone who doesn't want to write a virus is going to look to this post for advice and mess up their script.<{POST_SNAPBACK}>But this realy works, test this:Jump(+1) Jump(+2) Jump(+3) Exit Func Jump($Line) Switch $Line Case 1 MsgBox(0, "Jump", "Line 1") Case 2 MsgBox(0, "Jump", "Line 2") Case Else MsgBox(0, "Jump", "Error: Line not found") Exit EndSwitch EndFunc
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