I recently encountered some issues with trying to debug a flash application that posted an XML packet to a URL. I first tried FireBug, it didn't seem to be picking up the XML that was posted. After a quick Google search, I ran across a post describing how to use Fiddler (an IE based tool) with Firefox.
Michael Moore (no, not the documentary director!) brought this little IE 7 quick fix to my attention.
Just below the last in your HTML page, insert the following Javascript:
Open a new document in Notepad or your HTML editor, and copy & paste the following content into it:
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++)
{
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
Save this file as fixit.js
Pretty cool stuff.
For more control and some additional features there is SWFObject:
SWFObject is a JavaScript file used to embed Macromedia Flash content. The script can detect the Flash plug-in in all major web browsers. Its search engine friendly & degrades gracefully.
I learned something today about Windows Server 2003 and IIS 6. Flash Video Files won't stream at all. Hrm...fun. What is really nice is the Flash piece will play just fine, the video just won't show up.
With IIS 6.0, Microsoft changed the way streaming media is handled. Previous versions of IIS did not require any modification to stream Flash Video. Microsoft IIS 6.0, the default web server that ships with Windows 2003, requires a MIME type to recognize that FLV files are streamed media.
So you have to add the MIME type in IIS...
On the Windows 2003 server, open the Internet Information Services Manager.
Expand the Local Computer Server.
Right-click the local computer server and select Properties.
Select the MIME Types tab.
Click the New... button and enter the following information:
I'm a senior developer at RealEyes Media, Adobe Certified Instructor and Adobe Certified Professional. Here you'll get my ideas and experience Flex, Flash, ColdFusion and related technologies as well as some generally off the wall stuff.