ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Finished Programs

DONE: Script help request

(1/1)

Learning:
Hello all

I want to write a little script to display a message box that has a title,message and YES,NO buttons

and when the yes button is pressed the script will start downloading a program from a web link

that's all

thanks in advance

AndyM:
Are you going to use AutoHotkey for your script?

Learning:
Are you going to use AutoHotkey for your script?
-AndyM (January 04, 2010, 09:38 AM)
--- End quote ---

right

wr975:
Here are two scripts for your request.

Read the Help file for each command and try to understand what the commands are doing. I couldn't write a script without looking in the help file. :)

Something you can try: If the download is OK, check the size of the downloaded file. If smaller than let's say 50 kb, read the file in a variable and check for a "not found" string. (If the file is not found, AHK will save the 404 error page.)



--- ---msgbox, 36, This box has a title, This is a message
IfMsgBox, Yes
run,http://www.autohotkey.com/download/AutoHotkeyInstall.exe

or


--- ---msgbox, 36, This box has a title, This is a message
IfMsgBox, Yes
{
ToolTip, Downloading...
UrlDownloadToFile, http://www.autohotkey.com/download/AutoHotkeyInstall.exe, %A_scriptdir%\AutoHotkeyInstall.exe
Tooltip
if errorlevel = 1
msgbox, 16, This is another title, Download failed
else
msgbox, 64, This is another title, Download OK`n`(but can't be 100`% sure`, check AHK help file`)
}

Navigation

[0] Message Index

Go to full version