0

I have a flash file with sounds in it. i cant hear the sounds when attaching it in another flash file

loadMovie("rlvl3.swf",_root.drop);

but this works

loadMovie("rlvl3.swf",_root);

Can i still use the above code?

4

1 に答える 1

1

解決策は、このコードを使用してサウンドを再生することです

var snd:Sound = new Sound(this);
snd.attachSound("r3smile");
snd.start();

これは機能しません。

var snd:Sound = new Sound();
snd.attachSound("r3smile");
snd.start();
于 2012-08-23T19:05:51.877 に答える