0

CSSでswfを定義したい。getStyle を使用してこの swf をロードしたくありません。私はこのようなものが必要です:

CSS

.loading
{
     source: Embed(source="/assets/loading_bar.swf");
}

MXML

<mx:SWFLoader styleName="loading" horizontalCenter="0" verticalCenter="0"/>

出来ますか?SWFLoader でそれができない場合、使用できる他のコンポーネントはありますか?

4

1 に答える 1

0

StyleManager クラスの loadStyleDeclarations() メソッドを呼び出すことで実行できます。

StyleManager.loadStyleDeclarations("../assets/loading_bar.swf"); 

詳細については、http: //livedocs.adobe.com/flex/3/html/help.html?content=styles_10.htmlをご覧ください。

于 2013-10-04T10:24:09.200 に答える