Code : Tout sélectionner
run("notepad.exe")
$x="a"
$x=$x+1
Sleep(1000)
send($x)
Code : Tout sélectionner
run("notepad.exe")
$x="a"
$x=$x+1
Sleep(1000)
send($x)
Code : Tout sélectionner
dim $ascii
$ascii=097
run("notepad")
winwait("Sans titre - Bloc-notes")
While $ascii<123
send("{asc "&$ascii&"}")
$ascii=$ascii+1
WEnd