Flash movie in c# asp.net (aspx) file help...

T

trint

How can I make my .swf file work in my c# project. I have tried to
use this (works fine in regular html page as a test):
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://
download.macromedia.com/pub/shockwave/cabs/flash/
swflash.cab#version=6,0,0,0"
WIDTH="2000"
HEIGHT="2000" id="flashslide" ALIGN="">
<PARAM NAME=movie
VALUE="fhslide/flashslide.swf?src=flash-here.com&imglist_fn=fhslide/
getimglist.txt&img_path=fhslide/img&interval=3000&w=400&h=300"> <PARAM
NAME=quality VALUE=high>
<PARAM NAME=scale
VALUE=noscale> <PARAM NAME=wmode VALUE=transparent> <PARAM
NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="~/
flashslide.swf?src=flash-here.com&imglist_fn=fhslide/
getimglist.txt&img_path=fhslide/img&interval=3000&w=400&h=300"
quality=high scale=noscale wmode=transparent bgcolor=#FFFFFF
WIDTH="2000" HEIGHT="2000" NAME="flashslide" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://
www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

Any help is appreciated.
Thanks,
Trint
 
A

Alexey Smirnov

How can I make my .swf file work in my c# project. I have tried to
use this (works fine in regular html page as a test):
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://
download.macromedia.com/pub/shockwave/cabs/flash/
swflash.cab#version=6,0,0,0"
WIDTH="2000"
HEIGHT="2000" id="flashslide" ALIGN="">
<PARAM NAME=movie
VALUE="fhslide/flashslide.swf?src=flash-here.com&imglist_fn=fhslide/
getimglist.txt&img_path=fhslide/img&interval=3000&w=400&h=300"> <PARAM
NAME=quality VALUE=high>
<PARAM NAME=scale
VALUE=noscale> <PARAM NAME=wmode VALUE=transparent> <PARAM
NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="~/
flashslide.swf?src=flash-here.com&imglist_fn=fhslide/
getimglist.txt&img_path=fhslide/img&interval=3000&w=400&h=300"
quality=high scale=noscale wmode=transparent bgcolor=#FFFFFF
WIDTH="2000" HEIGHT="2000" NAME="flashslide" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

Any help is appreciated.
Thanks,
Trint

are you sure about

"~/flashslide.swf?src=flash-here.com&imglist_fn=fhslide/
getimglist.txt&img_path=fhslide/img&interval=3000&w=400&h=300"

?
 
A

Alexey Smirnov

Yes, I'm sure, because I cut and pasted it from "view source" where it

"~" is used by ASP.NET and you cannot use it in the html tags.

Try

<EMBED src="/flashslide.swf...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top