What up everybody, I hope someone can help me on this problem I’ve been workin on for the past week… I’ve tried different things to fix this but no luck…
Now I know this could be something simple such as Path Issues… but I’ve never been 2 much of a code guy, but I would greatly appreciate if someone would drop some knowledge on this matter… Thank you.
you probably want to make sure all your variables are reffered to within the local timeline. in other words, dont use _root, cause when u load your swf into another swf _root becomes the main timesline of loading swf. So if you refer to all your variables as this, then all ur variables should stay local to your loaded swf.
Did that make any sense, cause it didnt to me… :huh:
Ok I knew it had something to do with the _root it in the actionscript… so now my question is… do I go through all the action script and delete the _root out of it, or do I replace it with something else?
For example here is some of the code from the actionscript of the news scroller:
stop();
this._lockroot = true;
_root.topPlay = true;
newsTitle = new Array();
newsText = new Array();
newsImg = new Array();
newsUrl = new Array();
was just looking up that _lockroot thing, seams that should solve your problem. But seeing as youve got it there, and its still not working, im not sure. I will take a look at your fla, and see what i can work out.
EDIT:
Try placing _this.lockroot on the very first frame on the main timeline.
I tried aussie’s and Gupps suggestions, but it didn’t work… I put it in the very first frame of the News timeline… the actual news ticker script is inside a movieclip in the News section… am I missing something here??