flash (macromedia):
I am developing an html page with flash content but need alternate content for
people without the version of Flash required. (pretty simple so far.)
I am using Flash 8, and when I export the html and copy it into my page, the
alternate content displays fine if it is just simple text. But when I paste in
html with a table containing numerous row, with rollovers, etc., it just
doesn't display in a browser with flash or without flash.
Any ideas? At the bottom of this message, i am pasting the some of the entire
alternate content including the code generated by Flash for the alternate
content.
One other related question. Since the alternate content has rollovers, where
does the javascript for the rollovers go? Does in the page head, or does it go
in the alternate content area?
Any help on this is greatly appreciated. Thank you.
Code:
document.write(oeTags); // embed the flash movie
} else {
var alternateContent = '<TABLE WIDTH=750 BORDER=0 align="center"
CELLPADDING=0 CELLSPACING=0>
<TR>
<TD>
<IMG SRC="images_new/home/01.gif" WIDTH=51 HEIGHT=32 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images_new/home/02.gif" WIDTH=140 HEIGHT=32 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/03.jpg" WIDTH=112 HEIGHT=32 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/04.gif" WIDTH=99 HEIGHT=32 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/05.jpg" WIDTH=123 HEIGHT=32 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/06.gif" WIDTH=100 HEIGHT=32 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images_new/home/07.gif" WIDTH=125 HEIGHT=32 ALT=""></TD>
</TR>
(Code removed so that it doesn't exceed maximum length of forum allotment)
<TR>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=51 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=54 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=86 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=112 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=99 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=123 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=100 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=53 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images_new/home/spacer.gif" WIDTH=72 HEIGHT=1 ALT=""></TD>
</TR>
</TABLE>';
document.write(alternateContent);
}
// -->
</script>
:D