I have swf file and i need to convert this into website, what are the steps ?
thanks
Printable View
I have swf file and i need to convert this into website, what are the steps ?
thanks
Do you mean that you need to put a SWF file on a website? If so, there are numerous instructional pages; here's one.
If you indeed mean that you need to convert a SWF into a functional website, then there are no concrete "steps" to follow. You may be able to salvage some graphics and text content from the SWF, but you'll essentially be making new web pages from scratch.
Alright..thanks
Ok , it's working but i have two questions:
1.How to make the flash run without have IE warning me ?
2.How can I play the movie in full screen inside the webpage ?
I'm using this code :
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<object width="550" height="400">
<param name="movie" value="test.swf">
<embed src="test.swf" width="550" height="400">
</embed>
</object>
</body>
</html>
What is the warning you receive?
The warning says : "to help protect your security internet explorer has restricted this webpage from running scripts...etc" , so my question is :
If the user has the default values for I.E , would he get this when user browse my site online , or do i have to include some code in the html page ?
you only get that warning if you're loading that HTML file/SWF file from a local drive (C:/.../...); you should instead setup a local webserver and serve your files from it.
It's online and it's working great !...Thanks all