Tom的其他文章

Flex 4 List翻页效果

<?xml version="1.0" encoding="utf-8"?>
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">




fromValue="{orignPos}" toValue="{pos}"/>
fromValue="{orignPos}" toValue="{pos-myList.height}"/>

事件冒泡

事件的冒泡:
Flex的事件冒泡机制大概是这样的:在创建一个事件是默认是不会冒泡的,也就new Event(type, false)
这种事件只能由产生这个事件的对象来处理,如果这个对象没有截获这个事件,这个事件就会被销毁。如果