col:4:Error:Embed変数に既存の値を設定してはいけません。 エラーは "[Embed(source =" ../bin/03Outside.mp3 ")]"の行を参照しています。 。 } [」最初の下では、(私はそれが間違っている何かであることを示していると考えている)赤い線があるこのメッセージが表示されたら、FlashDevelopにサウンド(mp3)を追加しますか?
ここでは私のコードです:
package
{
import flash.display.Sprite;
import flash.events.Event;
import flash.media.Sound
/**
* ...
* @author Kendall Murray
*/
public class Main extends Sprite
{
public function Main():void
{
if (stage) init();
else addEventListener(Event.ADDED_TO_STAGE, init);
}
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
[Embed(source = "../bin/03Outside.mp3")]
var mySound:Sound = new Sound();
mySound.load(new URLRequest("03Outside.mp3"));
mySound.play();
}
}
}
助けてくださいありがとう