password confirmation
Hello, I'm a newbie whit Animate. This is a file HTML5Canvas.
I created 2 components (TextInput, Button) and a textdynamic box in my scene.
TextInput = mdp
Button = valider
The scene :

And I would like if the response is right when the user clicks the button, the text OK is displayed then redirected to a web page. And if the code is wrong, another text is displayed.
Here is my code :
this.stop();
var monInput = document.querySelector("mdp").value;
var motdepassatrouver = "test";
if (monInput == motdepassatrouver) {
//ok
this.valider.addEventListener("click", fl_ClickToGoToWebPage_5);
function fl_ClickToGoToWebPage_5() {
window.open("http://www.adobe.com", "_blank");
}
}
But it does not work.
Looks like he can't make the connection with the ID of components.
Thanks a lot for your help.
