gte Posted February 4, 2010 Posted February 4, 2010 I need to be able to paste into an input box, but paste the text which is 36 characters, all at once like a right click and paste, which does work when done manually. The reason this is necessary, is because the application that is polling this input box polls it so quickly it will fail if it polls and only part of the text is there. As a side note, the input box controls the contents of the window beneath it. Thanks for reading HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
Moderators Melba23 Posted February 4, 2010 Moderators Posted February 4, 2010 gte,Sounds like an interesting app. How about using ClipPut and then Sending Ctrl-V?M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
gte Posted February 4, 2010 Author Posted February 4, 2010 Hey Old Friend,I tried controlsend("^v") after putting it on the clip board, is that what you mean?gte,Sounds like an interesting app. How about using ClipPut and then Sending Ctrl-V?M23 HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
Moderators Melba23 Posted February 4, 2010 Moderators Posted February 4, 2010 gte, Yes - but do I take from your tone that it does not work? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
gte Posted February 4, 2010 Author Posted February 4, 2010 (edited) Yes, it wasn't working, I believe you cannot use control a/c/v with this craptastic program I'm trying to write to. Here is what I ended up doing after experimenting, it's kind of sloppy with the generic sending of keys to the active window, any ideas on a better way to clean that up? Func currentinbox() If WinExists("HP OpenView ServiceCenter - Incident Queue: Unassigned Incidents - HP OpenView ServiceCenter Client", "") Then Sleep(25) WinActivate("HP OpenView ServiceCenter - Incident Queue: Incidents (Problems) I Opened - HP OpenView ServiceCenter Client", "") Sleep(50) ControlClick("HP OpenView ServiceCenter", "", "[CLASSNN:Edit4]") Sleep(25) Send("{LSHIFT}+{F10}") Sleep(25) Send("s") Sleep(25) ClipPut("Open Incidents Assigned To My Branch") Sleep(25) ControlClick("HP OpenView ServiceCenter", "", "[CLASSNN:Edit4]", "right") Sleep(25) Send("p") Sleep(250) ConsoleWrite("Done" & @crlf) EndIf EndFunc gte, Yes - but do I take from your tone that it does not work? M23 Edited February 4, 2010 by gte HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
Mat Posted February 4, 2010 Posted February 4, 2010 #include <GUIEdit.au3> _GUICtrlEdit_SetText(ControlGetHandle("Window", "", "Edit1"), "My String goes here") Is that not instantaneous? AutoIt Project Listing
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now