I just opened up the Beginner's Tutorial and ran into issues right away.
I am trying to Send the ALT f,ALT Release, a to open the Save As dialog in Notepad but for some reason it will not do it. So I tried the Send keystrokes wizard and it also failed. What it ends up doing is sending the letters f and a into the Notepad text as if it can't register the ALT key for some reason. (the last line: "This is the third and final linefa"
During the running of the macro I can intervene and do the ALT f,a myself and sure enough it continues and saves the file correctly. I really like the Macro Scheduler approach and the feature set looks great but its hard to recommend to my boss when I can't even finish the beginner's tutorial

Anyhow here is the code - any help appreciated!
Rgds
Paraic
Let>filename=c:\temp\newfile.txt
Let>SK_DELAY=20
IfFileExists>filename
DeleteFile>filename
Endif
run>notepad.exe
WaitWindowOpen>Untitled - Notepad
Send> this is the first line
Press Enter
Send>this is the second line
Press Enter
Send>This is the third and final line
Press Enter
GetWindowHandle>Untitled - Notepad,hWndParent
FindObject>hWndParent,Edit,,1,hWnd,X1,Y1,X2,Y2,result
ObjectSendKeys>hWnd,ALT_DN,f,ALT_UP,a
WaitWindowOpen>Save As
Wait>1
Send>filename
Press Enter
WaitWindowClosed>Save As