How do u generate random numbers within a given limit with Action script?
Answer / Jay Shanker
"To generate a random number within a specific range in ActionScript, you can use the Math.random() function and specify the limits. For example: var min = 10; var max = 20; var randomNumber = Math.floor(Math.random() * (max - min + 1)) + min;"
| Is This Answer Correct ? | 0 Yes | 0 No |
How do I make synchronous data calls in actionscript? : adobe flex action script
How will u call java method from flex?
Explain about arguments of addeventlistener() method?
What is display list?
Should model locator as a singleton class? Can't we instantiate this class as like normal class?
Can I still purchase flex charting?
What is the difference between sealed class and dynamic classes in flex?
What is dynamic keyword used for in actionscript? : adobe flex action script
How do I pass parameters to a pop-up window in actionscript? : adobe flex action script
Can I continue to run flex builder 2 in parallel with flex builder 3 beta 3?
Explain the configuration details of blaze ds?
What is inheritance in term of oop (flash actionscript)? : adobe flex action script