home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / autoit / autoit-v3-setup.exe / AutoItX / notepad.vbs < prev   
Text File  |  2004-03-23  |  1KB  |  50 lines

  1. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  2. '
  3. ' Example WSH Script (VBScript)
  4. '
  5. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  6.  
  7. ' Require Variants to be declared before used
  8. Option Explicit 
  9.  
  10.  
  11. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  12. ' Declare Variables & Objects
  13. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  14.  
  15. Dim oShell
  16. Dim oAutoIt
  17.  
  18.  
  19. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  20. ' Initialise Variables & Objects
  21. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  22.  
  23. Set oShell = WScript.CreateObject("WScript.Shell")
  24. Set oAutoIt = WScript.CreateObject("AutoItX3.Control")
  25.  
  26.  
  27. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  28. ' Start of Script
  29. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  30.  
  31. WScript.Echo "This script will run notepad and type in some text"
  32.  
  33. oShell.Run "notepad.exe", 1, FALSE
  34.  
  35. ' Wait for the Notepad window to become active
  36. oAutoIt.WinWaitActive "Untitled - Notepad", ""
  37.  
  38. ' Send some keystokes to notepad
  39. oAutoIt.Send "Hello, this is line 1{ENTER}"
  40. oAutoIt.Send "This is line 2{ENTER}This is line 3"
  41. oAutoIt.Sleep 1000
  42. oAutoIt.Send "!{F4}"
  43. oAutoIt.WinWaitActive "Notepad", "save the changes?"
  44. oAutoIt.Send "!n"
  45. oAutoIt.WinWaitClose "Untitled - Notepad", ""
  46.  
  47.  
  48. WScript.Quit
  49.  
  50.