Jump to content

Recommended Posts

Posted

Hi,

I'm trying to automate a process in OtsAvPro. The main screen of the program doesn't use regular windows control (like normal menus or toolbars).

All I want is to simulate Alt+f. Of course it works fine manually, but it doesn't work using the script. Is there another way to send the keyboard sequence? What is the common way to control programs that doesn't use the regular windows controls?

AutoItSetOption ( "WinTitleMatchMode", 2 )

WinActivate("[CLASS:OtsAVpro]", "")

If WinActive("[CLASS:OtsAVpro]") Then

Send("!f")

EndIf

Posted

Try:

$hWin = WinGetHandle("[CLASS:OtsAVpro; INSTANCE:1]", "")
ConsoleWrite("$hWin = " & $hWin & @LF)
ControlSend($hWin, "", "", "!f")

Compare the handle reported to the actual window with AU3Info.exe.

And screwing around with WinTitleMatchMode isn't necessary, as advanced specs work by default.

:mellow:

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

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
  • Recently Browsing   0 members

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