The titles are confirmed to be broken in the Safari browser on Mac.
The fix is detailed below. Login to the Blog admin and locate in the Theme Editor the file Main Index Template. Find the code shown below and paste it with the replacement text.
This will fix the Flash Titles so they show on all posts.
<!-- THE TITLE AREA -->
<script type="text/javascript">
if(sniffer.getFlashVersion() < 8) {
document.writeln('<h2 id="post-<?php //the_ID(); ?>"><a href="<?php //the_permalink() ?>" rel="bookmark"><img src="/fonts.php?<?php //the_title(); ?>"/></a></h2> ');
}else{
document.writeln('<div id=flashtitle>');
var so = new SWFObject("bText.swf", "blog", "100%", "40", "8", "");
so.addVariable("textString", "<?php the_title(); ?>");
so.addVariable("urlString", "<?php the_permalink(); ?>");
so.addParam("wmode", "transparent");
so.write('flashtitle');
document.writeln('</div>');
}
</script>
<!-- END TITLE -->
REPLACE ^ WITH CODE BELOW<!-- THE TITLE AREA -->
<script type="text/javascript">
if(sniffer.getFlashVersion() < 8) {
document.writeln('<h2 id="post-<?php //the_ID(); ?>"><a href="<?php //the_permalink() ?>" rel="bookmark"><img src="/fonts.php?<?php //the_title(); ?>"/></a></h2> ');
}else{
var randomobject="flashtitle"+Math.floor(Math.random()*9999);
document.writeln('<div id='+randomobject+'>');
var so = new SWFObject("bText.swf", randomobject, "100%", "40", "8", "");
so.addVariable("textString", "<?php the_title(); ?>");
so.addVariable("urlString", "<?php the_permalink(); ?>");
so.addParam("wmode", "transparent");
so.write(randomobject);
document.writeln('</div>');
}
</script>
<!-- END TITLE -->
What this does is give each Flash Title a unique layer ID so each title has a unique layer id.