method execCmd

bool execCmd(string cmd,int32 options,value inputArg);

Argumente

Zurückgegebener Wert

This method executes a command against the the activeX control. There is a predefined list of commands that can be executed against the control. A list of each command and what it does is found below.
function onPasteCmd()
{
    var savedFocusedBox = scene.savedFocusedBox;
    if (savedFocusedBox && savedFocusedBox.boxType == "object")
    {
        savedFocusedBox.execCmd("paste", 0, null);
    }
}