View Single Post
  #9  
Old 09-07-2007, 03:45 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by DustyPorViva View Post
function onActionleftmouse() {}
Indeed, this is basically what Graal is doing automatically for you:
PHP Code:
//#CLIENTSIDE
function onMouseDown(mode) {
  if (
mode == "left") {
    
triggerAction(mousexmousey"LeftMouse"null);
  }
  else if (
mode == "right") {
    
triggerAction(mousexmousey"RightMouse"null); 
  }

__________________
Reply With Quote