View Single Post
  #8  
Old 07-14-2007, 03:25 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
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.
__________________
Reply With Quote