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.
Can I change the Battle Command Window Width?

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 82
We learn by living...
I've been having difficulty finding where the Battle command Window Width is designated. The height is based loosely on the number of options in the list typically around 160, but width isn't mentioned anywhere. It's got to be calling the numbers from somewhere, but the base just says "width" as if its expecting Width to be assigned from someplace else.

help?

*
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
It's the first argument in the initialize method. So, it is being defined from the scene in which it is created. Ie. line 30 of Scene_Battle

Code: [Select]

    @actor_command_window = Window_Command.new(160, [s1, s2, s3, s4])

***
Rep:
Level 82
We learn by living...
It's the first argument in the initialize method. So, it is being defined from the scene in which it is created. Ie. line 30 of Scene_Battle

Code: [Select]

    @actor_command_window = Window_Command.new(160, [s1, s2, s3, s4])

Ah! I had suspected, but because I have SDK I didn't know which one to edit. turns out it was the copy in SDK IV (the third copy).  Much thanks ^^