At different times, I set globals in my main swf and the swf that it loads, but they never see each other’s global, even though they’re each constanly checking.
Is it just the case that “globals” aren’t really global between a swf and the swf it loads?
I’ve tried checking for the global by looping between 2 frames and I’ve also tried:
trackinterval=setInterval(trackfunction,100);
function trackfunction(){
trace("_global.gStatus);
}
In either case, I’ve verified that both swfs are constantly checking, because they are both constantly outputting their trace statements.
Any suggestions?