Anyone else bored? I come to this site everyday reading and learning about how all these talented programmers are making revolutionary programs for 12sky2. I really envy them and I wish I had the knowledge they have. Right now, I'm still reading this 800 page book on C++ (I'm on like pg 100) and after this I'm still not going to be ready to join the big leagues.
So I want to start an open source group project in this thread inviting anyone who develops in AutoIt to make a simple program. I'll add the initial features and everyone can contribute advice and/or criticism.
Here goes:
So I want to start an open source group project in this thread inviting anyone who develops in AutoIt to make a simple program. I'll add the initial features and everyone can contribute advice and/or criticism.
Here goes:
Code:
HotKeySet("{home}", "toggle")
Global $toggle = False
while 1
sleep(100)
WEnd
Func toggle()
$toggle = not $toggle
If $toggle Then
search()
Else
sleep(100)
EndIf
EndFunc
Func search()
EndFunc