Flash & Scaleform GFx 备忘

Flash & Scaleform GFx 备忘
1、loadMovie后用onEnterFrame来判断是否加载完,再给加载的flash赋值,被加载的flash要有 System.security.allowDomain("*"); 才能赋  值,否则不行。

this .createEmptyMovieClip( " loader_mc " this .getNextHighestDepth());
loader_mc.loadMovie(
" 1001.swf " );
this .onEnterFrame  =  function() {
    var p 
=  loader_mc.getBytesLoaded()  /  loader_mc.getBytesTotal();
    trace(p);
    
if  ( 1   ==  p) {
        loader_mc._width 
=   200 ;
        loader_mc._height 
=   200 ;
        delete 
this .onEnterFrame;
    }
};

2. Scaleform GFx可以加载tga图片,带Alpha通道的tga不行,flash player不能加载tga。
   Q:GFx怎么加载打包好的文件呢?
   A:估计是用从GFxFileOpener继承的类来搞。就是这儿了,但是怎么返回GFile*呢?
3.

你可能感兴趣的:(Flash & Scaleform GFx 备忘)