FDT Pixlib template EventList

Tags : , ,
<?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="" enabled="true" name="eventList">import com.bourre.events.BasicEvent;&#13;
import com.bourre.events.EventType;&#13;
&#13;
class ${enclosing_package_and_type}&#13;
{&#13;
	private function EventList() &#13;
	{&#13;
		//&#13;
	}&#13;
	&#13;
	public static var clickTagEVENT:EventType = new EventType("clickTag");&#13;
	&#13;
	public static var runSiteEVENT:EventType = new EventType("runSite");&#13;
	public static var protectScreenEVENT:EventType = new EventType("protectScreen");&#13;
	public static var unprotectScreenEVENT:EventType = new EventType("unprotectScreen");&#13;
	&#13;
	// son&#13;
	public static var loadSoundLibEVENT:EventType = new EventType("loadSoundLib");&#13;
	public static var onPlaySoundEVENT:EventType = new EventType("playSound");&#13;
	public static var onToggleSoundEVENT:EventType = new EventType("toggleSound");&#13;
	&#13;
	// video&#13;
	public static var loadFLVEVENT:EventType = new EventType('loadFLV');&#13;
	public static var playVideoEVENT:EventType = new EventType('playVideo');&#13;
	public static var pauseVideoEVENT:EventType = new EventType('pauseVideo');&#13;
	public static var stopVideoEVENT:EventType = new EventType('stopVideo');&#13;
	public static var headTimePositionEVENT:EventType = new EventType('headTimePosition');&#13;
	&#13;
	// screen protection&#13;
	public static var PROTECTSCREEN:BasicEvent = new BasicEvent(EventList.protectScreenEVENT);&#13;
	public static var UNPROTECTSCREEN:BasicEvent = new BasicEvent(EventList.unprotectScreenEVENT);&#13;
}</template></templates>