Reputation: 5704
I know Silverlight has this capability, and I have no experience in Flash Development - I need a Flash application to read data in a hidden div on the host page.
Can this be done?
Upvotes: 1
Views: 307
Reputation: 245419
Yes. In Actionscript 3 (not sure about 2) you can use the ExternalInterface object to execute any Javascript against the DOM of the page your Flash app is placed on.
ExternalInterface also gives the Javascript on your page the ability to call functions in your Flash app.
ExternalInterface - ActionScript 3.0
Upvotes: 2
Reputation: 9553
At the least, you could use the ExternalInterface to get stuff via JavaScript.
Upvotes: 2