Vous pouvez facilement le faire avec un simple script dans Autohotkey.
Téléchargez-le à partir d'ici : http://www.autohotkey.com/
-
Installez Autohotkey.
-
Exécutez-le.
-
Trouvez l'icône verte "H" dans la barre des tâches (en bas à droite).
-
Faites un clic droit sur l'icône et sélectionnez Editer script.
-
Et copier coller ce script ci-dessous.
^!y::
InputBox, input1, How many F10 strokes you want?, , , 250, 100
InputBox, input2, How many seconds between each F10 stroke?, , , 250, 100
if ErrorLevel <> 0
{
MsgBox, CANCEL was pressed.
}
else
{
loop, %input1%
{
Sleep, (input2 * 1000)
Send {F10}
}
MsgBox, "Your F10 script has Ended"
}
return
-
Puis rechargez (à nouveau en faisant un clic droit sur l'icône verte "H" dans la barre des tâches).
-
Appuyez sur Control+Alt+y pour essayer le script ci-dessus.