tazbox | Bonjour, j'ai télécharger Autoit pour pouvoir faire des macro sur mon clavier, mais j'ai un problème avec un script.
J'ai fais un script qui me permet de taper plusieurs touche du clavier grace à la touche f1. Quand j'appuie sur la touche f1 j'ai les touche =)àç qui s'exécute. J'ai voulu améliorer le script pour pouvoir attribuer d'autre touche à f1 tout en pouvant switch entre les deux combinaison de touches que je veux exécuter avec f1. Combinaison 1 =)àç
Combinaison 2 _è-( Je voudrais switch entre les deux combinaison grace à la touche f4. Le problème c'est que j'arrive à switch une première fois mais pas une seconde fois. Au lancement du script je commence avec la combinaison 1, puis quand je fais f4 je switch sur la combinaison 2, mais impossible de revenir sur la combinaison 1.
Si quelqu'un pouvait m'aidé ca serait sympa.
Voila le script
Code :
- Opt('SendKeyDelay', 1)
- Opt('SendKeyDownDelay', 1)
- Opt('MouseClickDownDelay', 1)
- HotKeySet("{F1}","cast" )
- HotKeySet("{F4}","_switch" )
- Dim $test=0
- While 1
- Sleep(100)
- WEnd
- Func cast()
- If $test=0 Then
- Send("=" )
- Send(" )" )
- Send("à" )
- Send("ç" )
- Else
- Send("_" )
- Send("è" )
- Send("-" )
- Send("(" )
- EndIf
- EndFunc
- Func _switch()
- $test=1
- EndFunc
|
Merci d'avance |