esta es la cosa: intento agregar a mi pagina lo de un ejemplo de hormigas moviendose por el esenario (http://www.cristalab.com/ejemplos/22/juego-experimental-de-hormigas-en-flash) pero cuando trato de publicar el swf, flash me sale con la siguiente historia
Código :
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 3: There is no property with the name 'randRange'.
Math.randRange = function(min, max, nbDecimales) {
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 15: There is no property with the name 'radian'.
Math.radian =function(grados) {return grados*(Math.PI/180);}
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 16: There is no property with the name 'grados'.
Math.grados = function(radian) {return radian*(180/Math.PI);}
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 39: There is no method with the name 'grados'.
this.angulo = Math.grados(this.angulo)+180;
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 48: There is no method with the name 'randRange'.
if (!Math.randRange(0,2)){
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 53: There is no method with the name 'randRange'.
this.radio = Math.randRange(2,this.radioNormal);
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 55: There is no method with the name 'randRange'.
this.angulo += Math.randRange(-this.anguloAleatorio,this.anguloAleatorio);
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 58: There is no method with the name 'radian'.
mx = this._x+Math.cos(Math.radian(this.angulo))*this.radio;
**Error** Scene=Escena 1, layer=Fondo, frame=1:Line 59: There is no method with the name 'radian'.
my = this._y+Math.sin(Math.radian(this.angulo))*this.radio;
Total ActionScript Errors: 9 Reported Errors: 9gracias...

Zguillez