Hey Im encountering a weird problem with one of the sites Im doing…
I have a main swf into which a “news” swf containing PR articles for the company. A menu in the main swf controls the news swf and directs it to a specific frame depending on which article the user wants to use. It works perfect, but only on the first click. When you click an article once it loads for you, then if you click it again it loads a different one. Then if you keep clicking it cycles between these two. Every time it loads the same wrong article on the second click.
My AS:
on (release) {
_root.pages.newsContainer.gotoAndPlay(“frameForArticle”);
}
This is really weird, never had it happen before. I have stop(); actions where they need to be so it shouldnt jump, and I cant make sense of the random second article it displays… anyone have any input?