Hello, I am trying to embed videos from vimeo.com by copying and pasting into the ticket/page source, but it does not seem to work. I also trying to embed slideshow from picasa with no luck either. It seems that the embed tag is not taken into account. They do work in a html page. Any thoughts? Kind regards, JClaude <object height="321" width="400"> .... <embed ..> </object> <embed pluginspage="http://www.macromedia.com/go/getflashplaye...>
Blog General: embed tag
You should be logged in to post new messages. Create an account.
- By:
Jean-Claude Antonio - Date: on 2008 Oct. 27 20:59
- Subject: embed tag
- By: Jonathan (Gandi)
- Date: on 2008 Oct. 30 11:01
- Subject: Re: embed tag
Hi Jean-Claude, Have you try this code, in "source" mode (repleace MOVIE_LINK by the address of your video (Ex: http://vimeo.com/moogaloop.swf?clip_id=XXX...) : <div> <object type="application/x-shockwave-flash" data="MOVIE_LINK" width="425" height="344"> <param name="movie" value="MOVIE_LINK" /> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /> <p>L'affichage de cette vidéo nécessite l'installation du plugin <a href="http://www.adobe.com/go/gntray_dl_getflash...>Abobe Flash Player</a>.</p> </object> </div>
- By:
Jean-Claude Antonio - Date: on 2008 Oct. 30 13:42
- Subject: Re: embed tag
On Oct, 30 2008 11:01 CET, Jonathan (Gandi) wrote:
Hi Jean-Claude, Have you try this code, in "source" mode (repleace MOVIE_LINK by the address of your video (Ex: http://vimeo.com/moogaloop.swf?clip_id=XXX...) : <div> <object type="application/x-shockwave-flash" data="MOVIE_LINK" width="425" height="344"> <param name="movie" value="MOVIE_LINK" /> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /> <p>L'affichage de cette vidéo nécessite l'installation du plugin <a href="http://www.adobe.com/go/gntray_dl_getflash...>Abobe Flash Player</a>.</p> </object> </div>
Thanks Jonathan I tried it with not luck (TEST1). I made it work with TEST2, but only for IE and Chrome. With FF3 nothing appears... Any idea? TEST1 ///html <div> <object type="application/x-shockwave-flash" data="http://www.vimeo.com/2063934" width="425" height="344"> <param name="movie" value="http://www.vimeo.com/2063934" /> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /> <p>L'affichage de cette vidéo nécessite l'installation du plugin <a href="http://www.adobe.com/go/gntray_dl_getflash...>Abobe Flash Player</a>.</p> </object> </div> /// TEST2 ///html <div class="external-media" style="margin: 1em auto; text-align: center;"> <object type="application/x-shockwave-flash" data="http://vimeo.com/moogaloop.swf?clip_id=206... width="400" height="300"> <param name="allowfullscreen" value="true" /> <param name="allowscriptaccess" value="always" /> <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=206... /> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="true" /> </object> </div> ///
- By: Jonathan (Gandi)
- Date: on 2008 Nov. 4 17:28
- Subject: Re: embed tag
Le 30/10/08 15:42, Jean-Claude Antonio a écrit :
Thanks Jonathan I tried it with not luck (TEST1). I made it work with TEST2, but only for IE and Chrome. With FF3 nothing appears... Any idea?
You must use the XHTML mode, not the Wiki mode.
- By:
Jean-Claude Antonio - Date: on 2008 Nov. 7 06:20
- Subject: Re: embed tag
Hi, Same result. Using this code in source xhtml renders in IE but not FF3. <div class="external-media" style="margin: 1em auto; text-align: center;"> <object type="application/x-shockwave-flash" data="http://vimeo.com/moogaloop.swf?clip_id=206... width=" 400="" height="300"> <param name="allowfullscreen" value="true" /> <param name="allowscriptaccess" value="always" /> <param name="movie" allowscriptaccess="" value="http://vimeo.com/moogaloop.swf?clip_id=206... /> <param name="allowfullscreen" value="true" /> </object> </div>