Jump to content

help me finish this script


 Share

Recommended Posts

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")

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...