method click

void click();

Argumente

Zurückgegebener Wert

This method simulates a click event on the box and in doing so executes the on:click event handler for this box.
function AutomateTask()
{
    var goBtn = scene.getBoxById("theGoBtn");
    if (goBtn)
    {
        goBtn.click();
    }
}