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 / Calc.vbs < prev    next >
Text File  |  1999-08-19  |  1KB  |  53 lines

  1. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  2. '
  3. ' Example WSH Script (VBScript)
  4. '
  5. '
  6. ' (c)1999 Jonathan Bennett, jbennett@hidden.demon.co.uk
  7. '
  8. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  9.  
  10. ' Require Variants to be declared before used
  11. Option Explicit 
  12.  
  13.  
  14. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  15. ' Declare Variables & Objects
  16. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  17.  
  18. Dim oShell
  19. Dim oAutoIt
  20.  
  21.  
  22. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  23. ' Initialise Variables & Objects
  24. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  25.  
  26. Set oShell = WScript.CreateObject("WScript.Shell")
  27. Set oAutoIt = WScript.CreateObject("AutoItX.Control")
  28.  
  29.  
  30. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  31. ' Start of Script
  32. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  33.  
  34. WScript.Echo "This script will run some test calculations"
  35.  
  36. oShell.Run "calc.exe", 1, FALSE
  37.  
  38. ' Wait for the calc window to become active
  39. oAutoIt.WinWaitActive "Calculator", ""
  40.  
  41. ' Send some keystokes to calc
  42. oAutoIt.Send "2*2="
  43. oAutoIt.Sleep 500
  44. oAutoIt.Send "4*4="
  45. oAutoIt.Sleep 500
  46. oAutoIt.Send "8*8="
  47. oAutoIt.Sleep 500
  48. oAutoIt.WinClose "Calc", ""
  49. oAutoIt.WinWaitClose "Calc", ""
  50.  
  51. WScript.Quit
  52.  
  53.