View Single Post
  #12  
Old 08-22-2009, 10:05 PM
Switch Switch is offline
o.o
Switch's Avatar
Join Date: Jan 2007
Location: Philadelphia
Posts: 3,038
Switch has a spectacular aura about
Send a message via MSN to Switch
Quote:
Originally Posted by [email protected] View Post
How else do you hide the chatbar?
Left clicking anywhere in your Graal screen that there is no GUI or such.

Edit: Something like this:
PHP Code:
//#CLIENTSIDE
function onMouseDown() {
  if (
leftMouseButton) {
    if (
ChatBar.visible == true) {
      
sleep(0.05);
      if (
ChatBar.visible == false) {
        
//hide image?
      
}
    }
  }

__________________
Oh squiggly line in my eye fluid. I see you lurking there on the peripheral of my vision.
But when I try to look at you, you scurry away.
Are you shy, squiggly line?
Why only when I ignore you, do you return to the center of my eye?
Oh, squiggly line, it's alright, you are forgiven.

Last edited by Switch; 08-22-2009 at 10:15 PM.. Reason: added check for left clicking
Reply With Quote