Well, have you tried my suggestion? Looking at how your page is set up, I would guess no, because it has no object/embed tag without javascript and is therefore javascript dependant, at least for the Flash to be presented. I do notice that there is fall back non-javascript, non-Flash content that resembles the Flash content with less functionality - a nice feature.
Here's what to do (because I don't have a Mac to test on), in the FF 3 browser on Mac that you are using, make sure javascript is enabled and that the page is working as normal with only the problem you described. Next, paste this into the address bar:
Code:
javascript:document.write('<textarea>'+document.body.innerHTML+'<\/textarea>')
and hit enter. This will make the display of the page disappear from view (you can hit the back button of the browser to get back to it), and in its place, a small text field will appear in the upper left corner. Select all from that field and copy and paste it into a text editor. Search for:
embed
you will see something like so:
Code:
. . . xamples of recent websites we have designed for Nursery, Infant, Primary and Junior Schools.</p>
<p>Click on the screen-shot to learn more about the project.</p>
<div id="content_left_portfolio_colleges"><embed type="application/x-shockwave-flash" src="portfolio.swf" style="" id="colleges" name="colleges" bgcolor="#ffffff" quality="high" wmode="transparent" width="590" height="850"></div>
<script type="text/javascript">
var so = new SWFObject("portfolio.swf","colleges","590px","850px","8","#ffffff");
so.addParam("quality", "high");
so.addParam("wmode", "high");
so.addParam("wmode", "transparent");
so.write("content_left_portfolio_colleges");
</script>
<p>Interested? Then <a href="../request-a-consultatio . . .
with the embed tag highlighted in some fashion, similar to the above. Check the entire embed tag:
Code:
<embed type="application/x-shockwave-flash" src="portfolio.swf" style="" id="colleges" name="colleges" bgcolor="#ffffff" quality="high" wmode="transparent" width="590" height="850">
If it doesn't contain the wmode="transparent" attribute as the one in this example does, it is a problem with the script. If it does, it is a problem with the FF 3 browsers under a Mac OS.
Bookmarks