To have 2 glows, you need to apply the inner glow first then the outer glow. If not, the inner glow will not be activated. It’s true for both timeline based filters and scripted filters.
Content
File: Tips
From: tech-bits.com “Some hosting providers are still using php 4 as their default for scripts, but offer php5 as well. To force your scripts to all use php5, you can try adding this to a .htaccess file on your site: AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php “
I’ve never seen such clear webcams before! The PS3 Eye is truly amazing! By default, PS3 Eye is not supported by Windows or Mac OSX. Luckily there are drivers ready for you to grab. For PC, use this driver. For Mac OSX, use this driver. To get PS3 Eye working for openframeworks in windows, you [...]
Most of my Flash projects use XML as “database” and PHP is my preferred server script. I found Simple_HTML_DOM Parser quite a good tool for reading and writing XML files. The default DOM in PHP is quite hard to use. The syntax for creating nodes in PHP is very tiring. Besides that, the biggest headache is [...]
Previously in Flash CS3, the trick of getting autocompletion in FlashDevelop is not working any more in Flash CS4, ast least not in my case. After testing a while I finally got it working again by setting the swc path of the project. Choose “Project>>Properties…>>Compiler Options>>SWC Include Libraries” and add the path of AIR swc [...]
I’ve always been writing this. function addZero(n:int):String { if (n < 10) { return “0″ + n; }else { return “” + n; } } The function adds one leading 0 quite well but if two 0 is needed, it’s quite bad to write all the conditions to check whether it’s less than 100 or [...]
Pixel fonts tend to get blur in Flash. Most of the time the problem can be solved by setting the textfield’s coordinates (x,y) into integers but sometimes it fails to work. I’ve found a new trick to solve this problem. If you check the option of the textfield to be selectable, the texts appear clear [...]
If your computer doesn’t have a C: drive, flash player 10 installer for firefox won’t be able to run properly. It keeps giving not enough disk space error. After Googling for a while, I found the solution in Yahoo answers. If you don’t have a C-drive, then you can also share a folder or your [...]
I’ve recently finished a project. It’s a website for a wedding gown boutique. The main function of the website is to show their products, just like a of photo gallery. There are loads of photos and I tracked every photo’s page view. While I was happily looking through the numbers in Google analytics I realise [...]
I was trying to read a specific part of a file in AIR. I thought readBytes function in FileStream can serve the purpose but I was wrong. public function readBytes(bytes:ByteArray, offset:uint = 0, length:uint = 0):void Reads the number of data bytes, specified by the length parameter, from the file stream, byte stream, or byte [...]
