View Single Post
  #5  
Old 03-06-2011, 01:39 AM
salesman salesman is offline
Finger lickin' good.
salesman's Avatar
Join Date: Nov 2008
Location: Colorado
Posts: 1,865
salesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud ofsalesman has much to be proud of
I'm pretty sure when you catch an event you'll get the same arguments as when you just handle the event directly (i.e. MyControl.onMouseDown(...)). And the first argument for onMouseDown() is the mouse button iirc:
PHP Code:
thiso.catchEvent(this"onMouseDown""RotateChar");

//...

function RotateChar(butt) {
  if (
temp.butt == "right") {
    
// stuff
  
}

__________________
Reply With Quote