Help me in Start&Stop and time and Checkbox :D

05/02/2012 19:54 Achat#16
Quote:
Originally Posted by Fairy10 View Post
how with out guis?
Quote:
Originally Posted by osamaman2008 View Post
sorry for i ask many
but thanks in any thing
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...]


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.
Best Regards
05/02/2012 20:13 osamaman2008#17
Quote:
Originally Posted by Achat View Post
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...]


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.
Best Regards
:)
Quote:
Originally Posted by lolkop View Post
at this point, we've reached the limit of noobstuff <.<

if you wanna learn scripting, learn scripting and get rid of that koda generated or copy-pasted shit...

if we cut off the useless, parts of your script, we'll get this:
Code:
While 1
WEnd
this is the last time, i'm going to say this. if you're a beginner, do not start using any gui generator, and ask people in here how to add functionality.

Code:
functionality > design
thats the golden rule for all coders. a gui without any functionallity is totally useless... thats like the uber pc case, without any hardware inside...

if you're building a script, get the main part working first. once that's done you're allowed to design a user interface. do not even think about doing it in the other direction, and ask users in here to add the functionality for your designed gui!
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("Test", 256, 70, 299, 218)
$Button1 = GUICtrlCreateButton("Hid", 16, 8, 75, 25)
$Button2 = GUICtrlCreateButton("Show", 104, 8, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
WEnd
functionality > design
?
05/02/2012 20:27 lolkop#18
:rtfm:

[Only registered and activated users can see links. Click Here To Register...]
05/02/2012 20:34 omer36#19
lol.....

einfach nur... lol....

nicht sein ernst oder?