- 浏览: 523114 次
- 性别:
- 来自: 北京
最新评论
-
mzkun_cool:
...
Project configuration is not up-to-date with pom.xml -
杨瑞敏:
Project configuration is not up-to-date with pom.xml -
Jelly_B:
设置div的透明背景 -
taohaha:
感谢楼主,这个问题我弄了两天。楼主正解,非常感激啊!!![ ...
Flex4.5 中的错误 -
778856:
哈哈 就是刷新一下
Project configuration is not up-to-date with pom.xml
文章列表
在Flex中,有时候需要打开outlook来发送邮件,方法如下:
private function getUrl():String {
var url:String = "mailto:" + emailAddress; //收件人地址
url += "?subject=" + emailSubject; //邮件主题
url += "&body=" + emailBody; //邮件内容
return url;
}
private function openOutloo ...
在Flex中,需要在label上设置一个超链接,类似与html中的超链接:
<a href="www.iteye.com">iteyer</a>
在Flex中可以如下设置,完成同样的效果:
<s:Label id="textLabel" buttonMode="true"
click="textLabel_clickHandler(event)" color="blue" text="lin ...
在Flex3中,可以通过属性showCloseButton=“false”来设置;
但是,在Flex4及以上的版本中,由于和Flex3区别太大了,这个时候就需要通过closeButton.visible = false;来设置,
protected function titlewindow1_initializeHandler(event:FlexEvent):void{ closeButton.visible = false;}
另外需要注意的是,如果TitleWindow组件是动态添加的,必须要在绘制完该组件后再调用closeButton.visible = f ...
When working with Flex one component almost always shows up, the DataGrid. Now it may not just be the DataGrid but any List based control. It is rare that I create any type of data driven application and not use one of these controls. Along with displaying information it is also useful to be able ...
在做项目的过程中,用到了module
但是在module加载的时候,unloading一个包含有ViewStack的module时出现错误如下:
TypeError: Error #1034: Type Coercion failed: cannot convert mx.managers::HistoryManagerImpl@ac6f8c1 to mx.managers.IHistoryManager. at mx.managers::HistoryManager$/get impl()[E:\dev\4.5.1\frameworks\projects\framework\s ...
先看图片:
因为项目中需要用到datagrid,而且需要在其中嵌入dropdownlist,包括header和item。
一开始嵌入的是Combobox,但是发现用Combobox的话,稍微动一个datagrid,如改变大小等,Combobox里的数据立刻不见了,所以使用dropdownlist控件,反正是Flex4.1。
废话完毕,上代码:
for datagrid:
代码
<
mx:DataGrid id
=
"
dgList
"
width
=
"
100%
"
height
=
&q ...
Flex中,由于需求需要,需要动态创建多个<s:NavigatorContent>,google了半天,没有这方面的内容,大部分的都是固定的写死了有几个tab,panel它的个数是不定的,所以就考虑重写个<mx:ViewStack> 的component用来适应这种需求。
code:
package ui.accelerators.defineLandscape{ import com.sap.rdssbs.entity.LandScape; import com.sap.rdssbs.entity.System; import com.sap.rdss ...
在Flex4.5中,使用<s:datagrid>碰到个这么个问题:
如果dataprovider长度是0,则dataprovider的高度就是Header的高度
如果dataprovider的长度不为零,则dataprovider的高度就是所有的行高加header的高度。。。
但是在<s:datagrid>中,默认的是显示三行,而且是不可编辑的,如果我通过一个按钮【add item】来增加一行的话,对于用户来说,到底增加了一行没有,没有明显的显示,除非你在新增行中双击一下,让其中的任一单元格处于可编辑状态,显然,这样儿的动作太繁杂了、、、
...
在Flex 中使用module后,会出现如下错误:
skin for ******* cannot be found.
解决办法:
在编译设置中添加如下编译参数即可:
-keep-all-type-selectors
Note:如果在compiler设置中还设有其他编译参数,中间空一格在添加此参数、、、
在flex中,要让一个label应用手型光标如下:
label.useHandCursor = true;
label.mouseChildren = false;
label.buttonMode = true;
File 对象是指向文件系统中文件或目录的指针。
File 类扩展了 FileReference 类。在 Adobe® Flash® Player 和 AIR 中可用的 FileReference 类表示指向文件的指针,但 File 类添加了一些属*和方法,出于安全方面的考虑,Flash Player 中(在浏览器中运行的 SWF 文件中)未公开这些属*和方法。
关于 File 类
您可以使用 File 类执行以下*作:
获取特殊目录的路径,包括用户目录、用户的文档目录、应用程序的启动目录以及应用程序目录
复制文件和目录
移动文件和目录
...
在Flex中,按钮有一个toggle功能
描述如下:我想用Button来模拟一个类似于Checkbox的check 和uncheck功能,即点击一下,check,否则unchecked。
mxml文件的内容如下:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplicationxmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.ad ...
在Flex中,如果需要访问当前xml节点的父节点、
可以使用方法:xmoNode.parent() 就可以得到父节点.
官方文档如下:
Accessing parent and child nodes
The parent() method returns the parent of an XML object.
You can use the ordinal index values of a chi ...
近期在用Flex4.5 开发项目
中途使用一个<s:List>来显示每一个项的时候,采用<s:HTTPService>标签、、、
但是在result中触发事件时,报错如下:
TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy....
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="lib ...
今天在调试adobe air程序时,运行之后主界面不显示
弹出如下提示:
Launch Failed: If the program is already running, close it before attempting to run
于是,在windows task manager 中关掉该进程。
再次试着运行,主界面还是不出来,,,包括电脑业重启了,Flex 的workspace也删的干干净净的,还是不行
一开始以为是试用版到期了(Flex4.5版的),用了个正版的(Fle4.0版的),发现还是不行、、、
于是debug模式进行运行,在console ...