Question
External AS code will not pass through
I can't figure out why script that works in Flash does NOT work when placed in an external AS!? As an example:
employment_alpha_btn.onRelease = function() {
gotoAndPlay("eaccess_rollout_to_employment");
}
This will work when placed on a frame in Flash, but it will NOT work when put in an external AS. However, I have other commands in the same external AS that work just fine:
corpcomp_alpha.onRollOver = function() {
gotoAndPlay("corpcomp_grow");
};
Can anyone help? Can you not do onRelase in an external AS? I'm stuck...