metis 0 Posted March 6, 2011 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 Share this post Link to post Share on other sites
Stilgar 13 Posted March 6, 2011 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 jEdit4AutoIt PlanMaker_UDF Share this post Link to post Share on other sites