Sep 16

在JavaScript中也有很多种的”空值”和”假值”,那么它们都有什么共同点和不同点呢?
其实标题里面我已经列出了JavaScript中所有的”空值”和”假值”,除了boolean值本身就是true和false这两种情况外,其它数据类型的”空值”主要是undefined和defined这两大类。更多…… Continue reading »

Sep 12

如果sound没有加载成功,那么调用Sound.play会引发ArgumentError错误,
这个语言参考上没有说明.记录一下.

Sep 10

Continue reading »

Sep 10

navigateToURL()无论你写在哪个事件都会被无情的干掉,网上找出来的大多是说用JS的window.open()。其实,js的open方法也是会被拦截的,用下面的JS函数暂时摆平。

function OpenNewWin(url)
{
    var frm=document.createElement(”form”);
    frm.method=”POST”;
    frm.target=”_blank”;
    frm.action=url;
    document.body.appendChild(frm);
    frm.submit();
}

Sep 08

PNGEncoder是来自adobe的官方的类库,可将图片转为BitmapData,它支持转jpg格式,并可以设置图片精度,不过png支持透明,颜色更棒!你可以在http://code.google.com/p/as3corelib/下载到这个类库:corelib ActionScript 3 Library,我的程序就用到了com.adobe.images下的3个类BitString.as、JPGEncoder.as、PNGEncoder.as    更多……

Continue reading »