Link to home
Start Free TrialLog in
Avatar of user5500
user5500

asked on

Flash video embeded in Sharepoint

I need to know how to embed my Flash .swf file on my WSS site.  It is a video player created with actionscript 2.0 that refers to an .xml playlist and a directory that holds the actual video files.  But i can't figure out how to embed the player within Sharepoint.  I thought for a while that there's web templates and/or web parts on the web to allow me to do this but none that i've seen will allow me to even import the web parts required.
ASKER CERTIFIED SOLUTION
Avatar of Greg Besso
Greg Besso
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi whoajack,

   I'm having some problem with above code. Can explain me the code please. I added my flash file to document library. I used ur code in that I changed the  
"VALUE="http://servername/Shared Documents/hr.swf" and also I changed the same url to <Embed src="http://servername/Shared Documents/hr.swf">
After clicking the save button it's under process................

What sholud I do? Can u please give the solution for this.

Thanks
I'm sorry, can you clarify a bit. You say you click Save on the Source Editor pop-up, and it doesn't save and close the window and refresh the page?

In the simplest example, you can also try to just insert the <embed> ... </embed> portion of the flash code, skipping the <object> ... </object> part that is more extensive. But either way, yes please clarify what is occurring and will try to help.
Avatar of user5500
user5500

ASKER

basically what i have is a flash file to play external videos. All videos are saved in a folder named RawVideos. . .there is also an .xml file that resides outside the RawVideos directory that provides the playlist for the Flash file.  
I think the first two responses will work thanks guys
I never understood the use of "B" without explanation. Was there a better solution? If so please share. Would like to update my knowledge base. I think this issue is common.
Thanks!
Greg
Hi whoajack,
  I added a <EMBED src="http://yourdomain.com/SiteCollectionDocuments/swf/whoa_logo.swf" quality=best wmode=opaque bgcolor=#FFFFFF  WIDTH="180" HEIGHT="180" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
code to my webpart. I changed the src path and I saved it. After doing this my page is loading.......................................
What should I do??
One more thing my swf file is located in my library it self.
Thanks
Hi there!

If you hard code in the .aspx file try this:


<xsl:text disable-output-escaping="yes">
<![CDATA[
<EMBED src="http://yourdomain.com/SiteCollectionDocuments/swf/whoa_logo.swf" quality=best wmode=opaque bgcolor=#FFFFFF  WIDTH="180" HEIGHT="180" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
]]>
</xsl:text>

Open in new window

I'd like to use Action script to collect a number of predetermined sets of initial position and movement coordinates for several graphic elements contained in my SWF file (as well as many of the standard Flash parameters needed to play my SWF) from a SharePoint list where they are stored, as a "provider connected"  source to a Flash webpart like this .
Has anyone done this before?... or can anyone provide a simple example of how to accomplish this with SharePoint, Flash and Action Script?
Bill