Help - Search - Members - Calendar
Full Version: [VX Snippet] Change Windowskin
RPG RPG Revolution Forums > Scripting > Script Submissions > RGSS2-Submissions
woratana
Change Windowskin
Version 1.0
by Woratana
Release Date: 10/03/2008


Introduction
This is a small snippet to change your windowskin by call script~ :wink:


Features
Version 1.0
- Easy to change you windowskin by just call script.


Script
Place it above main
CODE
#===============================================================
# ● [VX Snippet] ◦ Change Windowskin ◦ □
#--------------------------------------------------------------
# ◦ by Woratana [woratana@hotmail.com]
# ◦ Released on: 10/03/2008
#--------------------------------------------------------------
# Note: Missing features from RM2K and RMXP
=begin
●----●----●----●----● +[How to use]+ ●----●----●----●----●
Call script:
$game_system.skin = 'Windowskin File Name'
(Window Skin file must be in folder 'Graphics/System')

For Example >> $game_system.skin = 'Window'
□=====□=====□=====□=====□=====□=====□=====□=====□=====□

=end
#===============================================================

class Window_Base < Window
  alias wor_changeskin_winbase_ini initialize
  alias wor_changeskin_winbase_upd update
  
  # Change Window Skin when first call Window
  def initialize(x, y, width, height)
    wor_changeskin_winbase_ini(x, y, width, height)
    self.windowskin = Cache.system($game_system.skin)
    @winskin = $game_system.skin
  end
  
  # Change Window Skin if $game_system.skin is not same as its skin
  def update
    wor_changeskin_winbase_upd
    if @winskin != $game_system.skin
      self.windowskin = Cache.system($game_system.skin)
      @winskin = $game_system.skin
    end
  end
end
class Game_System
  attr_accessor :skin
  alias wor_changeskin_gamesys_ini initialize
  
  # Add variable $game_system.skin to store/change windowskin file name
  def initialize
    wor_changeskin_gamesys_ini
    @skin = 'Window'
  end
end



Instruction
Change your windowskin by call script:
CODE
$game_system.skin = 'Windowskin File Name'

(Window Skin file must be in folder 'Graphics/System')

For Example >>
CODE
$game_system.skin = 'Window'



Author's Notes
Free for use in your non-commercial work if credit included. If your project is commercial, please contact me.

Please do not redistribute this script without permission. If you want to post it on any forum, please link to this topic.
lahandi
Mr. Woratana,

After we use this as a several dialogue text background, how can we change it again to default? Should we call again the default windowskin by $game_system.skin = '(default windowkin name)' or we use something like true/false statement?

Thank you smile.gif
woratana
Yeah, just call

QUOTE
$game_system.skin = 'Window'


smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.