Turing Posted February 2, 2011 Share Posted February 2, 2011 I would like to program a script which would initialize and carry out a completely automatic drag & drop procedure. That is, the script will get a file name and then attempt to convey it over to another running process by means of simulating a drag & drop functionality, without involving any human touch. I have read tons of stuff on the subject, but they all deal with either responding to the drag event or reacting to the drop event.Any help would be appreciated.Cheers,Turing Link to comment Share on other sites More sharing options...
jvanegmond Posted February 2, 2011 Share Posted February 2, 2011 If no one is at the computer, then it is simple. You can use MouseClickDrag to drag the file into the window. You already know the window's x and y coordinates, so it is only a matter of finding where the file is on the window. For this you can use a solution like this: #include <IE.au3> $oIE = _IECreateEmbedded() ; Create a simple GUI for our output GUICreate("Embedded Web control Test", 500, 500) $GUIActiveX = GUICtrlCreateObj( $oIE, 0, 0 , 500, 500 ) GUISetState ();Show GUI _IENavigate($oIE, @DesktopDir, 0) Sleep(5000) Copy the file that you want to drag into a temporary folder where you are sure it is the only file. That way you can ensure that your file is the only file showing up. Navigate the _IE control to that directory, and start the drag operation. github.com/jvanegmond Link to comment Share on other sites More sharing options...
Ascend4nt Posted February 2, 2011 Share Posted February 2, 2011 Try this -> My contributions: Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFs | Process CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen) | Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash Recovery Wrappers/Modifications of others' contributions: _DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity) UDF's added support/programming to: _ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne) (All personal code/wrappers centrally located at Ascend4nt's AutoIT Code) 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