在线示例

视频教学

示例代码

var userInfo = {coins: 900, energy: 100};
var itemsCount = [1, 5, 3, 10];
var itemsPrice = [100, 200, 300, 500];

var UIPanelScene = BaseScene.extend({
    onEnter:function(){
        this._super();
        //产生一个面板,注意面板背景元件jpg.PanelBack,jpg表示这个素材会被输出为单独的jpg而非打包到贴图里
        //Create a UI panel, note the background symbol of jpg.PanelBack, jpg means the asset will be exported as a single jpg file
        //instead of packing into the texture
        var panel = flax.assetsManager.createDisplay(res.uiPanel, "storePanel", {parent: this});
        //将子动画播放
        //Play a child animation
        panel.playBtn.play();
        //显示用户数据
        //Update the user info
        panel.coinsTxt.text = userInfo.coins;
        panel.energyTxt.text = userInfo.energy;
        //显示商店物品数据
        //Update the shop items info
        for(var i = 0; i < 4; i++)
        {
            var item = panel["p" + i];
            item.icon.gotoAndStop(i);
            item.countTxt.text = itemsCount[i];
            item.priceTxt.text = itemsPrice[i];
            item.__index = i;
            //侦听商店物品点击事件
            //Listening the click event of the shop item
            flax.inputManager.addListener(item, this._onItemClick, InputType.click, this);
        }
        //侦听playBtn的点击事件
        //Listening the click event of the playBtn
        flax.inputManager.addListener(panel.playBtn, this._onPlayClick, InputType.click, this);
    },
    _onItemClick:function(touch, event)
    {
        //currentTarget就是我们点选的物品
        //currentTarget is just the shop item we clicked
        var item = event.currentTarget;
        cc.log("NO." + item.__index + " item was clicked, its price is: " + item.priceTxt.text);
    },
    _onPlayClick:function(touch, event)
    {
        cc.log("playBtn was clicked!");
    }
});

所有示例的Github源码

特别说明:有些开发者,从flash制作到代码显示,没有发现一点错误日志,就是看不到动画或者UI面板,这很可能是坐标的问题。默认情况下,一个动画或者UI面板在flash中的十字架位置,会被自动转换为cocos的锚点,如果这个十字架位置正好在左上角,在程序中显示时又没有设位置(默认是0,0点),那么这个动画或者UI就被放在了屏幕的左下方,是看不到的,关于flax里的锚点,参考这里

日期:2015年2月5日 作者:longames
  1. 看来视频教学。简直碉堡了。

    GreenDay:2015年3月23日