View Single Post
  #9  
Old 07-15-2007, 07:00 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
Quote:
Originally Posted by Inverness View Post
PHP Code:
function onCreated() {
  
hideTaskBar();
}
public function 
hideTaskBar() {
  
temp.newh screenheight Serverlist_TaskBar.height;
  
Serverlist_TaskBar.visible false;
  
Serverlist_TaskButton_Toggle.visible false// stay always off
  
GraalControl.height newh;
}
public function 
showTaskBar() {
  
Serverlist_TaskBar.visible true;
  
GraalControl.height -= Serverlist_TaskBar.height;
}
function 
onKeyPressed() {
  if (
params[0] == 112) {
    if (
Serverlist_TaskBar.visible == false) {
      
showTaskBar();
    }
    else {
      
hideTaskBar();
    }
  }

Just make sure you dont have the serverlist open on creation, or things get mixed up.
Damn man...why the long script? That could easily be done in 4 lines or so.
__________________
Do it with a DON!
Reply With Quote