Link to home
Start Free TrialLog in
Avatar of Panagiotis S
Panagiotis SFlag for Greece

asked on

Fill a textarea from a flash

Hi,

I  have an html page in which i have a flash object ( a map) and a text area.

I want to be able when i push a flash button, to fill the text area with some text.

The flash is ready, is a collection of seperatly buttons  .

Any help

Thanks


ASKER CERTIFIED SOLUTION
Avatar of Roonaan
Roonaan
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of 0h4crying0utloud
0h4crying0utloud


Just in case you need more info on how to fill the textarea from that javascript:

<script type="text/javascript">
function myFlashFunction(myVar) {
  document.getElementById("theTextAreaID").value = myVar;
}
</script>