Adobe Connect User Community
Menu

#1 2008-10-30 15:59:18

**_Catou_**

Embed a Connect Recording File

Can you embed a Shockwave recording file?  If so, what is the code?  I have copied this public test recording - https://admin.na3.acrobat.com/_a787702210/p10082554/
 

my code for SWF  does not work with this URL:

<object width="320" height="240"><param name="movie" value="myfile.swf"></param><param name="allowFullScreen" value="false"></param><param name="autoplay" value="false"></param><embed src="myfile.swf" autoplay="false" type="application/x-shockwave-flash" allowfullscreen="false" width="320" height="240"></embed></object>

Do I need the specific *.file name?

Thanks!
-c

Offline

#2 2008-10-31 08:15:17

**_gajett_**

Re: Embed a Connect Recording File

use an iframe:

<iframe src="https://admin.na3.acrobat.com/_a787702210/p10082554/" scrolling="no" frameborder="1" width="700" height="600"></iframe>

set the width and height so everything is legible.

Offline

#3 2008-10-31 09:49:16

**_Catou_**

Re: Embed a Connect Recording File

thanks - it works but autoplays.  How do I do set autoplay to false?  Here is my code:

<object width="700" height="600"><param name="movie" value="myfile.swf"></param>
<param name="allowFullScreen" value="false"></param>
<param name="autoplay" value="false"></param>
<iframe src="https://admin.na3.acrobat.com/_a787702210/p10082554/"
scrolling="no" frameborder="1" width="700" height="600"></iframe>
</object>

Offline

#4 2008-10-31 12:35:49

**_gajett_**

Re: Embed a Connect Recording File

the only thing actually doing anything in your code is the iframe.  the rest is ignored.  all you need is the iframe snippet. 
i'm not sure that you can all a recording and pass an autoplay param, especially when you are really just putting the actual recording in a container on your page. i'll look around and see if i can find any info on passing parameters to the recording.

--g--

Offline

#5 2008-10-31 17:43:59

**_dyun_**

Re: Embed a Connect Recording File

you could potentially create an offline recording which creates an FLV that you could host anywhere and put more controls on.

Here is info on how to create an offline recording:
http://help.adobe.com/en_US/AcrobatConn … A9BE4.html

Offline

Board footer