我在Adobe AIR Desktop应用程序中有以下mxml文件:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:dns="flash.net.dns.*">
<fx:Declarations>
</fx:Declarations>
<fx:Script>
</fx:Script>
<s:layout>
<s:VerticalLayout horizontalAlign="center" />
</s:layout>
<s:DateSpinner id="ds"
selectedDate="{new Date(2010, 11, 15)}"
minDate="{new Date(2000, 0, 1)}"
maxDate="{new Date(2200, 11, 31)}"
minuteStepSize="5" />
<!-- toggle between different display modes -->
<s:HGroup>
<s:Button label="Date"
click="ds.displayMode = DateSelectorDisplayMode.DATE" />
<s:Button label="Time"
click="ds.displayMode = DateSelectorDisplayMode.TIME" />
<s:Button label="Date and Time"
click="ds.displayMode = DateSelectorDisplayMode.DATE_AND_TIME" />
</s:HGroup>
</s:Application>
当我在adl中运行它时,我收到以下消息:
错误: 无法找到Flex_AIR_Test.ApplicationSkin2._ApplicationSkin_Group1.contentGroup.ds的外观。
错误: 无法找到Flex_AIR_Test.ApplicationSkin2._ApplicationSkin_Group1.contentGroup.ds的外观。
DVFreeThread - CFMachPortCreateWithPort hack = 0x179cc0,fPowerNotifyPort = 0x17a5e0 DVFreeThread - CFMachPortCreateWithPort hack = 0x181190,fPowerNotifyPort = 0x1800b0
如何为DateSpinner包含defualt皮肤?我在FDT的项目中包含以下swc:
mobile.swc [frameworks/themes/Mobile/mobile.swc]
airglobal.swc [frameworks/libs/air/airglobal.swc]
framework.swc [frameworks/libs/framework.swc]
spark.swc [frameworks/libs/spark.swc]
mobilecomponents.swc [frameworks/libs/mobile/mobilecomponents.swc]
我是否需要按特定顺序包含它们或启用“用作运行时共享代码”复选框?
标记
答案 0 :(得分:0)
DateSpinner是一个仅限移动设备的组件。
您必须将移动主题SWC指定为编译器参数,如下所示?
-theme="C:\flexSDK\frameworks\themes\Mobile\mobile.swc
您可以使用编译器参数指定两个主题;但它可能会导致其他问题,因为现在您的应用程序组件将“猜测”哪个主题是合适的。