property button

(r/o) int8 button;

Typ

Zugriff

This property returns the value that tells which button was clicked or released. Valid values are:
<box on:mouseDown="onMouseDown();"/>

function onMouseDown()
{
    var eventObj = shell.currentEvent;
    if (eventObj)
    {
        if (eventObj.button == 1)
        {
            shell.print("left mouse button is down");
        }
        else if (eventObj.button == 2)
        {
            shell.print("right mouse button is down");
        }
    }
}