Trying to make a Gui thats transparent, sizable, draggable, thin or no border and no text or other controls that would interfere with transparency. In the end I want a simple, adjustable, movable shape used to highlight certain screen areas.
So far I have:
$myBox = GUICreate("", 200, 300, 100, 500, BitOR($WS_SIZEBOX,$WS_SYSMENU,$WS_POPUP), BitOR($WS_EX_TOPMOST,$WS_EX_WINDOWEDGE))
It is missing a simple drag ability and would like to remove the border.
Thanks in advance,