Thread: GUI Issue
View Single Post
  #4  
Old 02-11-2008, 03:30 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
No, that's horrible way to do it.

It's much simpler then that too. Just do this:
PHP Code:
function obj.onSelect() {
  
// Left Click stuff
}
function 
obj.onOpenMenu() {
  
// Right Click stuff

If onSelect is still being called when you right click, just replace that function with:
PHP Code:
function obj.onSelect() {
  if (!
leftmousebuttonglobal) return;
  
// Left Click stuff

Most of that info can be found here.

__________________
Do it with a DON!
Reply With Quote