Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to embed a flash (.swf) file into asp.net?

Tags:

flash

asp.net

How to display a flash (.swf) file into asp.net ?

like image 985
sevugarajan Avatar asked Mar 21 '09 06:03

sevugarajan


1 Answers

got this from YouTube

<object width="425" height="344">
    <param name="movie" value="http://www.youtube.com/v/Xt5t9BO6xkA&hl=en&fs=1"></param>
    <param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
    <embed src="http://www.youtube.com/v/Xt5t9BO6xkA&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed>
</object>

You'd only need this:

<object width="425" height="344">
  <embed src="PATH_TO_YOUR_FILE" type="application/x-shockwave-flash" width="425" height="344"></embed>
</object>
like image 126
roman m Avatar answered Sep 28 '22 12:09

roman m