Sha256: f74f0054468cff13d2482e1abd217fc5e03c423a469a110f93268b038c176d1e
Contents?: true
Size: 762 Bytes
Versions: 3
Compression:
Stored size: 762 Bytes
Contents
package com.fourD.core { import flash.events.*; public class PathwayEvent extends Event { public static const TRAVERSE:String = "traversePathwayEvent"; /** url that tells you how to traverse through a network of views or content */ public var url:Array; /** * A PathwayEvent tells the View how to respond when some new data is loaded * or you want to peform some super sophisticated animation sequence * It also allows you to finely control the View state logic * Edit this as you see fit. */ public function PathwayEvent(type:String, bubbles:Boolean = false) { super(type, bubbles); } override public function clone():Event { return new PathwayEvent(type, bubbles); } } }
Version data entries
3 entries across 3 versions & 1 rubygems