所以我用的FlashDevelop和弯曲,但我不能得到源才能正常工作。 当我过一个嵌入图像它工作得很好,但如果我只是去源=“../ IMG / Koala.jpg”我使用相同的路径工作嵌入这是行不通的。 在Flash Builder的一切我都必须做的是源=“/ IMG / Koala.jpg”和它的工作的工作就好了。 如果我在路径 “d:\ Flashdevelop中\ FlexMobileProject的\ src \ IMG \ Koala.jpg” 键入此工作正常。 任何人都可以请解释什么,我在这里失踪?
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
title="HomeView" creationComplete="init()">
<fx:Script>
<![CDATA[
[Embed(source = "../img/Koala.jpg")]
[Bindable] public var img:Class;
public function init():void {
var s:String = new String();
label.text = String(imgstage.sourceHeight);
trace(imgstage.source);
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<!-- can't find the image even if that path is the same as the embed -->
<s:Image id="imgstage" source="../img/Koala.jpg" y="0" x="0"/>
<s:Label id="label" text="name"></s:Label>
</s:View>