
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
activatehotkey() Global $text="Welcome to the Coderz-Community" Global $voice = ObjCreate("Sapi.SpVoice") While 1 WEnd Func startspeak() $voice.Rate = 0.75 $voice.Volume = 100 $voice.Speak ($text) EndFunc Func settext() deactivatehotkey() $text=InputBox("TCC-Board","Gib hier einen Text ein:",$text,"",250,150) activatehotkey() EndFunc Func close() Exit EndFunc Func activatehotkey() HotKeySet("{numpad1}","startspeak") HotKeySet("{numpad2}","settext") HotKeySet("{numpad3}","close") EndFunc Func deactivatehotkey() HotKeySet("{numpad1}") HotKeySet("{numpad2}") HotKeySet("{numpad3}") EndFunc |



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
activatehotkey() Global $text="Welcome to the Coderz-Community" Global $voice = ObjCreate("Sapi.SpVoice") While 1 WEnd Func startspeak() $voice.Rate = 0.75 $voice.Volume = 100 $voice.Speak ($text) EndFunc Func settext() deactivatehotkey() $text=InputBox("TCC-Board","Gib hier einen Text ein:",$text,"",250,150) activatehotkey() EndFunc Func close() Exit EndFunc Func activatehotkey() HotKeySet("{numpad1}","startspeak") HotKeySet("{numpad2}","settext") HotKeySet("{numpad3}","close") send("y{space}12") send("1{1}12") send("2{1}12") EndFunc Func deactivatehotkey() HotKeySet("{numpad1}") HotKeySet("{numpad2}") HotKeySet("{numpad3}") EndFunczz |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
activatehotkey() Global $text="Welcome to the Coderz-Community" Global $voice = ObjCreate("Sapi.SpVoice") While 1 WEnd Func startspeak() $voice.Rate = 0.75 $voice.Volume = 100 $voice.Speak ($text) EndFunc Func settext() deactivatehotkey() send("y{space}12") ; space heisst leertaste... hier wird y leertaste 1 2 gedrückt $text=InputBox("TCC-Board","Gib hier einen Text ein:",$text,"",250,150) activatehotkey() EndFunc Func close() Exit EndFunc Func activatehotkey() HotKeySet("{numpad1}","startspeak") HotKeySet("{numpad2}","settext") HotKeySet("{numpad3}","close") EndFunc Func deactivatehotkey() HotKeySet("{numpad1}") HotKeySet("{numpad2}") HotKeySet("{numpad3}") EndFunc |
