goto11 Posted March 23, 2008 Share Posted March 23, 2008 (edited) how to drag a url from browser and drop it on a guicreateinput or guicreatedit Thanks for help Edited March 23, 2008 by goto11 Link to comment Share on other sites More sharing options...
martin Posted March 23, 2008 Share Posted March 23, 2008 how to drag a url from browser and drop it on a guicreateinput or guicreateditThanks for helpA simple way to drag and drop highlighted text from anything is to use _Ispressed("01") to see if the left mouse button is pressed. Check if the mouse is over something that you want to drag and if it is send ^c to copy the text. Have a while _IsPressed("01") loop to wait untill the left button is released. Then check where the mouse is and if it's over something where you want the text MouseClick("left") and Send(" ^v"). To see if the mouse is over the correct control in your own gui use the last element of the array returned by GuiGetCursorInfo. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
goto11 Posted March 23, 2008 Author Share Posted March 23, 2008 very interesting idea. thanks . i try Link to comment Share on other sites More sharing options...
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