初學flex,請大家多多指導!
本篇記錄怎么把圖片從網絡中加載回來,并且顯示在flash中。對于具體的技術細節,隨著學習的深入,我們兄弟會補充進來。
先從代碼開始:
as部分的代碼,


























接下來是flex調用部分代碼:
1
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onAppInit()"
2
backgroundColor="#3f3f3f" xmlns:map="uu.map.lab.*">
3
<mx:Script>
4
<
7
Security.allowDomain("http://dx.zhuomianbizhi.com/");
8
9
10
}
11
]]>
12
</mx:Script>
13
<map:ShowImage id="map" width="100%" height="100%"/>
14
</mx:Application>

2

3

4

5

6

7

8

9

10

11

12

13

14
