posso chiedervi un'altra cosina....  :adhone: 
io rilevo tutte le impostazioni cosi:
	codice:
	progres = "ricezione dati completata";
function t(flag) {
	return flag ? "abilitato" : "non abilitato";
}
sc = System.capabilities;
ma = sc.manufacturer.split(" ");
testo.text += ("Versione del player: "+sc.version+"\n");
testo.text += ("Sistema operativo: "+sc.os+"\n");
testo.text += ("Dimensioni: "+sc.screenResolutionX+"x"+sc.screenResolutionY+"\n");
testo.text += ("Risoluzione: "+sc.screenDPI+" dpi"+"\n");
testo.text += ("Linguaggio: "+sc.language+"\n");
testo.text += ("Software: "+ma[0]+" per "+ma[1]+"\n");
testo.text += ("Supporto Audio: "+t(sc.hasAudio)+"\n");
testo.text += ("Decoder MP3: "+t(sc.hasMP3)+"\n");
testo.text += ("Supporto Video: "+t(sc.hasVideoEncoder)+"\n");
testo.text += ("Supporto accessibilità: "+t(sc.hasAccessibility)+"\n");
testo.text += ("Debugger: "+t(sc.isDebugger));
 
ma vorrei che mentre carica il filmato da 0 al 10 percento mi mostrasse
	codice:
	testo.text += ("Versione del player: "+sc.version+"\n");
 
dal 10 al 20%
	codice:
	testo.text += ("Sistema operativo: "+sc.os+"\n");
 
come posso fare??
grazie ancora
 