home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / AutoItX / calculator.vbs < prev    next >
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 some test calculations"
  32.  
  33. oShell.Run "calc.exe", 1, FALSE
  34.  
  35. ' Wait for the calc window to become active
  36. oAutoIt.WinWaitActive "Calculator", ""
  37.  
  38. ' Send some keystokes to calc
  39. oAutoIt.Send "2*2="
  40. oAutoIt.Sleep 500
  41. oAutoIt.Send "4*4="
  42. oAutoIt.Sleep 500
  43. oAutoIt.Send "8*8="
  44. oAutoIt.Sleep 500
  45. oAutoIt.WinClose "Calc", ""
  46. oAutoIt.WinWaitClose "Calc", ""
  47.  
  48. WScript.Quit
  49.  
  50.