09-07-2009, 12:26 PM
Codice:
;semplice launcher
MsgBox, 0, Benvenuto,Devil Easy Launcher è un semplice launcher di programmi.
Process Priority,,High
SetBatchLines, -1
TrayTip , Devil Easy Launcher, Devil Easy Launcher è posizionato qui, 5, 1
SetWorkingDir %A_ScriptDir%
#Persistent
Menu, Tray, NoStandard
Menu, tray, add, Calcolatrice, calcolatrice
Menu, tray, add, Notepad, notepad
Menu, tray, add, Paint, paint
Menu, tray, add
Menu, tray, add, Cmd, cmd
Menu, tray, add, Ip,ip
Menu, tray, add, Esci, exit
return
calcolatrice:
MsgBox, 4, Calcolatrice, Avviare la calcolatrice?
IfMsgBox No
return
else
run calc.exe
return
Notepad:
MsgBox, 4, Notepad, Avviare blocco note?
IfMsgBox No
return
else
run notepad.exe
return
paint:
MsgBox, 4, Paint, Avviare paint?
IfMsgBox No
return
else
run mspaint.exe
return
cmd:
MsgBox, 4, Cmd, Avviare cmd?
IfMsgBox No
return
else
run cmd.exe
return
ip:
MsgBox, 4, IP, Vuoi sapere il tuo ip?
IfMsgBox No
return
else
MsgBox, % A_IPAddress1
return
exit:
MsgBox, 4, Esci, Vuoi Uscire?
IfMsgBox No
return
else
MsgBox, 0, Bye, Grazie di aver usato il mio launcher :D.
ExitApp
IN COSTRUZIONE