RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Windows in a HUD + Active Problem

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 84
So I have a HUD setup for this Ability Grid script. When you access the ability grid and press Shift a window displays that shows specific skills. I am trying to figure out how I can access the window and move throughout the skills instead of having the window displayed and the keys move the player.
http://rapidshare.com/files/155657351/Ability_Grid__VX_.zip.html

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
I will move this to Script Support as that is what it appears you are asking for.

**
Rep: +0/-0Level 84

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Well, I would change it into its own scene rather than keeping it in Scene_Map, unless you want other things to still be going on.

If that's the case, then what you could do is simply make a toggle, so have the update method like this:

if Input.press? (Input::Shift)
  update_hud
else
  update_normal
end