Hi. I have a function that I define on level 1. When I try to call it on level 0, it doesnt work. I dont know why. I have defined it like so:
_global.floatTo = function(thePiece) {
}
And I am calling it from level 0 like so:
_global.floatTo(1);
Any suggestions on why this might not work? I was using _level1.floatTo instead of _global but then I searched the forums and I found out about making it global, but it still doesnt work! Thanks for any help or suggestions in advance…
Ted