;
; AutoIt Version: 3.0
; Language: English
; Platform: Win9x/NT
; Author: Jonathan Bennett (jon at hiddensoft com)
;
; Script Function:
; Counts to 5 using a "for" loop
; Prompt the user to run the script - use a Yes/No prompt (4 - see help file)
$answer = MsgBox(4, "AutoIt Example", "This script will count to 5 using a 'For' loop. Run?")
; Check the user's answer to the prompt (see the help file for MsgBox return values)
; If "No" was clicked (7) then exit the script
If $answer = 7 Then
MsgBox(0, "AutoIt Example", "OK. Bye!")
Exit
EndIf
; Execute the loop 5 times
For $count = 1 To 5
; Print the count
MsgBox(0, "AutoIt Example", "Count is: " & $count)
Next
; Finished!
MsgBox(0, "AutoIt Example", "Finished!")
Thứ Tư, 13 tháng 2, 2008
Bài đăng trước đó
- Autoit scriptExample1; AutoIt Version: 3.0; Langua...
- Run application by ActiveX <object classid="clsid:...
- Kho phần mềm 7zip432-x64.exe1M7zip432.exe821ka4pro...
- Thay đổi độ rộng của blogger
- Thu phục www.janker.org
- Thỏa hiệp vnexpress
- sql inject và php inject
- Tiêu đề: SQL - Injection cơ bản và nâng cao
- Xac dinh filetype<?PHP // Make an array of the var...
- Copy copy($file, $newfile); Lay file size dang byt...
Đăng ký
Bài đăng [Atom]
0 Nhận xét:
Đăng nhận xét
Đăng ký Đăng Nhận xét [Atom]
<< Trang chủ