this is my actionscript function code:
function sayWhat(){
var mySound:Sound = new Sound();
mySound.load(new URLRequest("test.mp3"));
mySound.play();
txt.text = "loaded!";
}
and i want to load the function when the user click on the link "LOAD"
You need to use ExternalInterface.addCallback.
And here is an example