Graal Forums  

Go Back   Graal Forums > Development Forums > Tech Support
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #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
  #2  
Old 07-07-2009, 12:02 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Have you tried different profiles? Can you see other windows that were there before?
__________________
Reply With Quote
  #3  
Old 07-07-2009, 06:17 PM
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
I'm not sure what profiles are available. I have tried a profile.bitmap and that didn't seem to work either.
Reply With Quote
  #4  
Old 07-07-2009, 06:36 PM
LoneAngelIbesu LoneAngelIbesu is offline
master of infinite loops
LoneAngelIbesu's Avatar
Join Date: May 2007
Location: Toldeo, Ohio
Posts: 1,049
LoneAngelIbesu has a spectacular aura aboutLoneAngelIbesu has a spectacular aura about
Send a message via AIM to LoneAngelIbesu
Quote:
Originally Posted by DustyPorViva View Post
I'm not sure what profiles are available. I have tried a profile.bitmap and that didn't seem to work either.
Try GuiWindowProfile.

Are you using "Dusty_Test" as a GUI control name, anywhere else?
__________________
"We are all in the gutter, but some of us are looking at the stars."
— Oscar Wilde, Lady Windermere's Fan
Reply With Quote
  #5  
Old 07-07-2009, 06:44 PM
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
GuiWindowProfile works...
Hmm, it seems ALL my default blue gui graphics are missing :/
Reply With Quote
  #6  
Old 07-07-2009, 06:55 PM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Reinstall Graal or make new GUI window profiles, I think I posted a default Vista one in teh graphics forum
__________________

Reply With Quote
  #7  
Old 07-07-2009, 07:08 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by DustyPorViva View Post
GuiWindowProfile works...
Hmm, it seems ALL my default blue gui graphics are missing :/
Yes, they are. I guess they are included in the executable though, since they still show up for me, and they are nowhere on my hard drive.
Reply With Quote
  #8  
Old 07-07-2009, 07:32 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Crow View Post
Yes, they are. I guess they are included in the executable though, since they still show up for me, and they are nowhere on my hard drive.
They're most likely in C:/Graal/levels3d/gui.
__________________
Reply With Quote
  #9  
Old 07-07-2009, 07:38 PM
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
Ah well, I copied them over from an old Graal folder I had on a second drive. Seems to have fixed it.

I'd still like to know how ALL of those files just disappeared.
Reply With Quote
  #10  
Old 07-07-2009, 08:48 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by cbk1994 View Post
They're most likely in C:/Graal/levels3d/gui.
I know they were there before, but they are not anywhere anymore. I ran a search on all of my partitions, nothing.
Reply With Quote
  #11  
Old 07-08-2009, 12:54 AM
cyan3 cyan3 is offline
Registered User
cyan3's Avatar
Join Date: Nov 2005
Location: England
Posts: 2,919
cyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant future
Quote:
Originally Posted by Crow View Post
I know they were there before, but they are not anywhere anymore. I ran a search on all of my partitions, nothing.
For some reason it doesn't install them anyone but they seem to work regardless of having the images or not, however it will detect the images if transfered to the correct folder. I know this because I changed the file name for the blue gui profile to the normal one. I also find it strange that I didn't have the images on my last Vista or Linux install but I did on my recently installed Windows XP.

Attached the gui folder.
Attached Thumbnails
Click image for larger version

Name:	guired.jpg
Views:	191
Size:	487.9 KB
ID:	48880  
Attached Files
File Type: zip gui.zip (129.0 KB, 166 views)
Reply With Quote
  #12  
Old 07-08-2009, 01:08 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
The default blue gui doesn't completely load up for me anymore either. The f8 list still shows the ridiculous toon skin.
__________________
Reply With Quote
  #13  
Old 07-08-2009, 09:45 AM
Robin Robin is offline
The secret of NIMH
Robin's Avatar
Join Date: Apr 2005
Location: Wales, UK
Posts: 515
Robin will become famous soon enough
Send a message via AIM to Robin
Quote:
Originally Posted by cyan3 View Post
For some reason it doesn't install them anyone but they seem to work regardless of having the images or not, however it will detect the images if transfered to the correct folder. I know this because I changed the file name for the blue gui profile to the normal one. I also find it strange that I didn't have the images on my last Vista or Linux install but I did on my recently installed Windows XP.

Attached the gui folder.
imho that gui is far sexier than the blue.
__________________

Reply With Quote
  #14  
Old 07-08-2009, 12:29 PM
cyan3 cyan3 is offline
Registered User
cyan3's Avatar
Join Date: Nov 2005
Location: England
Posts: 2,919
cyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant futurecyan3 has a brilliant future
Quote:
Originally Posted by Robin View Post
imho that gui is far sexier than the blue.
The scripted rc also looks nicer with this gui style but the only problem is that the images change and not the formatting for the style such as font colour.
Attached Thumbnails
Click image for larger version

Name:	scriptedrc.jpg
Views:	195
Size:	511.9 KB
ID:	48881  
Reply With Quote
  #15  
Old 07-09-2009, 12:48 AM
DuBsTeRmAn DuBsTeRmAn is offline
Era Manager
DuBsTeRmAn's Avatar
Join Date: Sep 2007
Location: The Netherlands
Posts: 1,367
DuBsTeRmAn is an unknown quantity at this point
Send a message via MSN to DuBsTeRmAn
Quote:
Originally Posted by cyan3 View Post
The scripted rc also looks nicer with this gui style but the only problem is that the images change and not the formatting for the style such as font colour.
How did you get that ''Graal'' in there?
__________________
Name
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 10:43 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.