RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Resizeing start menu windows. [Resolved]

Started by Irock, January 20, 2007, 05:48:04 AM

0 Members and 1 Guest are viewing this topic.

Irock

Okay, I'm starting to learn a little bit about moving windows in the menu. Now I am wondering how to resize the windows in the start menu.

italianstal1ion

right here in Scene_Title

@command_window = Window_Command.new(192, [s1, s2, s3])
    @command_window.back_opacity = 160
    @command_window.x = 320 - @command_window.width / 2
    @command_window.y = 288

Setup:

@command_window = Window_Command.new(<length>, <width(here measured by the number of commands)

Then window opacity, and its location on the x and y coordinates

Irock

Thanks.

Woot! I changed the position of the number of steps and the play time! That was so pointless! lol.