You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**The scrollable object taouced to start scroll but the scroll didn't start yet.*/
public static const TOUCHED_TO_SCROLL:String = "TOUCHED_TO_SCROLL" ;
/**This event will dispatch on all scrolled items childs to tell them that they are scrolling*/
public static const YOU_ARE_SCROLLING_FROM_YOUR_PARENT:String = "YOU_ARE_SCROLLING_FROM_YOUR_PARENT";
public static const LOCK_SCROLL_TILL_MOUSE_UP:String = "LOCK_SCROLL_TILL_MOUSE_UP";
/**It will force the scroller to scroll up or down from the command from it's childs*/
public static const SCROLL_THE_SCROLLER:String = "SCROLL_THE_SCROLLER" ;
/**User is dragging but the scroll prosess may not started yet */
public static const LISTEN_TO_SCROLL:String = "LISTEN_TO_SCROLL" ;
public var freeScrollOnTarget_TD:Boolean ;
public var freeScrollOnTarget_LR:Boolean ;
public var dx:Number,
dy:Number;
public function ScrollMTEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false,FreeScrollOnTarget_TD:Boolean=false,FreeScrollOnTarget_LR:Boolean=false,deltaScrollX:Number=0,deltaScrollY:Number=0)