I have a button and I have attached AS to it. Below is the code.( I have Flash MX 2004 version 7.2 -Educational version)
on (release) {
var mysound:Sound=new Sound();
trace(“mysound”);
mysound.loadSound(“seva.mp3”, true);
mysound.start();
daqui_mc.gotoAndPlay(2);
}
On release it should create a sound, load the mp3 and play a simple fade in/out picture animation. The movie clip starts playing but doesnt load the sound!!! And when I trace the instance of the sound object the output is “mysound” but I think the output should be “Object”
And I dont know see anything wrong!!! Please help with any suggestion or ideas.
Thank you.