Wikia

WoWWiki

Watchlist Recent changes

API EnumerateFrames

Main Menue



Returns frame which follows current frame, or first frame if argument is nil. The order of iteration follows the order that the frames were created in.

nextFrame = EnumerateFrames({currentFrame})

Parameters Edit

Arguments Edit

({currentFrame})
currentFrame 
Table - current frame or nil to get first frame

Returns Edit

nextFrame
nextFrame 
Table - the frame following currentFrame or nil if no more frames

Example Edit

local frame = EnumerateFrames()
while frame do
    if frame:IsVisible() and MouseIsOver(frame) then
        DEFAULT_CHAT_FRAME:AddMessage(frame:GetName())
    end
    frame = EnumerateFrames(frame)
end

Result Edit

Prints the names of all visible frames under the mouse cursor to the default chat frame.


Pages on WoWWiki

94,195pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
55,627photos on this wiki
See more >

Recent Wiki Activity

See more >

Recent Questions

Around Wikia's network

Random Wiki