我对 flex 完全陌生,并试图创建helloWorld
应用程序失败。脚步:
1)在flash builder中创建flex项目;
2)添加<s:Label text="Hello World" x="100" y="100" />
到HelloWorld.mxml
默认包中的文件;
3) 使用 Flash Builder 运行项目;
4) 在浏览器窗口中看到一个空的 Flash 页面;
我错过了什么?
HelloWorld.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:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Label text="Hello World" x="100" y="100" />
</s:Application>
PS
- Flash Builder 4.6;
- SDK 4.5.1;
- 其他 Flash 页面在浏览器 (Chrome) 中可以正常工作;