How to delete border window in Window_ItemList ?

● ARCHIVED · READ-ONLY
Started by Kiss511 4 posts View original ↗
  1. Hi all,
    In JavaScript. I want show Window_ItemList without border. How to delete ?
    Thanks !
    window_rpg.jpg
  2. You need to change the windowskin
  3. Easiest way is to change the opacity - assuming you don't mind losing the greyish background as well.

    In the rpg_scenes.js file find the Scene_Item create function below and add in the last line:

    Scene_Item.prototype.create = function() {
    Scene_ItemBase.prototype.create.call(this);
    this.createHelpWindow();
    this.createCategoryWindow();
    this.createItemWindow();
    this.createActorWindow();

    this._itemWindow.opacity = 0;
    };
  4. ZephyrAM said:
    Easiest way is to change the opacity - assuming you don't mind losing the greyish background as well.

    In the rpg_scenes.js file find the Scene_Item create function below and add in the last line:

    Scene_Item.prototype.create = function() {
    Scene_ItemBase.prototype.create.call(this);
    this.createHelpWindow();
    this.createCategoryWindow();
    this.createItemWindow();
    this.createActorWindow();

    this._itemWindow.opacity = 0;
    };
    Thanks so much. It's work !