Search this site
-
Recent Posts
Recent Comments
- kiranvj on Add custom picture and other details in System Properties tab
- Faisal Abbas on Add custom picture and other details in System Properties tab
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- AuRoN on Implementing CAPTCHA using PHP
Categories
Category Archives: ActionScript
AS3 – Access root from a movie clip
Use like this to access root from a movie clip MovieClip(root).someThing; For example suppose you have a text box in root with instance name txtAddress in your root. If you need to set the text of txtAddress from a movie … Continue reading
ActionScript : Find code execution time
Using the script below you can find how much time it took to execute your ActionScript code var startTime:Date = new Date(); // execute your code here var endTime:Date = new Date(); trace("Time take to execute the code "+String(endTime.getTime()-startTime.getTime())+" milliseconds"); … Continue reading
Posted in ActionScript, Flash/Flex, Web development
Tagged ActionScript, Flash, Flex
Leave a comment