WoW:API Frame StartMoving: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
({{widgetmethod}})
m (fixed a typo for StopMovingOrSizing link)
Line 29: Line 29:
: Moves the frame-based object in relation to where the mouse is being moved.
: Moves the frame-based object in relation to where the mouse is being moved.
: Use this with the [[API RegisterForDrag|RegisterForDrag()]] function to allow your frame-based object to be moved by the user.
: Use this with the [[API RegisterForDrag|RegisterForDrag()]] function to allow your frame-based object to be moved by the user.
: Use the [[API StopMovingOrResizing|StopMovingOrResizing()]] function inside the <OnDragStop>...</OnDragStop> XML section to stop the moving process.
: Use the [[API StopMovingOrSizing|StopMovingOrSizing()]] function inside the <OnDragStop>...</OnDragStop> XML section to stop the moving process.

Revision as of 03:23, 17 June 2006

Widget API ← Frame < StartMoving

StartMoving -Documentation by AeroBrain-

Moves the frame-based object in relation to where the mouse is being moved.

obj:StartMoving();

Arguments
nil

Returns
nil

Example
myAddonFrame:StartMoving();
Result
The frame named 'myAddonFrame' would start to move in relation to where the mouse is being moved.

Description
Moves the frame-based object in relation to where the mouse is being moved.
Use this with the RegisterForDrag() function to allow your frame-based object to be moved by the user.
Use the StopMovingOrSizing() function inside the <OnDragStop>...</OnDragStop> XML section to stop the moving process.