Widget handler: OnLoad

From AddOn Studio
Revision as of 05:43, 13 February 2021 by Bear (talk | contribs) (→‎Details)
Jump to navigation Jump to search

Widget handlers < OnLoad

Called when a frame is created

OnLoad(frame)

Parameters

Arguments

  • frame (frame) - the frame being created

Details

The OnLoad handler is called when a frame is created.

-- frame created, OnLoad handler called here
frame = CreateFrame("Frame") 

-- never called
frame:SetScript("OnLoad", function() print("Frame loaded") end)