PROBLEM SOLVED
Hello,
I am trying to build a website to promote a non-profit soup kitchen I started to cook for the homeless & hungry. There are no error messages in flash and it looks fine in the alt+enter Flash CS5 screen.
However, go to www*morganskitchen*org, look at the "legal docs" page.
The problem: There is erratic behavior in mac browsers. In (mac)Google Chrome or Safari, the background flickers with random artifacts when movie clip above transitions.
Explanation of site organization:
2 layers:
Content Layer - contains the text, images etc for each page
Base Layer - contains header & buttons
BASE LAYER Actionscripts:
import flash.events.MouseEvent;
stop();
//NAVIGATION BUTTONS:
home_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(1);});
aboutus_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(2);});
benefits_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(3);});
strategy_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(4);});
morgan_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(5);});
legal_btn.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){gotoAndStop(6);});
map_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);function fl_ClickToGoToWebPage(event:MouseEvent):void{navigateToURL(new URLRequest("URL address blocked:forum rules"), "_blank");};
CONTENT LAYER, SLIDE 6 (Legal Docs page) Actionscripts:
stop();
//Document Button Links
bylaws_button.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){navigateToURL(new URLRequest("bylawsMK.pdf"), "_blank");});
articles_button.addEventListener(MouseEvent.CLICK,function(e:MouseEvent){navigateToURL(new URLRequest("ArticlesMK.pdf"), "_blank");});
Things I've Noticed:
1- Didn't have problems till I introduced bylaws_button & articles_button.
2- Zero compiler or output errors.
Things I've Tried (that didn't help):
1- Moving actionscript for the bylaws_button & articles_button to the base layer
2- Using more 'fancy' actionscript that included like f2_ClickToGoToWebPage and f3_ClickToGoToWebPage for the bylaws_button and articles_button.
3- Adding a teal square shape to the slide for a slide-specific background
I would really appreciate any help with this. I'm trying to do something good for my community. I have no funding or support, but would still like things to look well.
Thank you,
Morgan