cedrIck Posted March 28, 2007 Posted March 28, 2007 Hi Everyone, I have a question here. Lets say I have completed my script and already complied it into an icon on the desktop which i can run it everytime i doubleclick on that icon. My question is that how can i make this script run daily on a certain time (lets say its 5pm everyday) according to the computer's time ??.. I have seen the forum scripts but i dun seem to understand it at all.. really hope someone could help me write this little script to help me on this... thanks.. =) cheers..
MrCreatoR Posted March 28, 2007 Posted March 28, 2007 Hi, if you want to actualy run the script every day it certain time, you can use the windows scheduler.. But if you want that this script will run some tasks in this time, maybe start from here: $Time = "17:00:00" While 1 Sleep(5) $CurrentTime = @HOUR & ":" & @MIN & ":" & @SEC If $CurrentTime = $Time Or $CurrentTime+1 = $Time Or $CurrentTime-1 = $Time Then MsgBox(0, "", "Now we start to do somthing ;) ") ;;;;;; EndIf WEnd Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
cedrIck Posted March 28, 2007 Author Posted March 28, 2007 Hi MsCreatoR, then where do i put my script that i want to do the things??.. $Time = "17:00:00" While 1 Sleep(5) $CurrentTime = @HOUR & ":" & @MIN & ":" & @SEC If $CurrentTime = $Time Or $CurrentTime+1 = $Time Or $CurrentTime-1 = $Time Then MsgBox(0, "", "Now we start to do somthing ") [b] (My script here???)[/b] ;;;;;; EndIf WEnd [b]Or (my Script here???)[/b] Which one is the correct one??.. thanks.. =)
Generator Posted March 28, 2007 Posted March 28, 2007 Hi MsCreatoR, then where do i put my script that i want to do the things??..$Time = "17:00:00"While 1 Sleep(5) $CurrentTime = @HOUR & ":" & @MIN & ":" & @SEC If $CurrentTime = $Time Or $CurrentTime+1 = $Time Or $CurrentTime-1 = $Time Then MsgBox(0, "", "Now we start to do somthing ") (My script here???) ;;;;;; EndIfWEndWhich one is the correct one??.. thanks.. =)Put your script in first 1But I am wondering, won't it run twice or more since 1 second have 1k million seoncds, and your sleep is only 5 million seconds, I think you should try Do....UntilDoNothingUntil $CurrentTime = $Time Or $CurrentTime+1 = $Time Or $CurrentTime-1 = $Time
The Kandie Man Posted March 28, 2007 Posted March 28, 2007 Use this to prevent it from redoing the same thing more than once at the specific time: Global $Time = "17:00:00" ;~ Global $Time = @HOUR & ":" & @MIN & ":" & @SEC + 2;used this for testing Global $b_Initiated = False While 1 Sleep(500) $CurrentTime = @HOUR & ":" & @MIN & ":" & @SEC If $CurrentTime = $Time Or $CurrentTime+1 = $Time Or $CurrentTime-1 = $Time And $b_Initiated = False Then $b_Initiated = True ConsoleWrite("Doing it" &@LF) ;;;;;; EndIf If $b_Initiated = True And $CurrentTime <> $Time Then $b_Initiated = False EndIf WEnd "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire
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