
Flex
iteye_3658
这个作者很懒,什么都没留下…
展开
-
FLEX全屏功能实现右键菜单
FLEX的全屏功能的实现,光写AS还不够,还需要对JS部分做一些小小改动才行,好在这个改动并不麻烦,有这个需求的朋友可以参考下.另外在 FLEX应用里右键菜单的功能也是很常见的,我在这里也作了一个简单的功能实现,太复杂的小弟暂时还没来得及实践,有朋友实现了也给小弟参考下,在此表示感谢. 好了,先把AS代码贴出来吧: 1. <?xml version="1.0" encod...原创 2009-03-06 12:29:57 · 122 阅读 · 0 评论 -
Flex调用WebServices
[Bindable] public var arrayCol:ArrayCollection;public function Test():void { //* var webs:WebService=new WebService(); webs.wsdl="http://localhost/Web/...2009-03-06 12:45:28 · 108 阅读 · 0 评论 -
Flex调用Socket
private function configureListeners():void { socket.addEventListener(Event.CLOSE, closeHandler); socket.addEventListener(Event.CONNECT, connectHandler); socket.addEventListener(Prog...2009-03-06 14:33:10 · 95 阅读 · 0 评论 -
flex实现鼠标跟随十字架
效果图 添加侦听事件 canVas.addEventListener(MouseEvent.MOUSE_MOVE,mouseMove); canVas.addEventListener(MouseEvent.CLICK,ShowLabel); 鼠标移动事件private function mouseMove(event:MouseEvent):void {...2009-03-11 11:00:47 · 176 阅读 · 0 评论 -
flex实现图表事件获取数据
首先必须引入 几个包 import mx.charts.events.ChartItemEvent; import mx.charts.series.items.ColumnSeriesItem; private function setMousedata(event:ChartItemEvent):void { var can:HLOCSeries...2009-03-11 13:18:03 · 99 阅读 · 0 评论 -
Flex中如何利用Array.filter()事件从一个数组中移除重复项目的例子
<!-- Google Adsense Begin<div style="margin: 3px; float: right;"></div>Google Adsense End --><!--content with more link-->和前面的Flex中如何通过filterFunction属性对XMLLi...原创 2009-07-23 14:14:21 · 183 阅读 · 0 评论 -
webServices 调用股票报价
Endpoint: http://www.webxml.com.cn/WebServices/StockInfoWS.asmxDisco: http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?discoWSDL: http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?wsdl 输入参数:t...2009-07-23 14:17:01 · 168 阅读 · 0 评论