sodapop448":dzi3xi2w said:
I have a question,
for when u hit x and it opens up the menu, with all your characters, can u set your skin to be transparent, and then you could see the game map while ur in the menu?
I asked something similar myself in the RGSS support forum recently, though I only asked about making the map show through (I found out about making the message windows transparent by looking through some of the default scripts).
Basically, in the script for the menu (I think it's Scene_Menu), go to 'def_main' and paste "@spriteset = Spriteset_Map.new" underneath it. This replaces the black background behind the menu with the actual map.
Then, go to the message box you want to change (for example, the message box with all the menu choices is called "@command_window"), and write this underneath it:
xxxxxxxxxx.back_opacity = 160
Replacing the x's with the message box (for example, making the menu choices transparent would be "@command_window.back_opacity = 160"). I choose 160 as that is the same level of opacity used in the normal message boxes when characters are talking.
Hope that helped.