Hi Tony.
Maybe this is the correct thread, maybe not, but here goes.!
It has been about 6 years since I've worked with Flash, and now I'm tryin' to keep up. My problem is somewhat similar to what Adam described. I have only one .flv file playing on my site, and it plays fine. But when I navigate further on, the .flv file doesn't stop playing. I can still hear the audio rambling on in the background. And when I click back to the page where the .flvplayer is, it begins playing on top of the already playing .flv-file.
You can see my site here:
http://www.greenfeeguide.com/HTML/Testsite.html
And my actionscript looks like this:
Home_B.addEventListener(MouseEvent.CLICK, link1);
Demo_B.addEventListener(MouseEvent.CLICK, link2);
Koncept_B.addEventListener(MouseEvent.CLICK, link3);
Benefit_B.addEventListener(MouseEvent.CLICK, link4);
About_B.addEventListener(MouseEvent.CLICK, link5);
function link1(e:MouseEvent):void {
gotoAndStop(1);
}
function link2(e:MouseEvent):void {
gotoAndStop(5);
}
function link3(e:MouseEvent):void {
gotoAndStop(10);
}
function link4(e:MouseEvent):void {
gotoAndStop(15);
}
function link5(e:MouseEvent):void {
gotoAndStop(20);
}
My simple guess is that I need to assign an action to my buttons, telling them to stop the .flv file on release, or something like that. But as I wrote earlier. My Flash-skills are pretty outdated. ;-)
I hope you're able to help me with this, or guide me further on.!
Rune
(A danish novice.!)