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 / Examples / functions.au3 < prev    next >
Text File  |  2004-02-28  |  936b  |  44 lines

  1. ;
  2. ; AutoIt Version: 3.0
  3. ; Language:       English
  4. ; Platform:       Win9x/NT
  5. ; Author:         Jonathan Bennett (jon@hiddensoft.com)
  6. ;
  7. ; Script Function:
  8. ;   Demo of using functions
  9. ;
  10.  
  11.  
  12. ; Prompt the user to run the script - use a Yes/No prompt (4 - see help file)
  13. $answer = MsgBox(4, "AutoIt Example", "This script will call a couple of example functions.  Run?")
  14.  
  15.  
  16. ; Check the user's answer to the prompt (see the help file for MsgBox return values)
  17. ; If "No" was clicked (7) then exit the script
  18. If $answer = 7 Then
  19.     MsgBox(0, "AutoIt", "OK.  Bye!")
  20.     Exit
  21. EndIf
  22.  
  23.  
  24. ; Run TestFunc1
  25. TestFunc1()
  26.  
  27. ; Run TestFunc2
  28. TestFunc2(20)
  29.  
  30. ; Finished!
  31. MsgBox(0, "AutoIt Example", "Finished!")
  32. Exit
  33.  
  34.  
  35. ; TestFunc1 
  36. Func TestFunc1()
  37.     MsgBox(0, "AutoIt Example", "Inside TestFunc1()")
  38. EndFunc
  39.  
  40.  
  41. ; TestFunc2
  42. Func TestFunc2($var)
  43.     MsgBox(0, "AutoIt Example", "Inside TestFunc2() - $var is: " & $var)
  44. EndFunc