home *** CD-ROM | disk | FTP | other *** search
- ; Example Script
- ; ==============
- ;
- ; OS: Windows 9x/NT
- ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
- ;
- ; Runs the Multimedia control panel file, pauses then exits
-
- MsgBox, 4, AutoIt Example, Open and then close the multimedia control panel?
- IfMsgBox, NO, Goto, denied
-
- SetTitleMatchMode, 2
- Run, control.exe mmsys.cpl
- WinWaitActive, Multimedia
- Sleep, 2000
- WinClose, Multimedia
-
- denied:
- Exit
-
-
-