property scene

(r/o) scene scene;

Typ

Zugriff

This property returns the scene object that is contained within this scene box. The scene object returned can be used for finite control over the scene itself.
See the scene object for more information.
function GetTheListCtrl()
{
    var theList = null;
    var sceneBox = scene.getBoxById("embeddedScene1");
    if (sceneBox)
    {
        var theScene = sceneBox.scene;
        if (theScene)
        {
            theList = theScene.getBoxById("testListCtrl");
        }
    }

    return theList;
}