点滴~~

window.onbeforeunload=function(){ 
if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey||event.ctrlKey) {  
      //判断event.altKey是为了Alt+F4关闭的情况;判断event.ctrlKey是为了Ctrl+W关闭的情况  
      alert('关闭');  
 } else{  
      alert("刷新");  
 }
 }  
 
_btn.addEventListener(MouseEvent.CLICK,fullScreen);
function fullScreen(e:MouseEvent):void {
stage.displayState = stage.displayState == StageDisplayState.NORMAL ? StageDisplayState.FULL_SCREEN : StageDisplayState.NORMAL;;
 
从Container的Child层次来讲,Container可分为两类。第一类是像VBox等,容器中所有Child都将被同时显示的。第二类是像ViewStack等,Child会分别显示。

默认情况下,第一类容器的所有Child,是在容器被实例化时全部实例化,而第二类容器的Child,将会在首次访问的时候,才被实例化。

creationPolicy属性,就是改变这种默认情况的。其取值有4个:”auto”, “all”, “none”, “queued”。

默认值是auto,当我们使用ViewStack这种容器时,将creationPolicy=all,即可立即实例化所有Child。

  layout="absolute"

 

利用CSS,fixed来绝对定位http://dancewithnet.com/2007/04/19/cross-brower-css-fixed-position/

 

JSR250的@PostConstruct 和 @PreDestroy,比以往的实现接口或者在applicationContext.xml中配置init-method的方式更为方便和标准

 

 

你可能感兴趣的:(xml,css)