Quote:
how with out guis?
It's really not my purpose to farm thanks, but they have made such a great function: [Only registered and activated users can see links. Click Here To Register...]Quote:
sorry for i ask many
but thanks in any thing
Besides i made an example for you:
Code:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.8.1
Author: Achat (www.elitepvpers.com)
#ce ----------------------------------------------------------------------------
; Script Start - Add your own code below here!!! The following code is my code!!
$iTime = Int(InputBox('Hello', 'Please read some tutorials!')) ;Here you enter the frequency - time in which your function gets called. Remember: 1 second = 1000 milliseconds (for 1s type in 1000)
If @error Or $iTime < 1 Then Exit ;For example if you close the InputBox or enter some letters, then $iTime has no value or 0 as value -> Script would crash, so it exits the script.
HotKeySet('{a}', '_Start')
HotKeySet('{b}', '_Stop')
While 1 ;You need a loop - if you haven't a loop, this script would exit.
Sleep(100)
WEnd
Func _PleaseReadSomeMoreTutorialsThankYou()
Send('{1}')
EndFunc ;==>_PleaseReadSomeMoreTutorialsThankYou
Func _Start()
AdlibRegister('_PleaseReadSomeMoreTutorialsThankYou', $iTime) ;You find infos to this command if you put your cursor over it and press F1 ;-)
EndFunc ;==>_Start
Func _Stop()
AdlibUnRegister('_PleaseReadSomeMoreTutorialsThankYou')
EndFunc ;==>_Stop
;Last but not least: If you got questions, feel free to PM me.