Quote:
|
Originally Posted by Narasinha
THe <EMBED> tag was created by Netscape to provide access to Netscape plugins. Microsoft also began support for this tag, though they suggested the <OBJECT> tag the W3C developed. <EMBED> has never actually been an official HTML tag.
The <OBJECT> tag has lots of possible attributes, as you can see if you check Index Dot HTML's <OBJECT> Page.
|
Thanks a lot Narashina>
In addition to your reference links i was combing the web for more info and found this informative article by Drew McClellan
http://www.alistapart.com/articles/flashsatay
which is a primer on embedding swf files into xhtml documents w/ out using EMBED tag....
I highly suggest those interested to read it any if any techs can find another way that is cross-browser friendly please let me know
heres'a nutshell of the rather long article:
Basically, what Drew is saying is to make a container Flash w/
_root.loadMovie(_root.path,0); in frame oneAction
this will make the player load the the movie (w name in v.path on the root) into _level0 of the current movie.
so we call the movie
c.swf?path=the_movie.swf
and container movie is c.swf. so upon evaluation, we get
_root.loadMovie("the_movie.swf",0);
and the the code mark-up.............
<object type="application/x-shockwave-flash"
data="c.swf?path=movie.swf"
width="400" height="300">
<param name="the_movie"
value="c.swf?path=the_movie.swf" />
</object>
and then he goes on to say that the only drawback is loosing the use of the codebase attribute which would prompt the user for upadate if pluggin was old--not updated ...........(so we put a dummy transparent one frame swf file somewhere on page w/ codebase still in it.....)
OK any techs out there see any problems w/ using the approach above?
Any things to look out 4?
lemme know if ya do!
DAREN!
http://WebPageTurner.com