- Joined
- Jan 10, 2013
- Messages
- 111
- Reaction score
- 36
- First Language
- English
- Primarily Uses
- RMMV
Ok This is driving me insane.
I have a parameter set like so.
I then have this code referencing it.
Now when i run my project with the the parameter set in place I get the error.
Undefined is not a function...
But if I just manual put in
Then run the game. It works just fine.
I am at a loss. The error refers to this in the console.
Any help would be appreciated. Thank you in advanced. I am still learning JS.
I have a parameter set like so.
Code:
* @param Status Window Opacity
* @desc Enter window transparancy.
* @default 0
*
Code:
this._statusWindow.opacity = parameters['Status Window Opacity'];
Now when i run my project with the the parameter set in place I get the error.
Undefined is not a function...
But if I just manual put in
Code:
this._statusWindow.opacity = 0;
I am at a loss. The error refers to this in the console.
Code:
SceneManager.catchException = function(e) {
if (e instanceof Error) {
Graphics.printError(e.name, e.message);
console.error(e.stack); <------ Stops right here
} else {
Graphics.printError('UnknownError', e);
}
AudioManager.stopAll();
this.stop();
};
Any help would be appreciated. Thank you in advanced. I am still learning JS.