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

📄 tooltip.as

📁 this is a as3 flash video gallery file
💻 AS
字号:
package fvg{	/******************************	* Tooltip class:	* Extends MovieClip to create a tooltip display	* for the video thumbnails.	* -----------------------------	* Developed by Dan Carr (dan@dancarrdesign.com) 	* For Adobe Systems, Inc. - Adobe Developer Center	* Last modified: February 24, 2007	*/	import flash.text.TextField;	import flash.display.MovieClip;		public class Tooltip extends MovieClip	{		/**		* SymbolName for object		*/		public var symbolName:String = "Tooltip";				//***************************		// Properties:				public var text:String = "";				//***************************		// Intialization:				public function Tooltip()		{			// Construct!			lbl.autoSize = "left";		}				//***************************		// Public methods:				public function setLabel(l:String):void		{			lbl.htmlText = text = l;			skin_mc.width = Math.round(lbl.textWidth) + 20;		}	}}

⌨️ 快捷键说明

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