simple question: is there some way to get the number of flash objects currently present on a page via javascript? some DOM function maybe? or any other way.. thanks! gigi
Simple bit of JS here for you, if you use the <object> tag to embed you will have to edit the code. function countFlash(){ var flashArray = document.getElementsByTagName("EMBED"); alert(flashArray.length); } Code (markup): n_n