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.
[Request] Remove Windowskin

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 75
Pixel Artist | Writer
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 for:


"Nothing's changed about war cept' the caliber of the gun."

****
Hey... my name's... Sashikinaroji...
Rep:
Level 83
fear me...
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?
« Last Edit: August 12, 2010, 06:05:51 AM by Sashikinaroji »
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.

pokeball TDSOffline
***
Rep:
Level 84
-T D S-
Silver - GIAW 11 (Hard)Silver - Game In A Week VII
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)

Code: [Select]
@window.opacity = 0 min to 255 max

It works with other types of objects too.

Code: [Select]
#==============================================================================
# ** 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