Targeting, working but.....?!

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?

to see what I mean go to:
www.grafikdesigns.com/centrum/rev02.html

then go to the PR/NEWS section, when you chose an article from the list on the left it will be displayed, but if you click again it shows a different art.

Peace

I can see what you mean, and don’t know how to fix it. Tho, your text in the left-menu is a little blurry, may be because of the scroller…

One Q: How do you make those shadows on the left and right of the site?

I fixed the blury menu, it was postitioned in a fraction pixel position.

The shadows are two different gradient images (one left one right, stretched to 100% height) put into a <table> in which the center <td> holds the swf. You could also do it with simple CSS.

Peace

Anone else with input on my question?

can u post the file?

use gotoAndStop(); like

on (release) {
_root.pages.newsContainer.gotoAndStop("frameForArticle");
}

Nope that wont work, cuz there are a few intro frames before the article actually gets loaded from an external file.

Peace