method boxURLToPath

string boxURLToPath(string url);

Argumente

Zurückgegebener Wert

This method returns the absolute path that the given box URL represents.
function loadFlashMovie()
{
    var box = scene.getBoxById("flash");
    if (box)
    {
        box.Movie = appUtils.boxURLToPath("box://boxelySamples/content/activex/robot3.swf");
    }
}