forked from charlesclements/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDropDownWork.mxml
More file actions
45 lines (21 loc) · 846 Bytes
/
Copy pathDropDownWork.mxml
File metadata and controls
45 lines (21 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.DropDownWorkHomeView" applicationDPI="160" initialize="init();" xmlns:ns="http://www.flextras.com/mxml">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
/*
[Embed(source='test.xml', mimeType="application/octet-stream")]
public static const xmlClass:Class;
private var _xml:XML = new XML( new xmlClass );
//private var xml:XML = new XML( new DropDownWork.xmlClass );
private function init():void
{
trace(_xml);
}
*/
]]>
</fx:Script>
</s:ViewNavigatorApplication>