I was wondering if there was a scripting language that one could use to to interact with a flash object on a webpage? I am trying to automate some tasks but the webpage uses flash.
Thanks for the help!
Edit: I am trying to fill out a form basically click a few “check boxes” and then a submit button but I would like to know if its possible to automate this task.
Using ExternalInterface allows you to communicate between ActionScript and JavaScript.
Here are a few examples from the adobe site to get you started with ExternalInterface.
Here is the JavaScript to create and submit a form:
To call it, add this call to your ExternalInterface (ActionScript) and add your parameters:
If you want to access an existing form control (a checkbox, for example, and check it), then do this: