Hi all
usually i can find the solutions of the problems i have in this great forum…but this time…i guess i really need to ask :sigh:
okay, i have a flash document that contains two wav file in the library with ID name “soundloop1” and “soundloop2”. and there is no other stuff except for the following code on the first frame:
_root.mySound1 = new Sound(mc1);
_root.mySound1.attachSound(“soundloop1”);
_root.mySound1.start(0, 50);
_root.mySound2 = new Sound(mc2);
_root.mySound2.attachSound(“soundloop2”);
_root.mySound2.start(0, 50);
_root.mySound1.setVolume(20)
_root.mySound2.setVolume(100)
trace(_root.mySound1.getVolume())
how come the output is 100(and it sounds like 100 too…pretty loud :sigh: ) ?? what did i do wrong?
thanx in advance