Jump to content

cannot copy text from minimized window


Recommended Posts

ClipPut("Leoj")
ControlSend("Untitled", "", "Edit1", "^{a}")
sleep(200)
ControlSend("Untitled", "", "Edit1", "101010")
sleep(200)
ControlSend("Untitled", "", "Edit1", "^{a}")
sleep(600)
ControlSend("Untitled", "", "Edit1", "^c")

If ClipGet() == 101010 Then
    MsgBox(0,"Success", ClipGet())
EndIf

--The only time this script works is when the window is opened AND in focus.

--If the window is minimized or out of focus the script does everything fine besides ... ControlSend("Untitled", "", "Edit1", "^c") ...

Thanks if you can help, ~Leoj

Link to comment
Share on other sites

ClipPut("Leoj")
ControlSend("Untitled", "", "Edit1", "^{a}")
sleep(200)
ControlSend("Untitled", "", "Edit1", "101010")
sleep(200)
ControlSend("Untitled", "", "Edit1", "^{a}")
sleep(600)
ControlSend("Untitled", "", "Edit1", "^c")

If ClipGet() == 101010 Then
    MsgBox(0,"Success", ClipGet())
EndIf

--The only time this script works is when the window is opened AND in focus.

--If the window is minimized or out of focus the script does everything fine besides ... ControlSend("Untitled", "", "Edit1", "^c") ...

Thanks if you can help, ~Leoj

Have you looked in the help file for ControlGetText()? I'm not sure if it will get the tet from a hidden window though. Read the remarks for both ControlSend and ControlGetText. For ControlSend there is a comment that you may have to use ControlFocus() first.

I don't think this is a bug. It's just the normal behavior.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

I think what you mean is that [ctrl+c] only works if the window is in focus...

But what puzzles me is that [ctrl+a] works for a window that is not in focus.

If anything it is probably a problem with how windows functions, and not the auto it code (as I am sending a windows function "ctrl+c").

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...