One thing that bothers me is the IE7 thing ... "Click here to activate and use this control" ...
One little trick to work around the "Click to Activate and Use This Control" problem
(due to a plugin issue with microsoft)
Your embed code is:
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/s wflash.cab#version=8,0,0,0"
id="mars" align="middle" height="130" width="130">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="mars.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="mars.swf" quality="high" bgcolor="#ffffff"
name="mars" allowscriptaccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
align="center" height="130" width="130">
</object>
- <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
- codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/s wflash.cab#version=8,0,0,0"
- id="mars" align="middle" height="130" width="130">
- <param name="allowScriptAccess" value="sameDomain">
- <param name="movie" value="mars.swf">
- <param name="quality" value="high">
- <param name="bgcolor" value="#ffffff">
- <embed src="mars.swf" quality="high" bgcolor="#ffffff"
- name="mars" allowscriptaccess="sameDomain"
- type="application/x-shockwave-flash"
- pluginspage="http://www.macromedia.com/go/getflashplayer"
- align="center" height="130" width="130">
- </object>
If you ceate a myprintln.js file that simply says:
// myprintln.js
function myprintln(s) { document.writeln(s); }
- // myprintln.js
- function myprintln(s) { document.writeln(s); }
and put this in the head of your file:
...yada yada yada...
<script src="myprintln.js"></script>
</head>
- ...yada yada yada...
- <script src="myprintln.js"></script>
- </head>
...and wrap your script like this:
<script>
myprintln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
myprintln('codebase="http://fpdownload.macromedia.com/pub/shockwave/c abs/flash/swflash.cab#version=8,0,0,0"');
myprintln('id="mars" align="middle" height="130" width="130">');
myprintln('<param name="allowScriptAccess" value="sameDomain">');
myprintln('<param name="movie" value="mars.swf">');
myprintln('<param name="quality" value="high">');
myprintln('<param name="bgcolor" value="#ffffff">');
myprintln('<embed src="mars.swf" quality="high" bgcolor="#ffffff"');
myprintln('name="mars" allowscriptaccess="sameDomain"');
myprintln('type="application/x-shockwave-flash"');
myprintln('pluginspage="http://www.macromedia.com/go/getflashplayer"' );
myprintln('align="center" height="130" width="130">');
myprintln('</object>');
</script>
- <script>
- myprintln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
- myprintln('codebase="http://fpdownload.macromedia.com/pub/shockwave/c abs/flash/swflash.cab#version=8,0,0,0"');
- myprintln('id="mars" align="middle" height="130" width="130">');
- myprintln('<param name="allowScriptAccess" value="sameDomain">');
- myprintln('<param name="movie" value="mars.swf">');
- myprintln('<param name="quality" value="high">');
- myprintln('<param name="bgcolor" value="#ffffff">');
- myprintln('<embed src="mars.swf" quality="high" bgcolor="#ffffff"');
- myprintln('name="mars" allowscriptaccess="sameDomain"');
- myprintln('type="application/x-shockwave-flash"');
- myprintln('pluginspage="http://www.macromedia.com/go/getflashplayer"' );
- myprintln('align="center" height="130" width="130">');
- myprintln('</object>');
- </script>
...it will work around that problem
Then I like it much more when the menu is on the left hand side, but on the Home page it's up top ... I think it would also be cool if you add some rollover to the links in your menu ...
Then you may want to disable the link of the page that a user is on, for example if I am on the "Photo album" page, the photo album link can be disabled, and in another colour ...