WoW:API Frame StartMoving: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 30: Line 30:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|Frame StartMoving]]
[[Category:API Frame Functions|Frame StartMoving]]

Revision as of 12:40, 27 August 2005

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 action to allow your frame-based object to be moved by the user.

Template:WoW API