我正在开发一个Flash游戏,我有一个主菜单,当我放置一个图像时,图像会自动翻转,如果我不写任何东西来执行此操作,为什么会发生这种情况。
我的代码的样本测试:
import engine.Config;
import flash.display.Bitmap;
import mx.containers.Canvas;
import mx.controls.Button;
import mx.controls.Label;
import mx.core.UIComponent;
import mx.states.AddChild;
public class MainMenu extends Canvas
{
public var PlayButton:Button;
public var MenuU:UIComponent = new UIComponent();
[Embed(source='res/dir_right.png')]
private var menu_res:Class;
private var menu_bit:Bitmap = new menu_res();
public function MainMenu()
{
//init items
//new Canvas();
PlayButton = new Button();
MenuU.addChild(menu_bit);
height = Config.areaH;
width = Config.areaW;
//Style items
PlayButton.label = "Jugar";
PlayButton.setStyle("fontSize","15");
// Add items to stage
addChild(MenuU);
addChild(PlayButton);
MenuU.x=10;
MenuU.y=10;
PlayButton.x = 160;
PlayButton.y = 200;
}
}