Resizing of AS-based Flash app from FireFox vs. IE...
        Posted  
        
            by bferster
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by bferster
        
        
        
        Published on 2009-06-29T12:11:05Z
        Indexed on 
            2010/06/13
            20:02 UTC
        
        
        Read the original article
        Hit count: 229
        
I have put in some controls to allow users to resize my Flash app via Javascript:
document.getElementById("flashApp").height*=1.25;
document.getElementById("flashApp").width*=1.25;
This works great in IE/Safari, but is ignored in Firefox. I know it's talking the the flash app and gets and sets the height/width vars ok, but the same code run in FireFox ignores the scaling. (It's not the DOC spec issue)
Any thoughts?
Bill
© Stack Overflow or respective owner