I'm new to construct and I came across a problem, I saw a tutorial on the internet where at the end of the EVENT SHEET line there is an option +Add and I chose add script and called an example function:
msgTest("Testando");// isso em EVENT SHEET
a function em Scripts.js
function msgTest( message ){
alert("msg = " + message );
}
I want to know why I can't run it
sou novo no construct e me deparei com um problema, vi na internet um tutorial onde no final da linha do EVENT SHEET existe uma opção +Add e escolho add script e fiz chamei uma function exemplo:
msgTest("Testando");// isso em EVENT SHEET
a function em Scripts.js
function msgTest( message ){
alert("msg = " + message );
}
<<--------------------->>
quero saber por que não consigo executar