views:

106

answers:

1

I have a swf object embedded into a web page. Without having access to the source code of the swf file, how can I find the methods/properties that are exposed?

For example...

alert(document.getElementById('swfObject').id);

...returns a pop-up of "swfObject". And this...

document.getElementById('swfObject').someMethod();

...executes someMethod.

Thanks.

A: 

A similar question and my answer.

newtover