Nice work, it reaqlly helped me, i was lost for a while untill i read this +1k
ya umm how do i determine my mouse posiotion. lets say i wanna click ie then how do i determine where the mouse postion is for ie on my desktop.Quote:
Originally posted by spoonieluv97@Jan 6 2007, 21:15
Any questions? It took me a while to write this :(
ya umm how do i determine my mouse posiotion. lets say i wanna click ie then how do i determine where the mouse postion is for ie on my desktop. [/b][/quote]Quote:
Originally posted by zeroRooter+Jan 19 2007, 23:05--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (zeroRooter @ Jan 19 2007, 23:05)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--spoonieluv97@Jan 6 2007, 21:15
Any questions? It took me a while to write this :(
$nbr=InputBox("Input Box","Give me a number 1-100");InputBox() is a built in GUI function that automatically creates a window where the user enters text or a number. Since there is a '$nbr=' before it, whatever the user enters into the box will be stored into the variable '$nbr' If $nbr>50 Then; If $nbr is greater than 50 THEN do the following until the if is closed MsgBox(0,"Output Box","Your number was greater than 50"); like inputbox, but simply displays text to the user and exits when they click "ok" EndIf; end of the if-statement If $nbr<50 Then MsgBox(0,"Output Box","Your number was less than 50") EndIf If $nbr=50 Then MsgBox(0,"Output Box","Your number was 50") EndIf
$nbr=InputBox("Input Box","Give me a number 1-100");InputBox() is a built in GUI function that automatically creates a window where the user enters text or a number. Since there is a '$nbr=' before it, whatever the user enters into the box will be stored into the variable '$nbr' If $nbr>50 Then; If $nbr is greater than 50 THEN do the following until the if is closed MsgBox(0,"Output Box","Your number was greater than 50"); like inputbox, but simply displays text to the user and exits when they click "ok" ElseIf $nbr<50 Then MsgBox(0,"Output Box","Your number was less than 50") ElseIf $nbr=50 Then MsgBox(0,"Output Box","Your number was 50") EndIf
k.Quote:
Originally posted by bigassmuffin@Jan 20 2007, 05:25
Can be simpler...Code:$nbr=InputBox("Input Box","Give me a number 1-100");InputBox() is a built in GUI function that automatically creates a window where the user enters text or a number. Since there is a '$nbr=' before it, whatever the user enters into the box will be stored into the variable '$nbr' If $nbr>50 Then; If $nbr is greater than 50 THEN do the following until the if is closed MsgBox(0,"Output Box","Your number was greater than 50"); like inputbox, but simply displays text to the user and exits when they click "ok" EndIf; end of the if-statement If $nbr<50 Then MsgBox(0,"Output Box","Your number was less than 50") EndIf If $nbr=50 Then MsgBox(0,"Output Box","Your number was 50") EndIf
Code:$nbr=InputBox("Input Box","Give me a number 1-100");InputBox() is a built in GUI function that automatically creates a window where the user enters text or a number. Since there is a '$nbr=' before it, whatever the user enters into the box will be stored into the variable '$nbr' If $nbr>50 Then; If $nbr is greater than 50 THEN do the following until the if is closed MsgBox(0,"Output Box","Your number was greater than 50"); like inputbox, but simply displays text to the user and exits when they click "ok" ElseIf $nbr<50 Then MsgBox(0,"Output Box","Your number was less than 50") ElseIf $nbr=50 Then MsgBox(0,"Output Box","Your number was 50") EndIf
Theres a program called MacroExpress, and inside that program there is a little tool that is very handy. Where ever you mouse is, it tells you the coordinates of your mouse in that window, on the whole screen, and the color pixel its on. An easier way to do this is to make a mini program with AutoIt that gets your mouse position. I'll give you the code right here:Quote:
Originally posted by spoonieluv97+Jan 20 2007, 00:45--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (spoonieluv97 @ Jan 20 2007, 00:45)</td></tr><tr><td id='QUOTE'> Quote:
Originally posted by -zeroRooter@Jan 19 2007, 23:05
<!--QuoteBegin--spoonieluv97Quote:
@Jan 6 2007, 21:15
Any questions? It took me a while to write this :(
ya umm how do i determine my mouse posiotion. lets say i wanna click ie then how do i determine where the mouse postion is for ie on my desktop.
uhh ya it actually is...Quote:
Originally posted by saulius321@Jan 21 2007, 18:53
its impossible to make program that it close error window in co
dc window i mean
It is possible to make that. I don't think it's possible to do it in AutoIt, but it is in Visual Basic. Once I find some time and my friend gets me VB 2005, I'm gonna start learning it. And for the person that wanted to know about searching for a pixel color, it goes something like this:Quote:
Originally posted by saulius321@Jan 21 2007, 18:53
its impossible to make program that it close error window in co
dc window i mean
It is possible to make that. I don't think it's possible to do it in AutoIt, but it is in Visual Basic. Once I find some time and my friend gets me VB 2005, I'm gonna start learning it. And for the person that wanted to know about searching for a pixel color, it goes something like this:Quote:
Originally posted by spoonieluv97+Jan 22 2007, 00:14--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (spoonieluv97 @ Jan 22 2007, 00:14)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--saulius321@Jan 21 2007, 18:53
its impossible to make program that it close error window in co
dc window i mean
I'm sorry, I can't answer your question because I've never played maple story, so I don't know what ACTool is.Quote:
Originally posted by liljkiller00@Jan 22 2007, 11:10
got a question is autoit for conquer like ACTool for maplestory?
Yeah, what you do is go to Start>All Programs>AutoIt v3>Extras>Decompile from .exe to script. Then you choose location of .exe But when you compile a script to .exe, it still keeps the script which you can still edit and run.Quote:
Originally posted by Coup_de-grāce@Jan 23 2007, 06:16
hey,
Is it possible to translate the exe file back into the script?
If possible, how?
Thx