そのため、FlashDevelopとflexを使用していますが、ソースを正しく機能させることができません。画像を埋め込むときはいつでも問題なく機能しますが、source = "../ img / Koala.jpg"に移動すると、埋め込み作業に使用したのと同じパスが機能しません。Flash Builderでは、source = "/ 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>