by admin | Sep 20, 2002 | Blog, Flash MX, Tips
If your flash project includes sound, import the audio as a MP3 file instead of Wave files (convert your wave files to mp3 in your audio editing software). This not only helps to reduce the file size of your .fla file, also reduces the time taken to publish an swf...
by admin | Sep 19, 2002 | Blog, Code, Flash MX
In ActionScript we cannot pass objects by value. It always passes objects by reference. If you need to create a perfect copy of an object you can make use of the following code. I have modified Flash Guru’s clone with support for Array Objects [UPDATE] included...
by admin | Sep 18, 2002 | Blog
Now I’m in the process of creating Action Script (or any script) color highlighter in flash. Which can be used in forums to post the ActionScript As and when the user types a property or keyword it will highlight in the specified color. I’m planning to set...
by admin | Sep 18, 2002 | Blog
If you need to convert color values between RGB and HEX you will find the following functions useful. Original post had only ActionScript 1 version and now I have updated it to add ActionScript 3 version as well 🙂 ActionScript 3.0 ActionScript 1.0 package com.luracast...