Can someone please explain to a newbie like me how I can get the window handle of a Save As window when it starts to download a file, for example from an FTP site?
I'm using Internet Explorer to connect to the FTP site first, and am downloading three zipped files to deal with later.
But even though I've used WaitWindowOpen>Save As*, and that works, as soon as it begins downloading the file (and the file size counts up), it loses focus and the script continues!
Here's the attempted code I have so far (for 1 file), with an attempt to wait for the Save As window to close (which didn't work)

Let>Delay=2
Let>WIN_USEHANDLE=0
WaitWindowOpen>Save As*
SetFocus>Save As*
Wait>Delay
Press>Enter
WaitWindowClosed>Save As*
I bet this is really easy, but I haven't found anything on this in the forums so far!
Thanks