View Single Post
  #1  
Old 07-07-2009, 11:17 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Scripted controls no longer working?

None of my scripted window controls work anymore. For example, this script:
PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiWindowCtrl("Dusty_Test") {
    
profile GuiBlueWindowProfile;
    
10;
    
10;
    
width 160;
    
height 80;
    
text "Window";
  }

It is created, apparently, because it is stealing focus. player.chat = Dusty_Test.width; echoes as well. However, I see absolutely nothing.

edit: I thought it was all controls, but apparently it is just windows. I tried out a simple control and that seems to work, but when I changed it back to a window nothing displays.
Reply With Quote