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 / CPanel.aut < prev    next >
Text File  |  1999-09-15  |  429b  |  22 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Runs the Multimedia control panel file, pauses then exits
  8.  
  9. MsgBox, 4, AutoIt Example, Open and then close the multimedia control panel?
  10. IfMsgBox, NO, Goto, denied
  11.  
  12. SetTitleMatchMode, 2
  13. Run, control.exe mmsys.cpl
  14. WinWaitActive, Multimedia
  15. Sleep, 2000
  16. WinClose, Multimedia
  17.  
  18. denied:
  19. Exit
  20.  
  21.  
  22.