Hi,

I finally got the player to work on Linux.

The next was a modification to getMediaList:

public function getMediaList (list:Object):void
           {
               // this is the result of the server side
getListOfAvailableFLVs
               var mediaList:Array = new Array();

               for(var items:String in list)
               {
                   //log.debug("items", list[items]);
                   mediaList.push({label:list[items]["name"],
size:list[items]["size"], dateModified:list[items]["lastModified"]});
               }
               // videoList is bindable and the datagrid is set to use this
for it's dataprovider
               // wrap it in an ArrayCollection first
               videoList = new ArrayCollection(mediaList);
           }

now it's working super. It's a very good player, thanks a million John!
I'm now left with getting Xray logging to work.

You may download the updated Linux version from here:
http://196.202.196.165:8080/red5/red5flex2.tar.gz

--
C is forever.
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to