home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / autoit / AutoIt.exe / AutoIt.msi / Cabs.w1.cab / Snapshot.aut < prev    next >
Text File  |  1999-12-10  |  772b  |  37 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; This script will take a snapshot of the screen using PRINTSCREEN
  8. ; and then paste it into paintbrush
  9.  
  10. MsgBox, 4, AutoIt Example, This script will get a screen snapshot into paintbrush.  Run?
  11. IfMsgBox, NO, Goto, denied
  12.  
  13. Run, notepad.exe
  14. WinWaitActive, Untitled - Notepad
  15. Send, !{PRINTSCREEN}
  16. WinClose, Untitled - Notepad
  17.  
  18. ; Use pbrush.exe under Win9x, mspaint.exe under NT
  19. IfEqual, OS, Windows_NT, Goto, WinNT
  20. Run, pbrush.exe
  21. Goto, Continue
  22. WinNT:
  23. Run, mspaint.exe
  24.  
  25. Continue:
  26. WinWaitActive, untitled - Paint
  27. Send, !e
  28. Send, p
  29. Sleep, 2000
  30. Exit
  31.  
  32. denied:
  33. Exit
  34.  
  35. [ADLIB]
  36. Paint, The image in the clipboard is larger, Send, !y
  37.