Hi
I'm trying to make the resizeable script working area what corners define the working coordinates of the pixelsearch.
screen should be appear when u press drag window button in GUI.
I have tryed to look help but am i using wrong words or something but i can't find any help.
here is the script i have so far i am new to autoit and learning scripting.
#include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("UltraCore helper", 553, 319, 192, 124) $Label1 = GUICtrlCreateLabel("Made By Nightcore", 448, 288, 95, 17) $Button1 = GUICtrlCreateButton("Drag Window", 392, 24, 145, 49) GUICtrlSetResizing(-1, $GUI_DOCKAUTO+$GUI_DOCKLEFT+$GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKBOTTOM+$GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd