我想將圖像插入AIR應用程序中的RichTextEditor。令我驚訝的是,如果項目是Web應用程序,我發現此代碼可以很好地工作,但如果將它用於AIR桌面應用程序,則該代碼無效。代碼如下RichTextEditor中的img標籤Adobe AIR
<mx:RichTextEditor height="100%" width="100%">
<mx:htmlText>
<![CDATA[
<p>This is an image</p><p><img src='file:///C:/flag.png'></p>
]]>
</mx:htmlText>
</mx:RichTextEditor>
<mx:Image source="file:///C:/flag.png" autoLoad="true"/>
圖像已成功加載到「mx:Image」中,但未成功加載到「mx:RichTextEditor」中。我也嘗試使用「C:\ flag.png」,C:/flag.png「和」http://www.mysite.com/flag.png「
請你幫我弄清楚爲什麼我可以插入一個圖像到RichTextEditor與Web應用程序?而不是與AIR
非常感謝,
我已經測試的代碼在Flex中3.5和4.0彎曲 - AIR 2.0。兩者都給了我相同的結果。 – ramyadel 2010-07-24 13:07:30