UIHANDLER OnLoad
Talk0
98,450pages on
this wiki
this wiki
| This article or section is a World of Warcraft API stub. You can help expand it by editing it.
|
Description
The OnLoad handler is called when a frame is created.
frame = CreateFrame("Frame"); -- frame created, OnLoad handler called
frame:SetScript("OnLoad", function() print("Frame loaded") end); -- never called
Arguments
self - the frame being created
