Ok so I'm going to try my hand at scripting a Two-Man CMS for my game. Here is the mock-up
(http://fc02.deviantart.net/fs51/f/2009/325/1/1/RMXP_CMS_1_Concept_by_XXXArchXAngelXXX.jpg)
Now like the tag said I want those smaller menus to pop up after you press the action key on one of the names, how would i do this?
So say the window is called
@actor_window
use this to hide it in the beginning of the script
@actor_window.active = false
@actor_window.visible = false
Then use those same lines to bring the window up but change false to true
sorry but could be a little more clear?
okay the window that says Equip Status Skills and Summons
just say the window that has those options is called
You don't want it visible right away so to do this in the beginning of Scene_Menu you want to make it invisible and unactive so you would do this
@actor_window.active = false
@actor_window.visible = false
Then when you click Aluxes you want the window to be active and visible again so you would do this
@actor_window.active = true
@actor_window.visible = true
oh ok thanks, don't close this window just yet i want to be able to come back here for any other questions, thanks