`
文章列表

flex绘制菱形

    博客分类:
  • flex
package com { import mx.core.UIComponent; public class Draw extends UIComponent { private var WIDTH:int=60; private var HEIGHT:int=30; public function Draw() { drowOne();//绘制一个菱形 drow();//绘制多行多列菱形 } public function init():void{ } /** * 绘制20行40列 ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <!-- popup弹出式 Flex framework includes three controls that present hierarchical data in a cascading menu format. A ...
转载请保持文章完整性! 本文链接地址:http://www.joelove.cn/4lone/41.html 主页:joel's blog 总想找一些教程类的东西,以方便学习使用,然后,我就找到了这个,方便大家共同学习。 转自Blog:http://www.zhuoqun.net/article.asp?id=501 今天把收藏夹共享出来,希望对学习Flex 的人有所帮助。 一、国外站点 我新加的一个:http://www.5uflash.com/Flex -AIR/ 1.资源类 Adobe Flex 2 Component Explorer : 官方的,展示了各 ...
package event { import com.adobe.cairngorm.control.CairngormEvent; public class MyEvent extends CairngormEvent { public static const ACTION:String="ACTION"; public var message:String; public function MyEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"> <!-- The Form container always arranges its children vertically and left-aligns them in the form. The form container con ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <!--The DividedBox layout container lays out its children horizontally or vertically, similar to a Box container, except ...
我用的flex builder->help->help-content->Adobe flex 3 help中学习的东西 <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <!--Box的子类 ControlBar, DividedBox, Grid, HBox, NavBar, V ...

flex组件学习

    博客分类:
  • flex
我用办法是:用可视化编辑。然后看效果理解意思 <mx:Script> <![CDATA[ import mx.controls.HorizontalList; // private var _horizontallist:Array=new Array(){"kang,yong,fan"}; ]]> </mx:Script> <mx:ApplicationControlBar x="62" y="42" width="150&qu ...
Flex所支持的样式比Flash要丰富,样式定义的方法也很多。这也是Flex比Flash要强大、适合网页开发的地方之一。 样式定义类型 1. 外部样式表 1: <mx:Style source='/css/myStyle.css'/> Flex会调用全局样式表global.css,该全局样式表由flex-config.xml定义,如: 1: <global-css-url>/WEB-INF/flex/global.css</global-css-url> 系统默认的样式表文件global.css文件其实没有任何样式定义,我们可以手动添加 ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="TT()"> <mx:Script> <![CDATA[ private var nc:NetConnection; ...
package com.renaun.samples.net { import flash.net.NetConnection; import flash.net.SharedObject; import flash.events.NetStatusEvent; import flash.events.SecurityErrorEvent; import flash.events.AsyncErrorEvent; import flash.events.IOErrorEvent import flash.events.Event; import flash.events.IEv ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()"> <mx:Script> <![CDATA[ import flash.net.SharedObject; import mx.loggin ...
ASDoc 标签  描述 实例 @param paramName description 为函数的参数添加注释。 属性名与函数中的参数名必须匹配 @param fileName The name of the file to load. @private 输出时会被排除的元素. 使用@private标签标记在ASDoc命令中不输出的类或某个元素。 @private @return description 为函数的返回值添加描述信息 ASDoc 会自动限定返回值的数据类型. @return The translated message. @see reference [ ...
FLEX提高篇--------ShareObject对象详解 ShareObject,顾名思义共享对象,而通常意义上的共享,从B/S结构上来讲,无非是客户端(浏览器端)的共享和服务器端的共享了,不错,ShareObject刚好份演了这两种角色。而且ShareObject也是按此进行了两种分类,一类是LSO——Local Share Object(本地共享对象)其实类似于cookie,而另一种RSO——Remote Share Object(远程共享对象) 我感觉比较类似于JSP中的Application对象,但好象比Application更强大。 下面我分别用实例代码来说两者的用法和用 ...
Global site tag (gtag.js) - Google Analytics