WoW:API MouseIsOver
Jump to navigation
Jump to search
isOver = MouseIsOver(frame);
Determines whether or not the mouse is over the specified frame.
- Arguments
- (frame)
- frame
- Frame - The frame to test with
- Results
- isOver
- isOver
- Boolean - A true value if the mouse is over the frame, false otherwise.
- Example
You can determine whether or not the mouse is over the minimap using the below.
if (MouseIsOver(MinimapCluster)) then -- do something end