Good Day guys, i just started using edge, and would like to know if the variable i set on the stage creation complete can also be called on a click event?
something like this:
stage creation complete:
var x = function()
{
console.log("x");
}
on click event:
var y = function(){
console.log(x+y);
}