Name
Menubar.Append -- add detached object as last menubar child
Synopsis
moai.DoMethod(id, "Append", obj)
Function
This method can be used to add the detached object specified by obj to the menubar object specified by id. The detached object will be added as the menubar's last child. After this method returns the specified object will change its state from detached to attached. That is why you must no longer use functions that expect a detached object with this object now.

Detached MOAI objects can be created either by calling the moai.CreateObject() function or by explicitly detaching them from their parent by using the Menubar.Remove method.

Inputs
id
id of the menubar object
obj
id of the object to attach

Show TOC