This is a source of AutoHotkey.
This source or can be converted to the AutoIt?
Please help me.
myPath=%A_Dir%\AllowChk.txt
UrlDownloadToFile, http://www.myserver.com/ExecAllowChk.txt, %myPath%
Sleep, 1000
FileRead, Contents, %myPath%
if not ErrorLevel
{
Sort, Contents
if Contents != Allow
{
filedelete AllowChk.txt
MsgBox %Contents%
Exit
}
}