method getMouseEventActions

string getMouseEventActions(string event,int32 button,int32 detail);

Argumente

Zurückgegebener Wert

This method returns the event handler for the given mouse event. This returns the response to the event formatted as a string. (Example: "onMouseUpExecute();")
var box = scene.getBoxById("viewBox");
if (box)
{
    shell.print("Event Handler Is: " + box.getMouseEventActions("mouseUp", "1", 0));
}