View Single Post
  #2  
Old 10-20-2010, 02:10 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
If you want to make a control invisible, you can just set the GUI Control to use own profile and set profile transparency to 0.

PHP Code:
new GuiWindowCtrl("Window"){
  
profile = GuiBlueWindowCtrl;
  
useownprofile = true;
  
profile.transparency = 0;
} 
Reply With Quote