文章列表
很有用的东西,记录一下。
http://www.objectpartners.com/2011/04/05/using-mybatis-annotations-with-spring-3-0-and-maven/
adobe官方文档
http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac1e63e3d129907d2886-8000.html#WS901d38e593cd1bac58d08f9112e26606ea8-8000
apple 相关文档
http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html
现在的问题是,启动画面之后,会黑屏一会,才能看到我的程序, ...
原文
http://bbs.9ria.com/viewthread.php?tid=38515
我现在主要用flash builder,所以在编译参数中增加-define=CONFIG::Debug,false
用navigateToURL会被阻止。用as3调js即可。
IE9,ff8 ,chrome16测试通过。
as3
this["openBt"].addEventListener(MouseEvent.CLICK , onOpenBtClick);
function onOpenBtClick(evt:MouseEvent):void{
//navigateToURL(new URLRequest("url"));
ExternalInterface.call("openAd");
}
js
functio ...
<mx:DataGrid id="dataGrid" dataProvider="{listInfo.list}" width="100%" height="100%" itemEditEnd="dataGrid_itemEditEndHandler(event)" editable="true">
<mx:columns>
<mx:DataGridColumn headerText="ID" dataFi ...
flex通过remoting得到java对象时,内存中必须有这个对象的类定义,如果之前有应用使用对这个类,就没问题,如果没有,就会被映射成Object。
如果没有引用,就在程序初始化时,写一个空的类即可,例如
import net.domain.admin.module.accountreport.model.vo.CashPayDataVO;
CashPayDataVO;
至于网上说的嵌套三层的复杂对象无法映射的问题,我没有碰到,我这个类的对象,已经嵌套到第三层了,一切正常。