Делаю игру, вся графика - растр. Нужно сделать кнопку. Думал загрузить в Sprite примерно так:

Код AS3:
[Embed(source = "assets/Shop.png")]
private var shop:Class;
private var Bshop:BitmapAsset = new shop();
private var buttonStart:Sprite = new Sprite;
public function Main():void
{
buttonShop.x = 100;
buttonShop.y = 200;
buttonShop.width = 200;
buttonShop.height = 50;
buttonShop.buttonMode = true;
buttonShop.graphics.beginBitmapFill(Bshop.bitmapData);
stage.addChild(buttonShop);
Но так ничего не отображается. Подскажите, что можно сделать?