Hi !
I would like to inform the user that a task (downloading) is performing in my script.
I will not use a progress bar as this will require AppleScriptStudio or Appearance OSAX.
I do not want to get into AppleScriptStudio and you have to pay for Appearance OSAX (the software will be distributed freely).
So I thought I will just display a window saying “Downloading…” and when the download is finished just close this window. How do you do this ?
If I use display dialog the user has to click on buttons and I don’t want that. It must not stop the flow of the applescript too.
Part of my script
if («event JonsgKey») = {“u”} then do shell script "cd " & app_folder_dir & "; " & ¬
“export CVS_RSH=ssh;” & “export CVSROOT=:ext:anoncvs@appdomain.gnu.org:/cvsroot/app;” & ¬
“cvs -z3 co app;”
My script uses the Jon’s commander AS addition as answered here:
http://bbs.applescript.net/viewtopic.php?t=8488&highlight=key
That is if you press on keyboard “u” it will do these commands.
Thanks in advance