i'm not a flash developer, so i don't know if this is possible, please clarify it if you can :)
My situaion: I have to play some sound on a webpage with javascript, and probably flash is the best choise, so i created an swf library with mi sounds wit swfmill: http://swfmill.org/
this is my code:
<?xml version="1.0" encoding="iso-8859-1" ?>
<movie width="320" height="240" framerate="12">
<background color="#ffffff"/>
<frame>
<library>
<sound id="incoming" import="incoming.mp3" />
<sound id="outgoing" import="outgoing.mp3" />
</library>
</frame>
</movie>
I converted it with swfmill and now i have my sound.swf library.
Is it possible to play a sound from this library in javascript? or i'm missing something? Can you please provide a valid alternative?
Thank you very much and sorry for my english!