tehsage Posted July 19, 2006 Posted July 19, 2006 I've always been into programming. I'm taught myself alot of web design and other things. I just found out about this programming language not to long ago, and it seems pretty awesome, yet, I can't find any good tutorial about it. Ugh. Well, anyway, onto the main point of this topic. I want to make a GUI Alarm Clock. I want to have the user choose what alarm they want, the time, and the snooze time. I'm sure this is pretty simple. and I don't want you to make one for me, I just want to know, what should I need to know, and where could I read up on them. Thanks! =]
GerryKeely Posted July 19, 2006 Posted July 19, 2006 I've always been into programming. I'm taught myself alot of web design and other things. I just found out about this programming language not to long ago, and it seems pretty awesome, yet, I can't find any good tutorial about it. Ugh. Well, anyway, onto the main point of this topic. I want to make a GUI Alarm Clock. I want to have the user choose what alarm they want, the time, and the snooze time. I'm sure this is pretty simple. and I don't want you to make one for me, I just want to know, what should I need to know, and where could I read up on them. Thanks! =]See http://www.autoitscript.com/forum/index.ph...hl=analog+clockRegardsGerry
Swimming_Bird Posted July 19, 2006 Posted July 19, 2006 The help file is great for starting basic gui's it's got tons of examples which should help you familiarize yourself with many of the functions. Just search for guicreate then use guictrlcreate... to make buttons/imputs. To read the status of any of the controls use guictrlread. I'd just start playing around with the sample scripts.
tehsage Posted July 19, 2006 Author Posted July 19, 2006 The help file is great for starting basic gui's it's got tons of examples which should help you familiarize yourself with many of the functions.Just search for guicreate then use guictrlcreate... to make buttons/imputs. To read the status of any of the controls use guictrlread.I'd just start playing around with the sample scripts.Um, what do you mean by help file?
Helge Posted July 19, 2006 Posted July 19, 2006 Um, what do you mean by help file?It's in the folder you installed AutoIt in Go to Start-menu -> Programs -> AutoIt v3
rakudave Posted July 19, 2006 Posted July 19, 2006 AutoIt 1-2-3 is a nice "tutorial"http://www.autoitscript.com/forum/index.php?showtopic=21048 Pangaea Ruler new, UDF: _GUICtrlCreateContainer(), Pangaea Desktops, Pangaea Notepad, SuDoku, UDF: Table
themax90 Posted July 19, 2006 Posted July 19, 2006 In my fileman (see my signatuer for a link) there is a clock with a _Time function. Here is the function just incase you missed it:http://www.autoitscript.com/fileman/users/AutoIt%20Smith/AutoIt%20Clock.au3Func Time() Local $Light = " AM", $Hour = @HOUR, $Minute = @MIN, $Sec = @SEC, $Time Select Case $Hour = 0 $Hour = 12 Case $Hour = 12 $Light = " PM" Case $Hour > 12 $Hour = (@HOUR) - 12 $Light = " PM" EndSelect $Time = $Hour & ":" & $Minute & ":" & $Sec & $Light Return $Time EndFunc ;==>TimeHappy Scripting,AutoIt Smith
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now