Wikia

WoWWiki

API Frame SetScript

Talk0
98,585pages on
this wiki

Sets the action handler for this frame.

frame:SetScript("handler", function)

Parameters

Arguments

("handler", func)
handler 
String - The handler to attach func to (OnShow, OnEvent, et al)
func 
Function - The function to call. nil to remove the handler. func is called with arguments (frame, arg1, arg2, ...) (event being arg1 for OnEvent handlers)

Example

for i = 1, 4 do
    local frame = getglobal("PartyMemberFrame"..i)
    frame:SetScript("OnShow", frame.Hide)
end

Result

All party frames will be hidden whenever they're shown.

PartyMemberFrame1:SetScript("OnShow", nil)

Result

Removes the OnShow handler from PartyMemberFrame1.


Advertisement | Your ad here

Photos

Add a Photo
62,230photos on this wiki
See all photos >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki