Oh, the code snippet:

downloadPiece   = function (t) {
        if(t == "j") {
                _root.conduit.event(8);
        } else {
                _root.conduit.event(6);
        }
        dataSend        = new LoadVars();
        trace("get download " + t);
        dataSend.t      = t;
        dataSend.a      = "s";
        var dataString  = "";

        for(var i = 0; i < dataCapture.length; ++i) {
                dataString      += dataCapture[i];
        }
        
        dataSend.p      = dataString;
        dataSend.send(_global.url + "spindl.jsp", dataReceive, "POST");
}

Nothing weird going on. Changing from POST to GET works fine, but for one ad there is too much data to rely on GET.

thanks

-Ricky
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to