Hi John,

SHIFT+L is working and I can see the OutputPanel. However, no logs are
getting printed on it.  This is both on Linux and Windows. I'll research on
it tommorow and keep you updated.

In getMediaList function of the sample player,the loop seems to have a
problem, please change the source from:

for(var items:String in list)
               {
                   mediaList.push({label:items, size:list[items].size,
dateModified:list[items].lastModified});
               }

to

for(var items:String in list)
               {
                   mediaList.push({label:list[items]["name"],
size:list[items]["size"], dateModified:list[items]["lastModified"]});
               }

PS: What is the function  "onBWDone():void" used for?

Thanks.
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to