Thank you for this! Unfortunately it seems to clash with other plugins I have and just crashes the game on start up. I really appreciate this though!With Graphical Design Mode plugin, you can move item select window
https://forums.rpgmakerweb.com/index.php?threads/graphical-design-mode.115531/
//-----------------------------------------------------------------------------
// Window_EventItem
//
// The window used for the event command [Select Item].
Window_EventItem.prototype.updatePlacement = function() {
if (this._messageWindow.y >= Graphics.boxHeight / 2) {
this.y = 0;
} else {
this.y = Graphics.boxHeight - this.height;
}
};
It worked!! Thank you so much!!Download file attachment in this post. Should look like-
Code://----------------------------------------------------------------------------- // Window_EventItem // // The window used for the event command [Select Item]. Window_EventItem.prototype.updatePlacement = function() { if (this._messageWindow.y >= Graphics.boxHeight / 2) { this.y = 0; } else { this.y = Graphics.boxHeight - this.height; } };
Edit the plugin on line 7, change the number "0" to move y position.