If you can post a link to your page, we can have a look at what is actually happening in the browser.
So it works in all other browsers? Aran -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of neridaj Sent: Tuesday, 14 October 2008 2:38 PM To: SWFObject Subject: Re: Alternative content not loading in IE 6 Yeah, I thought I needed to remove those tags, which I have now done, but this still doesn't fix the IE 6 problem. The status of the browser just hangs on "(one item remaining) opening page... which appears to be the missing alternative header, but it never loads. I've revised the code as you suggested so I won't re-post. Thanks for the help. J On Oct 12, 10:31 pm, "Aran Rhee" <[EMAIL PROTECTED]> wrote: > If I am reading correctly what I think you are trying to do - Alt content is > not meant to be an entire html page with <head>, <body> etc > > You would just want: > > <a href="index.php"><img id="altlogo" src="images/logo.png" > width="227" height="39" alt="Logo" /></a> > <div id="altnavcontainer"> > <a href="info.php?pt=info" > onmouseover="document.info.src=info_on.src" > onmouseout="document.info.src=info_off.src"><img name="info" > class="floatright" src="images/info_off.png" alt="Info Off" /></a> > <a href="bio.php?pt=bio" > onmouseover="document.bio.src=bio_on.src" > onmouseout="document.bio.src=bio_off.src"><img name="bio" > class="floatright" src="images/bio_off.png" alt="Bio Off" /></a> > <a href="work.php?pt=work" > onmouseover="document.work.src=work_on.src" > onmouseout="document.work.src=work_off.src"><img name="work" > class="floatright" src="images/work_off.png" alt="Work Off" /></a> > <a href="index.php" > onmouseover="document.home.src=home_on.src" > onmouseout="document.home.src=home_off.src"><img name="home" > class="floatright" src="images/home_off.png" alt="Home Off" /></a> > > within your alt content div. > > If I have misread what is happening on your page, apologies. > > Aran > > -----Original Message----- > From: [email protected] [mailto:[EMAIL PROTECTED] On > > Behalf Of neridaj > Sent: Monday, 13 October 2008 4:20 PM > To: SWFObject > Subject: Alternative content not loading in IE 6 > > Hello, > > I'm using the dynamic method which works in FF on Windows and Mac but > not in IE 6. If anyone can tell me why the alternative content won't > load in IE 6 I would appreciate it. > > // CODE > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <meta http-equiv="Content-Type" content="text/html; > charset=ISO-8859-1" /> > <meta name="keywords" content="web design firms,northwest web > design,developer,Web Design,Contemporary Web Design,Web > Services,designers,website design,Designers,contemporary web design > and modern web development"> > <meta name="description" content="neridasign provides web standards > compliant solutions for an effective internet presence, PHP, MySQL, > CSS, XHTML, JavaScript, XML"> > <title>neridasign ~:: <?php echo $heading; ?></title> > <link rel="stylesheet" type="text/css" href="css/neridasign.css" /> > <script type="text/javascript" src="js/swfobject.js"></script> > <script type="text/javascript"> > > Thanks, > > Jason > swfobject.embedSWF("head.swf", "bghead", "740", "120", "9.0.0", > "expressInstall.swf", {pt:<? echo '"'. $_GET['pt'] .'"'; ?>}, > {bgcolor:"#CCC"}); > > home_off = new Image; > work_off = new Image; > bio_off = new Image; > info_off = new Image; > home_on = new Image; > work_on = new Image; > bio_on = new Image; > info_on = new Image; > > if(document.images) { > home_off.src = "images/home_off.png"; > work_off.src = "images/work_off.png"; > bio_off.src = "images/bio_off.png"; > info_off.src = "images/info_off.png"; > home_on.src = "images/home_on.png"; > work_on.src = "images/work_on.png"; > bio_on.src = "images/bio_on.png"; > info_on.src = "images/info_on.png"; > } > > </script> > </head> > <body> > <div id="container"> > <div id="bghead"> > <? include('altheader.php'); ?> > </div> > > // ALTERNATIVE CONTENT > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <meta http-equiv="Content-Type" content="text/html; > charset=ISO-8859-1" /> > <meta name="keywords" content="web design firms,northwest web > design,developer,Web Design,Contemporary Web Design,Web > Services,designers,website design,Designers,contemporary web design > and modern web development"> > <meta name="description" content="neridasign provides web standards > compliant solutions for an effective internet presence, PHP, MySQL, > CSS, XHTML, JavaScript, XML"> > <title>neridasign ~:: <?php echo $heading; ?></title> > <link rel="stylesheet" type="text/css" href="css/neridasign.css" /> > <script type="text/javascript" src="js/swfobject.js"></script> > <script type="text/javascript"> > > home_off = new Image; > work_off = new Image; > bio_off = new Image; > info_off = new Image; > home_on = new Image; > work_on = new Image; > bio_on = new Image; > info_on = new Image; > > if(document.images) > { > home_off.src = "images/home_off.png"; > work_off.src = "images/work_off.png"; > bio_off.src = "images/bio_off.png"; > info_off.src = "images/info_off.png"; > home_on.src = "images/home_on.png"; > work_on.src = "images/work_on.png"; > bio_on.src = "images/bio_on.png"; > info_on.src = "images/info_on.png"; > } > > </script> > </head> > <body> > <div id="container"> > <div id="bghead"> > <a href="index.php"><img id="altlogo" src="images/logo.png" > width="227" height="39" alt="Logo" /></a> > <div id="altnavcontainer"> > <a href="info.php?pt=info" > onmouseover="document.info.src=info_on.src" > onmouseout="document.info.src=info_off.src"><img name="info" > class="floatright" src="images/info_off.png" alt="Info Off" /></a> > <a href="bio.php?pt=bio" > onmouseover="document.bio.src=bio_on.src" > onmouseout="document.bio.src=bio_off.src"><img name="bio" > class="floatright" src="images/bio_off.png" alt="Bio Off" /></a> > <a href="work.php?pt=work" > onmouseover="document.work.src=work_on.src" > onmouseout="document.work.src=work_off.src"><img name="work" > class="floatright" src="images/work_off.png" alt="Work Off" /></a> > <a href="index.php" > onmouseover="document.home.src=home_on.src" > onmouseout="document.home.src=home_off.src"><img name="home" > class="floatright" src="images/home_off.png" alt="Home Off" /></a> > </div> > </div> > </div> > </body> > <html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/swfobject?hl=en -~----------~----~----~----~------~----~------~--~---
