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 >
Wrap
Text File
|
1999-09-15
|
429b
|
22 lines
; 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