在一個項目中,我有幾個類似的應用程序,它們在這裏和那裏略有不同。像一些包含的圖標/圖像。爲了幫助組織,我看到自己以下面的樣式嵌入圖標,但在[Embed]元標記中使用變量不起作用。 下面的代碼包含在一個自定義組件中,所以我很容易應該能夠爲每個應用程序(包括組件)設置不同的圖標。我如何解決這個問題?Flex動態嵌入
public var iconBase:String = "/icons/red/";
[Embed(iconBase + "play.png")] [Bindable] public var icon_play:Class;
[Embed(iconBase + "stop.png")] [Bindable] public var icon_stop:Class;