Не уверен

Код AS3:
package com.mygame.game {
import mx.controls.*;
import flash.display.*;
import flash.events.*;
public class Game extends Sprite {
[Embed(source="images/1.swf")]
private var Game_img_arrow1:Class;
public function StartGame(container:*): void {
var game_img_arrow1: MovieClip = new Game_img_arrow1();
container.addChild(game_img_arrow1);
}
}
}