- Joined
- Jun 21, 2016
- Messages
- 14
- Reaction score
- 1
- First Language
- English
- Primarily Uses
Hi there. I'm using a menu plugin In-game and I need to touch Enter button in my keyboard to enter to the sub-menus but the problem is I'm making the game for Phone so, there's a way to call the enter button when I touch the sub-menu Icon?
Now, one of the categories is something like this:
Scene_Menu.prototype.setIndex1 = function() {
this._currentIndex = 0;
this.cancelScaling();
if(touchpadControl)SoundManager.playCursor();
This is one of the menu plugins of Soul X Regalia, there's an option inside the plugin which let you touch the screen to select the categories but only that, it's not working to enter to that category.
I've tryed to put a push under that line:
Scene_Menu.prototype.setIndex1 = function() {
this._currentIndex = 0;
this.cancelScaling();
if(touchpadControl)SoundManager.playCursor();
SceneManager.push(Scene_Status);
And it works but only for the normal sub-menus by default in-game, but for something external like an enemy book or a quest plugin does not work, so the only solution (I think) is make a call
to the enter button, saying to the code that when the category is touched, force to use the Enter button.
Now, one of the categories is something like this:
Scene_Menu.prototype.setIndex1 = function() {
this._currentIndex = 0;
this.cancelScaling();
if(touchpadControl)SoundManager.playCursor();
This is one of the menu plugins of Soul X Regalia, there's an option inside the plugin which let you touch the screen to select the categories but only that, it's not working to enter to that category.
I've tryed to put a push under that line:
Scene_Menu.prototype.setIndex1 = function() {
this._currentIndex = 0;
this.cancelScaling();
if(touchpadControl)SoundManager.playCursor();
SceneManager.push(Scene_Status);
And it works but only for the normal sub-menus by default in-game, but for something external like an enemy book or a quest plugin does not work, so the only solution (I think) is make a call
to the enter button, saying to the code that when the category is touched, force to use the Enter button.

