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 / IfEqual.aut < prev    next >
Text File  |  1999-09-14  |  601b  |  25 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Script to show how the MsgBox, InputBox and IfEqual commands work
  8. ;
  9.  
  10. MsgBox, 4, AutoIt Example, Script to demonstrate variables and input boxes. Run?
  11. IfMsgBox, NO, Goto, denied
  12.  
  13. InputBox, MyVar, Example, Please enter the word: WOMBLE
  14. IfEqual, MyVar, WOMBLE, Goto, match
  15.  
  16. MsgBox, 0, Example, You didn't type the correct word!  You typed: %MyVar%
  17. Exit
  18.  
  19. match:
  20. MsgBox, 0, Example, Well done!  You typed in the correct word!  You typed: %MyVar%
  21.  
  22. denied:
  23. Exit
  24.  
  25.