Zag8888 1 Posted June 27, 2019 So using WinGetPos I get the current position of a window, but What If I move the window? How can I regularly check if the window is moved and capture the location of it again? Share this post Link to post Share on other sites
Melba23 3,455 Posted June 27, 2019 Zag8888, The simple way is to check the position at intervals in your idle loop - look at TimerInit/Diff to see how you can do this. The more complicated, but much more elegant, way is to look for the WM_MOVE message sent by the window when it is moved and react accordingly. There are multiple examples on the forum of how you can do this. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
Zag8888 1 Posted September 6, 2019 @Melba23 Thanks for answer, could you please show some example using TimerInit()/Diff()? Thanks Share this post Link to post Share on other sites
JLogan3o13 1,637 Posted September 6, 2019 @Zag8888 there are awesome examples for each in the help file, not sure what more you could need. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Share this post Link to post Share on other sites