.fla file error...

Status
Not open for further replies.

Exilo

Member
Apr 27, 2012
192
5
I know the tittle is stupid.
Trying to get one .fla file to .swf, I did convert it from .swf to .fla and want to convert it back, but giving me this:
sxDOPN.png


Did not touch the code.

And the line is:
PHP:
this.cdns = {bitgravity:{http.startparam:"starttime", provider:"http"}, edgecast:{http.startparam:"ec_seek", provider:"http"}, flvseek:{http.startparam:"fs", provider:"http"}, highwinds:{rtmp.loadbalance:true, provider:"rtmp"}, lighttpd:{http.startparam:"start", provider:"http"}, vdox:{rtmp.loadbalance:true, provider:"rtmp"}};
I don't know what the error is talking about. Any help? :p
 

Exilo

Member
Apr 27, 2012
192
5
I know, but I don't find Controller.as in anything.
Full code:
PHP:
  public function Controller(param1:IPlayer, param2:Model, param3:View)
        {
            this.cdns = {bitgravity:{http.startparam:"starttime", provider:"http"}, edgecast:{http.startparam:"ec_seek", provider:"http"}, flvseek:{http.startparam:"fs", provider:"http"}, highwinds:{rtmp.loadbalance:true, provider:"rtmp"}, lighttpd:{http.startparam:"start", provider:"http"}, vdox:{rtmp.loadbalance:true, provider:"rtmp"}};
            this._player = param1;
            this._model = param2;
            this._view = param3;
            this._lockManager = new LockManager();
            return;
        }// end function
 

Joopie

Active Member
Sep 13, 2011
135
65
I mean like this:

PHP:
this.cdns = {"bitgravity":{"http.startparam":"starttime", "provider":"http"}, "edgecast":{"http.startparam":"ec_seek", "provider":"http"}, "flvseek":{"http.startparam":"fs", "provider":"http"}, "highwinds":{"rtmp.loadbalance":true, "provider":"rtmp"}, "lighttpd":{"http.startparam":"start", "provider":"http"}, "vdox":{"rtmp.loadbalance":true, "provider":"rtmp"}};

btw just copy past, i already did ti for you

sxDOPN.png
look carfully -.-


Learn to read debug messages *sigh*
 

Exilo

Member
Apr 27, 2012
192
5
Ty.
But now got some new errors -.-
6DXTp5.png

PHP:
 public function PlayerEvent(param1:String, param2:String = )
        {

Aslo I know I've need to learn to read the debug codes, but the thing is I don't know what thye want me to do...
Lol...
 

Exilo

Member
Apr 27, 2012
192
5
It is.
Decompiled from .swf.

PHP:
   public function ViewEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
public function ControllerEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
public function ModelEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
 override public function sendEvent(param1:String, param2:Object = ) : void
        {
PHP:
this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this.confPlaylist);
            }
            else if (this._model.config.playlistfile)
            {
                this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this._model.config.playlistfile);
            }
            else if (this._model.config.singleItem.file)
            {
                this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this._model.config.singleItem);
            }
PHP:
private static var extensions:Object = {3g2:"video", 3gp:"video", aac:"video", f4b:"video", f4p:"video", f4v:"video", flv:"video", gif:"image", jpg:"image", jpeg:"image", m4a:"video", m4v:"video", mov:"video", mp3:"sound", mp4:"video", png:"image", rbs:"sound", sdp:"video", swf:"image", vp6:"video", webm:"video", ogg:"video", ogv:"video"};

Holy cow... I don't understand how he made it to an swf
 

Joopie

Active Member
Sep 13, 2011
135
65
It is.
Decompiled from .swf.

PHP:
  public function ViewEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
public function ControllerEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
public function ModelEvent(param1:String, param2:Object = , param3:Boolean = false, param4:Boolean = false) : void
        {
PHP:
 override public function sendEvent(param1:String, param2:Object = ) : void
        {

putt "null" behind "param2:Object = "


PHP:
this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this.confPlaylist);
            }
            else if (this._model.config.playlistfile)
            {
                this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this._model.config.playlistfile);
            }
            else if (this._model.config.singleItem.file)
            {
                this._model.playlist.com.longtailvideo.jwplayer.model:IPlaylist::load(this._model.config.singleItem);
            }

I don't know what labels are in as3

But i think it has something todo with the :IPlaylist, try to remove that or whatever?
or remove the " this._model.playlist.com.longtailvideo.jwplayer.model:"
I don't know

PHP:
private static var extensions:Object = {3g2:"video", 3gp:"video", aac:"video", f4b:"video", f4p:"video", f4v:"video", flv:"video", gif:"image", jpg:"image", jpeg:"image", m4a:"video", m4v:"video", mov:"video", mp3:"sound", mp4:"video", png:"image", rbs:"sound", sdp:"video", swf:"image", vp6:"video", webm:"video", ogg:"video", ogv:"video"};

PHP:
private static var extensions:Object = {"3g2":"video", "3gp":"video", "aac":"video", "f4b":"video", "f4p":"video", "f4v":"video", "flv":"video", "gif":"image", "jpg":"image", "jpeg":"image", "m4a":"video", "m4v":"video", "mov":"video", "mp3":"sound", "mp4":"video", "png":"image", "rbs":"sound", "sdp":"video", "swf":"image", "vp6":"video", "webm":"video", "ogg":"video", "ogv":"video"};

Holy cow... I don't understand how he made it to an swf

Decompiled source isn't the real source...
 

Exilo

Member
Apr 27, 2012
192
5
Well, I have to go now, and I can guess that it's more errors than the ones..
But thanks for the help...

If someone could fix the .fla file errors,
pm me it when your done with paypal email! I will pay some bucks when I get my next payment. 1-5 days
 
Status
Not open for further replies.

Users who are viewing this thread

Top