The original code to be included in your web page looks like this:
<embed src="
http://www.mentalaxis.com/fl8/badgr2.swf?framealphas=0,0,0,100,100&
framescaling=1.05,1.01,1.22,1.04&userid=16722880@N00&
framecolors=#ffffff,#535353,#000000,#ffffff,#000000&waittime=1&
rolling=yes&displaytime=3&badgrmode=1&limit=all&
columns=20&rows=4 " bgcolor="#ffffff" height="760"
width="152"></embed>
There are couple of problems.
- Writing '&' in the URL to pass parameters is not allowed. So you'll have to change them from '&' to '&'. (no space between '&' and 'amp;')
- They don't like <embed>. So instead of using <embed src="[url]" width="" height="">, we use >object type="application/x-shockwave-flash" data="[url]" width="" height=""><param name="movie" data="[url]"></object>
- That's it. (Unless I forgot something.....)
The final code looks like this:
<object type="application/x-shockwave-flash"
data="http://www.mentalaxis.com/fl8/badgr2.swf?framealphas=0,0,0,100,100&
framescaling=1.05,1.01,1.22,1.04&userid=16722880@N00&
framecolors=#ffffff,#535353,#000000,#ffffff,#000000&waittime=1&
rolling=yes&displaytime=3&badgrmode=1&limit=all&
columns=20&rows=4"
width="760" height="152">
<param name="movie" value="http://www.mentalaxis.com/fl8/badgr2.swf?framealphas=0,0,0,100,100&
framescaling=1.05,1.01,1.22,1.04&userid=16722880@N00&
framecolors=#ffffff,#535353,#000000,#ffffff,#000000&waittime=1&
rolling=yes&displaytime=3&badgrmode=1&limit=all&
columns=20&rows=4"/>
</object>
It looks a little bit more ugly, but it's standard compliant. :-)
No comments:
Post a Comment