public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

MV Issue with QPlus plugin

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: MV Issue with QPlus plugin
  • Original author: ZankokuNoYami
  • Original date: April 3, 2022
  • Source thread: https://forums.rpgmakerweb.com/threads/issue-with-qplus-plugin.146386/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > Javascript/Plugin Support

Summary

Cannot seem for the life of me figure out why I keep getting this error with QPlus' plugin. Here is the plugin: Here is the error: {

Archived First Post

Cannot seem for the life of me figure out why I keep getting this error with QPlus' plugin.

Here is the plugin:

Here is the error:
Protected download

It seems to happen completely randomly. I havent figured out if its timer based or what.

TypeError: windows.isOpen is not a function
at Scene_Map.updateMouseInsideWindow (QPlus.js:892)
at Scene_Map.update (QPlus.js:884)
at Function.SceneManager.updateScene (rpg_managers.js:2024)
at Function.SceneManager.updateMain (rpg_managers.js:1983)
at Function.SceneManager.update (rpg_managers.js:1907)

QPlus script:
//-----------------------------------------------------------------------------
// Scene_Map

var Alias_Scene_Map_update = Scene_Map.prototype.update;
Scene_Map.prototype.update = function() {
if (TouchInput.isMoved()) this.updateMouseInsideWindow();
Alias_Scene_Map_update.call(this);
};

Scene_Map.prototype.updateMouseInsideWindow = function() {
var inside = false;
var windows = this._windowLayer.children;
for (var i = 0; i < windows.length; i++) {
if (windows.visible && windows.isOpen() && windows.isMouseInside()) {
inside = true;
break;
}
}
TouchInput.insideWindow = inside;
};

Tried doing a search and only found the same issue related to RMMZ. Tried that fix and same error.

EDIT: So it seems to happen once I move the mouse. Still not sure WHY.

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

Referenced Images / Attachments

1648953033389.png
1648953033389.png
Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#039#rpg-maker-archive#js-support

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar