Hi All,

Does anyone have any experience combining these two things? I have a rush job now that demands we use this server and Im awfully confused. It doesnt even seem to be AS2 friendly, but I thought maybe I could use netStream to do it anyway.

Right now this is my code, and it's not working Any clue as to what's going on?

Actionscript Code:
var connection_nc:NetConnection = new NetConnection();
    connection_nc.connect("cp71565.edgefcs.net/");
    var stream_ns:NetStream = new NetStream(connection_nc);
    my_video.attachVideo(stream_ns);
    stream_ns.play(".uid.MY4XAQCGpMTiCs213Q710522fcfb1ea1af828da03c6dcb116e.john_legend_courtyard");
   
    stream_ns.onStatus = function(infoObject:Object) {
        trace("NetStream.onStatus called: ("+getTimer()+" ms)");
        for (var prop in infoObject) {
            trace("\t"+prop+":\t"+infoObject[prop]);
            debug_txt.text += "\t"+prop+":\t"+infoObject[prop]
        }
        trace("");
    };

Note how the URL's are very strange, I'm not sure if I'm setting them up correctly.