Swfs embedded in an html will not play when opened locally

[COLOR=#333333][FONT=adobe-clean]Hi all, this has been an issue for a while where i work but now seems to be pressing. We make instructional animations in flash that are published online. The way that we have standardized all the navigation within these swfs is with two buttons - forward and back – which utilize some simple code in the first frame of an actions layer in the main timeline which references lables on various key frames throughout the movie (slide1, slide2 etc.) This code strips the word “slide” and uses the remaining number to locate the play head on the timeline. It also updates a counter so the user knows which slide they are on (3/10 etc.) (I’ll attach the code at the bottom for your reference.) [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]This has worked great when we publish online but when we open the container html locally the buttons do not work and the dynamic text counter associated with it just reads # / # . we are using AS3 and publishing for Flash player 10. I’m running Chrome but have tried all the popular browsers.[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]I am totally at a dead end. I should point out too that im not a coder, Im a designer/animater the code was found on line and tweaked to our needs.[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]Anyway, any suggestions would be of help as I am at a dead end other then the flash player, for some reason is not reading the actionscript when its local. Thanks in advance – [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]Here is the code, Ive commented it out:[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]_______________________________________________[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]fscommand(“allowscale”, “false”);[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]stage.quality = StageQuality.BEST;[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]stop();[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] // Button Listeners[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]btnNext.addEventListener(MouseEvent.CLICK, nextSection);[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]btnBack.addEventListener(MouseEvent.CLICK, prevSection);[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]////////////////////////////////////////////////////////////////////// /////[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]function nextSection(event:MouseEvent):void {[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabel:String = currentLabel; // gets current frame label as string[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabelNum:String = thisLabel.replace(“slide”, “”); // cuts the leading letters off of the number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var curNumber:Number = Number(thisLabelNum); // converts that string number to a real number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]if (curNumber < 10) {[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var nextNum:Number = curNumber + 1; // adds 1 to the number so we can go to next frame label[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]gotoAndStop(“slide” + nextNum); // This allows us to go to the next frame label[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]}[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]}[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]////////////////////////////////////////////////////////////////////// /////[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]function prevSection(event:MouseEvent):void {[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabel:String = currentLabel; // gets current frame label as string[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabelNum:String = thisLabel.replace(“slide”, “”); // cuts the leading letters off of the number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var curNumber:Number = Number(thisLabelNum); // converts that string number to a real number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var prevNum:Number = curNumber - 1; // subtracts 1 from the number so we can go to previous frame label[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]gotoAndStop(“slide” + prevNum); // This allows us to go to the previous frame label[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]}[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]////////////////////////////////////////////////////////////////////// ////[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]// ENTER_FRAME event gets slide number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]addEventListener(Event.ENTER_FRAME,updateCounter);[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]// this function will update the #/# slide counter with whatever[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]function updateCounter(e:Event):void{[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean] [/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabel:String = currentLabel; // again, this gets the current frame label as a string[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]var thisLabelNum:String = thisLabel.replace(“slide”, “”); // cuts the leading letters off of the number[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]this.counter_txt.text = thisLabelNum + " / 10";[/FONT][/COLOR]
[COLOR=#333333][FONT=adobe-clean]}[/FONT][/COLOR]