Jump to content

Pasting text in _FFOBJ


Recommended Posts

I have a problem because, as I do to paste the text in the window.

Me code Autoit

_FFXPath("//textarea[@id='ChatText']", "", 9)
_FFObj("xpath.value = ''^v''")

Does not paste text in the box just paste the active window on my notepad. The program is running in the background

Link to comment
Share on other sites

I have a problem because, as I do to paste the text in the window.

Me code Autoit

_FFXPath("//textarea[@id='ChatText']", "", 9)
_FFObj("xpath.value = ''^v''")

Does not paste text in the box just paste the active window on my notepad. The program is running in the background

Hello,

try _FFSetValue and ClipGet() instead:

_FFSetValue( ClipGet(), "ChatText", "id")
; or your code:
_FFXPath("//textarea[@id='ChatText']", "", 9)
_FFObj("xpath.value = '" & ClipGet() & "'")

Stilgar

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