Giusto, oppure un campo di testo con nome di istanza "testo" e:
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));
(mancava la funzione all'inizio per restituire il valore)