How to list available callbacks exposed by a flash element
        Posted  
        
            by Justin Johnson
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Justin Johnson
        
        
        
        Published on 2009-06-26T07:31:14Z
        Indexed on 
            2010/03/12
            20:17 UTC
        
        
        Read the original article
        Hit count: 360
        
JavaScript
|flash
Is there a way to query an embedded flash element to determine the available methods that can be executed on it via JavaScript?
Edit: It appears that in IE it's as simple as
for ( i in flashNode ) {
    alert(i);
}
After much clicking, they will be some of the very last members enumerated.
Still not able to determine this in Firefox though.
© Stack Overflow or respective owner