Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

flash and html

Status
Not open for further replies.

tom1537

Technical User
Nov 29, 2001
38
0
0
US
Hi

In the past I have used flash on my websites, now im trying to add flash to a ebay page, when i used flash in my site i would add the flash html to the index page and upload the flash to the now i seem to be having trouble when adding it to my ebay page html, the files are uploaded to my www, server, but using ebay how is the path added using ebay?

How is the html added to a ebay, how does flash get called from my server?

Heres the flash html.'
Thank you for any help..

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" width="300" height="250" id="MONEY" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="MONEY.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="MONEY.swf" quality="high" bgcolor="#ffffff" width="300" height="250" name="MONEY" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage=" />
</object>
 
If the page calling the swf is on the Ebay server, both calls to MONEY.swf

Code:
<param name="movie" value="MONEY.swf" />
<embed src="MONEY.swf"
must contain the full path to the document.

ie.
Code:
<param name="movie" value="[URL unfurl="true"]http://www.yourdomain.com/flash/MONEY.swf"[/URL] />
<embed src="[URL unfurl="true"]http://www.yourdomain.com/flash/MONEY.swf"[/URL]




Keith
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top