alguien sabe como se hace esto?
Código:
var colores_array:Array = new Array(); var datos2 = new LoadVars(); var i:Number = 0; frecuencia_de_muestreo=setInterval(mueve_color,2000); function mueve_color() { miColor.setRGB(colores_array[i]); i=i+1; if (i>5) { i=0; }; } datos2.onLoad = function() { color=datos2.color; colores_array = this.colortem2.split(','); frecuencia_de_muestreo=setInterval(mueve_color,1000); } datos2.load("archivo.php");