Main Menu
  • Welcome to The RPG Maker Resource Kit.

[Request] Remove Windowskin

Started by h0m3r0w, August 12, 2010, 04:27:26 AM

0 Members and 1 Guest are viewing this topic.

h0m3r0w

Hey, so I was drafting some things for my title screen to make it look a bit better and I was wondering if there's a script out there that can remove the windowskin or something like that and just leave it as text only.

Now I'm not looking for anything special with colourful lines or anything like that, I'm just looking to get rid of any boxes around the text for the title screen only (I know how to change windowskins and whatnot, but just for future reference)
for the selection choices: "New Game", "Load game", etc.

Thanks in advanced if anyone can point me in the right direction.

(If I just have to color my own windowskins, that's fine too... I just don't want to screw anything up and just end up here again.)

Examples
[spoiler]

[/spoiler]
"Nothing's changed about war cept' the caliber of the gun."

Sashikinaroji

#1
At the moment, I am re-installing my VX (had to factory restore my comp, long story) but I think I recall...

There is a scene_title section on the script and I think you can control what you use as the backround there... Of course, if you put nil, it should make it not have any background... I'll know for sure in about 10 mins though.


yeah, nvm... I'm just an idiot.

:-X

as a side note... Love the avy, Locke, right?
Ok, DON'T EXPECT HELP FROM ME~! I will perhaps rant a bit, but don't expect me to do graphics for you, even if I say I will... I won't.

TDS

This does nor really require a script, but I left an example below on a way you can make the windowskin invisible by changing it's opacity to 0.

It can be done with any window too by adding .opacity = (Opacity Value)

@window.opacity = 0 min to 255 max

It works with other types of objects too.

#==============================================================================
# ** Scene_Title
#------------------------------------------------------------------------------
#  This class performs the title screen processing.
#==============================================================================

class Scene_Title < Scene_Base
  #--------------------------------------------------------------------------
  # * Create Command Window
  #--------------------------------------------------------------------------
  alias tds_opacity_remove_title_screen_create_command_window create_command_window
  def create_command_window
    tds_opacity_remove_title_screen_create_command_window   
    @command_window.opacity = 0
  end
end