Display Flash(*.swf) file
Web Development
3
Posts
3
Posters
0
Views
1
Watching
-
Hello, Can anyone direct me to a good article on how to display a flash file in my aspx page? Thanks, RC
-
Hello, Can anyone direct me to a good article on how to display a flash file in my aspx page? Thanks, RC
If you're using Flash, just export the file to an HTML and copy the HTML it creates into your ASPX page. It should be something similar to this:
<object id="some_name" name="swf_file.swf"
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
width="558" height="168">
</object>Michael Flanakin Web Log
-
Hello, Can anyone direct me to a good article on how to display a flash file in my aspx page? Thanks, RC