@Cycloptichorn,
Cycloptichorn wrote:This seems to work but screws up the page.
Because of that I fixed it for you (and need to fix the code that lets it screw up the page).
Here's what I did. Let's start with your code.
Quote:<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=71377" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="intl_lang=en-us&photo_secret=0799859678&photo_id=4364043901&flickr_show_info_box=true"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&photo_secret=0799859678&photo_id=4364043901&flickr_show_info_box=true" height="300" width="400"></embed></object>
Step one is to look for "src" and grab that value. So in this case it is:
http://www.flickr.com/apps/video/stewart.swf?v=71377
Sometimes that is all it takes, and all the necessary variables are passed to it right there so I load that up as a url in my browser and if I can see what I want to see then it works. If not, it may need more variables passed to it. And they are usually in "flashvars" (flash variables I think that means). Anyway, so here I copy out those variables too:
Code:intl_lang=en-us&photo_secret=0799859678&photo_id=4364043901&flickr_show_info_box=true
I probably only need the photo variables but I just append them all. Query string variables start with a question mark and each additional variable uses an ampersand. So when I combine the src url with the flashvars I get:
http://www.flickr.com/apps/video/stewart.swf?v=71377&intl_lang=en-us&photo_secret=0799859678&photo_id=4364043901&flickr_show_info_box=true
That url works in my browser to show the video in full-screen flash, so it will almost always work in flash tags.