Graal Forums  

Go Back   Graal Forums > Graal V6 forums > Bug Report
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Rating: Thread Rating: 13 votes, 4.69 average. Display Modes
  #1  
Old 01-28-2012, 12:07 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by Tricxta View Post
Nope, I think that's just you.
I never had the issue on Ubuntu linux.
__________________
Reply With Quote
  #2  
Old 01-29-2012, 01:33 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
It seems as if no matter what server you log on, whether there are any scripted GUI controls or not, after opening the client for the first time GraalControl is unfocussed and you can't move until you click the screen, even happens when I attempt to force focus once everything has initialized.
This wouldn't be a problem for the vast majority of players, but in terms of someone logging on for the first time you never know, might not occur to them.

Last edited by ffcmike; 01-29-2012 at 05:20 PM..
Reply With Quote
  #3  
Old 01-29-2012, 05:27 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by ffcmike View Post
It seems as if no matter what server you log on, whether there are any scripted GUI controls or not, GraalControl is unfocussed and you can't move until you click the screen, even happens when I attempt to force focus once everything has initialized.
This wouldn't be a problem for the vast majority of players, but in terms of someone logging on for the first time you never know, might not occur to them.
Maybe it's because of that intrusive download window that every Graal player instinctively closes as soon as it opens. Unless it's a tileset downloading that thing should never appear.
__________________
Quote:
Reply With Quote
  #4  
Old 01-29-2012, 05:29 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by fowlplay4 View Post
Maybe it's because of that intrusive download window that every Graal player instinctively closes as soon as it opens.
It's happening without this.
Reply With Quote
  #5  
Old 02-03-2012, 11:36 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by ffcmike View Post
It seems as if no matter what server you log on, whether there are any scripted GUI controls or not, after opening the client for the first time GraalControl is unfocussed and you can't move until you click the screen, even happens when I attempt to force focus once everything has initialized.
This wouldn't be a problem for the vast majority of players, but in terms of someone logging on for the first time you never know, might not occur to them.
I managed to fix this with a combination of using Chris Vimes solution:

Quote:
Originally Posted by cbk1994 View Post
PHP Code:
function onFirstResponderChanges(temp.obj) {
  if (
temp.obj.dontStealFocus) {
    
this.lastResponder.makeFirstResponder(true);
  } else {
    
this.lastResponder temp.obj;
  }

Then you could just set dontStealFocus on any GUI control and it wouldn't steal focus.
plus:

PHP Code:
ChatBar_ToggleTaskBarButton.dontstealfocus true;
DownloadProgress_CloseButton.dontstealfocus true
and then upon all systems initializing, manually setting focus to GraalControl or whatever object should have focus via:

PHP Code:
obj.makeFirstResponder(true); 
Reply With Quote
  #6  
Old 02-03-2012, 08:56 PM
Andre2006 Andre2006 is offline
!
Andre2006's Avatar
Join Date: Nov 2008
Location: Spain/Sweden
Posts: 490
Andre2006 has a spectacular aura about
Send a message via MSN to Andre2006
Did someone add the "Disable startup message" to V5 when trying to send a mass message? It is totally in the way of my writings ;[ (I know this has nothing to do with V6, but I couldn't find anywhere else to post it!)
__________________
To obtain something you must sacrifice something of an equal value.
Reply With Quote
  #7  
Old 02-04-2012, 02:29 AM
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 Andre2006 View Post
Did someone add the "Disable startup message" to V5 when trying to send a mass message? It is totally in the way of my writings ;[ (I know this has nothing to do with V6, but I couldn't find anywhere else to post it!)
This is a GK bug, not a v6 or v5 bug.
__________________
Reply With Quote
  #8  
Old 02-04-2012, 10:40 AM
Andre2006 Andre2006 is offline
!
Andre2006's Avatar
Join Date: Nov 2008
Location: Spain/Sweden
Posts: 490
Andre2006 has a spectacular aura about
Send a message via MSN to Andre2006
Quote:
Originally Posted by cbk1994 View Post
This is a GK bug, not a v6 or v5 bug.
Oh okay!
__________________
To obtain something you must sacrifice something of an equal value.
Reply With Quote
  #9  
Old 02-04-2012, 01:54 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Also reported by another member on the forums.
For some reason, when starting up graal, it will randomly forget the nickname, account and password, which is quite annoying for people who haven't memorized their password.
__________________
Reply With Quote
  #10  
Old 02-04-2012, 03:05 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by Emera View Post
Also reported by another member on the forums.
For some reason, when starting up graal, it will randomly forget the nickname, account and password, which is quite annoying for people who haven't memorized their password.
Solution: memorize your password.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #11  
Old 02-04-2012, 03:07 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by xXziroXx View Post
Solution: memorize your password.
You don't say...
__________________
Reply With Quote
  #12  
Old 02-04-2012, 03:22 PM
TSAdmin TSAdmin is offline
Forum Moderator
TSAdmin's Avatar
Join Date: Aug 2006
Location: Australia
Posts: 1,980
TSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud of
Quote:
Originally Posted by xXziroXx View Post
Solution: memorize your password.
A noble solution, but it's still somewhat of a bug. However, such information is saved to the Windows Registry. Are you sure it's related directly to Graal itself and not a third-party software preventing certain programs from writing to the registry, or possibly doing a regular registry search and delete cleanup process (EG: An Antivirus/Firewall/etc scanner doing a regular "clean up")? This isn't a typical issue to come across, so I would probably assume it to be a problem locally rather than with the client itself (or we'd all be having this problem).
__________________
TSAdmin (Forum Moderator)
Welcome to the Official GraalOnline Forums! Where sharing an opinion may be seen as a declaration of war!
------------------------
· User Agreement · Code of Conduct · Forum Rules ·
· Graal Support · Administrative Contacts ·
Reply With Quote
  #13  
Old 02-04-2012, 03:48 PM
Andre2006 Andre2006 is offline
!
Andre2006's Avatar
Join Date: Nov 2008
Location: Spain/Sweden
Posts: 490
Andre2006 has a spectacular aura about
Send a message via MSN to Andre2006
Quote:
Originally Posted by Emera View Post
Also reported by another member on the forums.
For some reason, when starting up graal, it will randomly forget the nickname, account and password, which is quite annoying for people who haven't memorized their password.
This only happens to me if I have disabled my firewall, to prioritise programs like Hamachi or Tunngle to play games online that usually don't find servers through the normal network.
__________________
To obtain something you must sacrifice something of an equal value.
Reply With Quote
  #14  
Old 02-04-2012, 04:55 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by Andre2006 View Post
This only happens to me if I have disabled my firewall, to prioritise programs like Hamachi or Tunngle to play games online that usually don't find servers through the normal network.
I've disabled mine after what you just said. It hasn't happened to me at all since then, and it normally has a 7/10 chance of doing it when I restart graal. Thank you <3
__________________
Reply With Quote
  #15  
Old 02-04-2012, 04:57 PM
Andre2006 Andre2006 is offline
!
Andre2006's Avatar
Join Date: Nov 2008
Location: Spain/Sweden
Posts: 490
Andre2006 has a spectacular aura about
Send a message via MSN to Andre2006
Quote:
Originally Posted by Emera View Post
I've disabled mine after what you just said. It hasn't happened to me at all since then, and it normally has a 7/10 chance of doing it when I restart graal. Thank you <3
Having your firewall disabled is not very smart! ;P
__________________
To obtain something you must sacrifice something of an equal value.

Last edited by Andre2006; 02-04-2012 at 07:52 PM..
Reply With Quote
Reply

Tags
graal v6, windows

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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 02:28 PM.


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