Nested Functions : Function : Function Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Function » Function »

 

Nested Functions


 

public function (  ) {
  b(  );

  function (  ) {
  }
}


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){


    }
    public function getRandomPoint () {
      var randomX = getRandomInteger(510);
      var randomY = getRandomInteger(1015);
    
      function getRandomInteger (min, max) {
        return min + Math.floor(Math.random(  )*(max+- min));
      }
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Function
» Function