hello,
back with queries, I hope to find help here.
I made this script:
AutoIt
#include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> Opt("GUIOnEventMode", 1) #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 240, 77, -1,-1,-1, $WS_EX_ACCEPTFILES) GUISetOnEvent($GUI_EVENT_DROPPED, "Drop_acc") $Input1 = GUICtrlCreateInput("", 40, 24, 151, 21) GUICtrlSetState(-1, $GUI_DROPACCEPTED) GUISetOnEvent($GUI_EVENT_CLOSE, "_exit") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func Drop_acc() GUICtrlSetData(@GUI_DropId, @GUI_DragFile) EndFunc Func _exit() Exit 1 EndFunc ;==>_exit
I would like someone to help me if you can, can extract from a site (mouse coordinates), not just files from PC.
thanks !