⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iplayablebase.as

📁 jquery插件
💻 AS
字号:
package org.goasap.interfaces {	import flash.events.IEventDispatcher;		/**	 * Defines the portion of the IPlayable interface used by the PlayableBase	 * class, which provides a standard set of play-state constants used in Go.	 * 	 * @author Moses Gunesch	 */	public interface IPlayableBase extends IEventDispatcher {		/**		 * Normally this should only return one of the standard play-state		 * constants defined in the PlayableBase class.		 */		function get state () : String;		/**		 * An arbitrary id value for the convenient identification of any		 * playable instance. 		 * 		 * PlayableBase sets this property to an instance-count by default,		 * which can be overwritten in program code with any value.		 */		function get playableID () : *;		function set playableID (value: *) : void;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -