local myAction = myPage:newAction()
myAction:onRightClick(function()
    log("Heheh I got Right Clicked!")
end) ClickAction:onRightClick(rightFunction)  | Method Property | Fluent Description | Representation | 
|---|---|---|
| rightFunction accepts | a function | |
| Return Value | an Action | 
local myAction = myPage:newAction()
myAction:onLeftClick(function()
    log("Heheh I got Left Clicked!")
end) ClickAction:onLeftClick(leftFunction)  | Method Property | Fluent Description | Representation | 
|---|---|---|
| leftFunction accepts | a function | |
| Return Value | an Action | 
Inherited from Action