Hello good people!
Is this right?
function something(){
//code
}
mc.onRelease = function(){
something();
}
or is it like this?
something = function(){
//code
}
mc.onRelease = something;
Thanks!
Hello good people!
Is this right?
function something(){
//code
}
mc.onRelease = function(){
something();
}
or is it like this?
something = function(){
//code
}
mc.onRelease = something;
Thanks!
:: Copyright KIRUPA 2024 //--