Yes you can find out which mouse button is clicked.
in the mousedown or mouseup event just checj the value for
// for left mouse button
window.event.button = 1
// for right mouse button
window.event.button = 2
// for Middle mouse button
window.event.button = 3
other combination you can try and check.
Cheers.
Sachin.
Quote:
> Is there a way to capture the right mouse click?