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
Tag Archives: Javascript
Javascript : Find script execution time
Using the script below you can find how much time it took to execute your javascript code. var startDate = new Date(); // execute your tasks here var endDate = new Date(); var timeTaken = endDate.getTime() – startDate.getTime(); alert(‘Time take … Continue reading
Disable right click menu in Flash (swf files)
There are times when you have to disable the default right click menu on flash files on your webpages. Uza has a suggested a method to completely disable the flash right menu. Check the article link at his website http://www.uza.lt/blog/2007/08/solved-right-click-in-as3 … Continue reading