chaswigger Posted June 10, 2009 Posted June 10, 2009 I have written a script to watch for the existence of a certain Window with specific text; using an infinite loop and the WinExists function. This definitely works, but the CPU Usage maxes out. This loop has to be real time and I prefer to not use a timer\sleep, which I've already tested with similar high CPU Usage. Any idea on how to throttle the CPU Usage? ;************************* #NoTrayIcon $i=0 Do If WinExists("Oracle Enterprise Single Sign", "The keys in the Synchronizer Extension do not match the keys on this computer. Synchronization will not occur. Please contact your administrator.") Then run("LogoutFlag.exe") Sleep(500) Else EndIf Until $i=1 ;*************************
Moderators Melba23 Posted June 10, 2009 Moderators Posted June 10, 2009 chaswigger,First, welcome to the AutoIt forums. A good start - some code to work on and a clear question. I wish some other newcomers would do the same. ;-)As to your problem, you have the sleep inside the If loop, so it does not work as you need and you get the maxed-out CPU. Try this:#NoTrayIcon $i = 0 Do If WinExists("Oracle Enterprise Single Sign", "The keys in the Synchronizer Extension do not match the keys on this computer. Synchronization will not occur. Please contact your administrator.") Then Run("LogoutFlag.exe") EndIf Sleep(10) Until $i = 1This reduced CPU usage to less than 1 from 50+ on my machine.M23P.S. It is easier to read your code if you use Code tags. Put [code ] before and [/code ] after your posted code (but omit the trailing space - it is only there so the tags display here). Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
infernothebest Posted June 10, 2009 Posted June 10, 2009 try use winwaitactive then you don't need a loop Apple Keybord shortcuts for XP
Inverted Posted June 10, 2009 Posted June 10, 2009 Also, instead of $i=0 Do ........ loop here ....... Until $i=1 You can use While 1 ........ loop here ........ WEnd
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