forever 0 Posted February 15, 2005 How can i get the current position (left, top) from a picture? created like this : $basti = GUICtrlCreatePic ("images\l_st.gif", 770, 220, 14, 80) Share this post Link to post Share on other sites
SlimShady 1 Posted February 15, 2005 This should work. $Img_Pos = ControlGetPos("", "", $basti) It's better to specify the GUI title or handle. Example: $GUI_handle = GUICreate('Some GUI') $Img_Pos = ControlGetPos($GUI_handle, "", $basti) Share this post Link to post Share on other sites