Hi
Is it posible to to execute a Javascript function inside a Flash movie, and have that Javascript function to execute a function inside Flash.

eg.


1. Flash:
Text with a link eg. <a href="JavaScript: doSomething(1,2,3)">

2. JavaScript:
function doSomething(one,two,three) {
executeFlashFunction(one, two, three)
}

3.
Flash again: executeFlashFunction(one, two, three) {
go ...
}


What I need is to execute a function inside Flash from dynamically loaded text.

Hope anyone have some tips or suggestions.

best regards,
T