Mar 17 2008

AC_FL_runcontent alternatives

Classified in: Flash, HTMLpaomic at 6:06 pm

AC_FL_runcontent is a JS script used to embed flash movie into HTML pages. There are a number of alternatives to it, the main one being SWF_Object, available at Google code repository. It adds features as flash player version detection and alternative code display, both web standard compliant. Other useful scripts can be UFO or SWFFix, but both of them are deprecated, and the respective developers joined SWF_Object 2.0 team (or suggest ot use this tool). To learn more about Flash embedding and object/embed quarrel read here.


Mar 03 2008

What’s AC_FL_RunContent?

Classified in: Flashpaomic at 5:56 pm

Maybe you wonder (as I did) what AC_FL_RunContent is. You could find it in many website using flash animations. It’s a script that gets called when you need to include such an object in a webpage. While you could use <embed> or <object> tags (with the former being deprecated in favor of the latter), you could have annoying problem if you (or you’re website visitors) are using a Microsoft browser. Using these navigation softwares, users need to explicitly enable ActiveX (or Flash) content, by clicking on it (an appropriate warning will be shown). Microsoft is removing this need, but until it is completely removed, you should use this Javascript script (or an alternative one). They basically use document.write javascript function in order to write the <object>HTML code snippet to the HTML. This trick disable ActiveX activation, so you and your website users don’t have the annoying bar under IE.