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 does item renderer work? How do we add item renderer at runtime in flex? : adobe flex action script
How do I get flex to query my database? : adobe flex action script
Can you write to the file system from flex? : adobe flex action script
What are the collections classes available in flex?
What keyword allows you to refer to private variables of a class in flex?
What is singleton class? Explain the steps to create a singleton class?
Explain which of the recommended character to use to separate target level paths levels?
Explain about resultevent and faultevent in remote object?
Explain how binding works in mxml components in flex? : adobe flex action script
Can we use text input/editable component as itemrenderer?
What is calllater() method?
What is cairnghorm in flex? How do we use it? : adobe flex action script