TDMIS Posted August 1, 2007 Posted August 1, 2007 Win Xp pro: Control panel, power options could someone help me finish the last of this script. If i put in these commands: ControlFocus("Power Options Properties", "OK", "Button4") ControlClick("Power Options Properties", "OK", "Button4") it keeps on going back to the previous tab (Advance). What i want it to do is click the ok button!!!! The script: Run("C:\\Windows\system32\control.exe Powercfg.cpl,,0") WinWait("Power Options Properties") WinActivate("Power Options Properties") Send("{TAB 2}") Send("{-}") ControlFocus("Power Options Properties", "OK", "Button4") ControlClick("Power Options Properties", "OK", "Button4")
enaiman Posted August 1, 2007 Posted August 1, 2007 OK button is Button5 not Button4 SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
enaiman Posted August 1, 2007 Posted August 1, 2007 Did you try Button5? and it didn't work?? SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
TDMIS Posted August 1, 2007 Author Posted August 1, 2007 Nope, it goes back to the previous tab ( Advance ).
TDMIS Posted August 1, 2007 Author Posted August 1, 2007 Nope, it goes back to the previous tab ( Advance ).
PsaltyDS Posted August 1, 2007 Posted August 1, 2007 If the instance number is inconsistent don't use it. The text "OK" is consistent, so use that: Opt("WinTitleMatchMode", 4) $hWin = WinGetHandle("[CLASS:#32770;TITLE:Power Options Properties]") ControlClick($hWin, "", "[CLASS:Button;TEXT:OK]") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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