The RPG Maker Resource Kit

RMRK RPG Maker Creation => VX Ace => Topic started by: Syrubis on August 11, 2015, 09:57:01 AM

Title: [Solved] Choice Window Trouble
Post by: Syrubis on August 11, 2015, 09:57:01 AM
I'm at my wits end. Basically all I want to do is change the choice window to either match the transparency of the text box, or erase it all together. As you can see in my screenshot it's using the windowskin (which it should) but I don't want it to.

(https://rmrk.net/proxy.php?request=http%3A%2F%2Forig13.deviantart.net%2F5213%2Ff%2F2015%2F223%2F5%2F2%2Fscreenshot_2_by_vladimircrowe-d956yr0.png&hash=f7bb4801ccccc7a892758e105587e7429b6b99bc)

I'm pretty much on my hands and knees here, anyone have any idea how to fix this? I've checked almost every inch of google search and just about every vx ace forum I can find to no avail.
Title: Re: Choice Window Trouble
Post by: &&&&&&&&&&&&& on August 11, 2015, 10:06:38 AM
you want it to be transparent?
What scripts are you using?
Title: Re: Choice Window Trouble
Post by: Syrubis on August 11, 2015, 10:12:26 AM
Yup, and at the moment just these.

(https://rmrk.net/proxy.php?request=http%3A%2F%2Forig09.deviantart.net%2Ffbb1%2Ff%2F2015%2F223%2F6%2F7%2Fscreenshot_3_by_vladimircrowe-d956zxi.png&hash=60e72b9434b72497d231106d740617d7e829275f)

As far as I can tell I can't fix it with Yanfly's message system.
Title: Re: Choice Window Trouble
Post by: &&&&&&&&&&&&& on August 11, 2015, 10:44:02 AM
is the choice window modified at all?

if it's the default script, then here
Code: [Select]
#== Snippet ==
class Window_ChoiceList < Window_Command
  def initialize(message_window)
    @message_window = message_window
    super(0, 0)
    self.openness = 0
    deactivate
    # change the 0 to any number you want, between 0 and 255
    self.opacity = 0
    # right here ^
  end
end
#== snip ==

just place it above main and stuff
Title: Re: Choice Window Trouble
Post by: Syrubis on August 11, 2015, 11:53:32 AM
You're an absolute life saver! It works perfectly. I can't thank you enough, I was getting so frustrated!
And thank you for being so quick! I was expecting a lengthy wait at least, can't express my levels of gratitude haha.

Thanks, Boe!
Title: Re: Choice Window Trouble
Post by: &&&&&&&&&&&&& on August 11, 2015, 12:03:23 PM
:)