è imporatente che a video tu ricevi i dati cosi:

codice:
nvoti=10&svoti=5&media=12
poi apri un nuovo file di flash
codice:
dati = new LoadVars();
dati.path = this;
dati.load("gestionevoti.asp");
dati.onLoad = function(successo) {
    var svoti:Number = Number;
    svoti = this.svoti;
    var nvoti:Number = Number;
    nvoti = this.nvoti;
    numero = svoti/nvoti;
    trace(svoti+" - "+nvoti+" - "+numero);
};