Funciones en As


/ Published in: ActionScript 3
Save to your folder(s)

una funcion MY_FUNCION cuando es llamada por un evento tiene que tener el evento entre parentesis (evt:EventoQloLlama) ya que este trae el datos


Copy this code and paste it in your HTML
  1. function rectanguloBoton(color:uint):Sprite{
  2. //dibujar un sprite rectangular
  3. var rectangulo:Sprite = new Sprite();
  4. rectangulo.graphics.beginFill(color);
  5. rectangulo.graphics.drawRoundRect(0, 0, 120, 60, 20);
  6. rectangulo.graphics.endFill();
  7.  
  8. return (rectangulo);
  9.  
  10. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.