Tiger Posted September 13, 2007 Posted September 13, 2007 I have a litte script with a gui. I have set the option GUIEventOptions. Later i will stop with a click of close the download My UDFs:- _RegEnumKey
PsaltyDS Posted September 13, 2007 Posted September 13, 2007 Later i will stop with a click of close the downloadYou're going to have to explain that last sentence a little more, and like Jeopardy, give us a question... Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Tiger Posted September 13, 2007 Author Posted September 13, 2007 OK. the script load a file from the internet with a progress-bar. i will stop the download with a button. My UDFs:- _RegEnumKey
PsaltyDS Posted September 13, 2007 Posted September 13, 2007 OK. the script load a file from the internet with a progress-bar. i will stop the download with a button.Cool. How to stop the download depends on how you started it. Is it FTP command line, INetGet(), or an _IEAction(), maybe using HTTP UDF...? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Tiger Posted September 14, 2007 Author Posted September 14, 2007 I load the file with INetGet. When I click the button then stops the download with "INetGet("abort")" My UDFs:- _RegEnumKey
PsaltyDS Posted September 14, 2007 Posted September 14, 2007 I load the file with INetGet. When I click the button then stops the download with "INetGet("abort")"OK, makes sense. Is there a question in there somewhere? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
weaponx Posted September 14, 2007 Posted September 14, 2007 (edited) ;Abort button $btnAbort = GuiCtrlCreateButton(bla bla bla) ;GUI loop While 1 Switch GUIGetMsg() Case $btnAbort InetGet("abort") EndSwitch WEnd Edited September 14, 2007 by weaponx
PsaltyDS Posted September 14, 2007 Posted September 14, 2007 ;Abort button $btnAbort = GuiCtrlCreateButton(bla bla bla) ;GUI loop While 1 Switch GUIGetMsg() Case $btnAbort InetGet("abort") EndSwitch WEnd I think he said something about using event mode... Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
weaponx Posted September 14, 2007 Posted September 14, 2007 Well too bad for him. He will use WeaponX mode if I tell him too.
PsaltyDS Posted September 14, 2007 Posted September 14, 2007 Well too bad for him. He will use WeaponX mode if I tell him too.You forgot the sound effect: Shhhnick! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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