|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
Flash and XHTML Problem
My navigation links were made with flash. I like them, but the code my fried gave me to put them on my page does not validate with XHTML 1.1. I asked my friend if he could just make them into regular images (jpegm gif, png, whatever) but he is new to flash and can't seem to do it. SO i have two questions
1. Is there anyway I can make the code XHTML 1.1 compatible or 2. how can you take the images in a swf file and make them into seperate image files
__________________
CHornJr "One day I'll know what I am doing" ![]() My Blog Suanhacky Lodge #49 Rebel Squadrons |
|
#2
|
||||
|
||||
|
I read a great article about this...
http://www.alistapart.com/articles/flashsatay/ CHeck this sample code: Code:
<object type="application/x-shockwave-flash" data="movie.swf" width="400" height="300"> <param name="movie" value="movie.swf" /> </object> Apparently this works in most browsers, except IE downloads the entire file before it plays (instead of streaming it)... The workaround, dubbed the Satay Method, is making a flash movie within a flash movie... basically create a movie that calls the main one... a bonus to this is that if all the movies are the same proportions than you only need one 'container' movie. As the article explains, the container movie simply has _root.loadMovie(_root.path,0); as the first frame... then call the container movie and pass it parameters through the path... like so: Code:
<object type="application/x-shockwave-flash" data="container.swf?path=movie.swf" width="400" height="300"> <param name="movie" value="container.swf?path=movie.swf" /> </object> Although i haven't tried the actual flash workaround, I'm positive it works... and I can ensure that the XHTML is 1.1 compliant. |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Flash Development > Flash and XHTML Problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|