499 B
499 B
basalt.getFrame
Returns a base frame by the given id
Parameters:
stringid
Returns:
frameobject
Usage:
- Creates, fetches and shows the "myFirstFrame" object
local main = basalt.createFrame("firstBaseFrame")
local main2 = basalt.createFrame("secondBaseFrame")
main:addButton()
:setText("Show")
:onClick(function()
local frame2 = basalt.getFrame("secondBaseFrame")
if(frame2~=nil)then
frame2:show()
end
end)