tags:

views:

12

answers:

0

Weird problem...check out the Flash on www.FishChummer.com. The Fl and YouTube buttons (after clicking the yellow button) do not work the first time around...however, when you click the "Home" button on the side menu, and do it again, it works fine...why?

I think it's got a problem with the "framing" that godaddy's URL masking creates...any suggestions...PLEASE!

Here's some code snippets:
Yellow Button code

import flash.events.MouseEvent;

newway_btn.addEventListener(MouseEvent.CLICK, newway);
function newway(event:MouseEvent):void {
var link:URLRequest = new URLRequest('http://www.thezld.com/fishchummer/index.php?option=com_content&view=article&id=54');
navigateToURL(link, '_self'); }

Next page (with FL logo and YouTube logo)

import flash.events.MouseEvent;

FlashDemo_btn.addEventListener(MouseEvent.CLICK, fldemo);
function fldemo(event:MouseEvent):void {
var link:URLRequest = new URLRequest('http://www.fishchummer.com/index.php?option=com_content&view=article&id=52');
navigateToURL(link, '_self'); }

VideoDemo_btn.addEventListener(MouseEvent.CLICK, video);
function video(event:MouseEvent):void {
var link:URLRequest = new URLRequest('http://www.fishchummer.com/index.php?option=com_content&view=article&id=53');
navigateToURL(link, '_self'); }

Hope this helps!