Archive | Flash

09 January 2010 ~ 0 Comments

New FFD Issue

Check out the latest issue of the FFD Magazine:

Continue Reading

Tags: , , ,

05 January 2010 ~ 0 Comments

stop all sounds in Flash AS3

You can call it the global mute as well. What this line of code does is actually just turning down the entire flash’s volume down to 0. This is great for websites or games alike when a “Sound Off” or “Mute” feature is needed.
SoundMixer.soundTransform = new SoundTransform(0);

Continue Reading

Tags: ,

05 January 2010 ~ 2 Comments

AS3 Fur/Hair Generator

Stumbled upon this great flasher’s blog recently while trying to research for something I want to do:
http://en.nicoptere.net/?p=574
The speed and quality of the fur generator is, I believe, the best out there right now.
Awesome stuff.
Other generators:
http://blog.inspirit.ru/?p=131
http://projects.stroep.nl/fur/

Continue Reading

Tags: , , ,

05 January 2010 ~ 9 Comments

AS3: remove All Children in a DisplayObject

function removeChildrenOf(mc:MovieClip):void{
if(mc_mc.numChildren!=0){
var k:int = mc.numChildren;
while( k — )
{
mc.removeChildAt( k );
}
}
}

Continue Reading

Tags: ,

31 December 2009 ~ 5 Comments

Update your Flash CS4

If, for some reason, you’re still on Flash CS4 10.0, upgrade to 10.0.2 NOW.
My Flash has slowed down dramatically since my FLA got huge. Clicking on elements on the stage was agony as it takes a few seconds for Flash to react.
Little did I realise that Adobe released a fix for it, and I [...]

Continue Reading

Tags:

29 December 2009 ~ 1 Comment

Overlapping Movieclips in AS3

Back in AS2, when a MovieClip(MC) is underneath another one, as long as the MC that is on top doesn’t have any button actions (eg. onRollOver, onRelease etc), assigning button actions to the MC below will work.
Not anymore in AS3.
A quick fix is to give the following properties to the MC on top [...]

Continue Reading

Tags: ,

26 December 2009 ~ 0 Comments

Illustrator to Flash

I’m trying to post solutions to problems I face during my work – both for myself and for anyone who might be facing the same problem.
Today, I found the solution to a problem I’ve always faced – Copying and pasting items from Illustrator to Flash changes the colours of the vector objects!
The solution:
In Illustrator, [...]

Continue Reading

08 September 2009 ~ 0 Comments

Zhang Jingna Photography won awards!

A recent flash site for a local photographer, Zhang Jingna, which was done with a designer, Yanda, won some recognition at some websites. It was a pleasant surprise to know that we won, especially since I thought we could do much better things with the site given more time.
http://www.designlicks.com/web-awards/1799-zhang-jingna-photography
http://www.designcharts.com/
http://www.webdesignfile.com/zhang-jingna-photography/
http://lancamento.jugem.cc/?eid=3013
Winning these “awards” tells me I’m doing [...]

Continue Reading

03 September 2008 ~ 3 Comments

Google Chrome: First Impressions

Finally some tech related news!
I’m posting this using the extremely fast Google Chrome, Google’s latest product – a web browser.
I’m just going to make this a short one and list down some first impressions and things I’ve noted while using it for the past 30mins.
Firstly, the browser is extremely fast when rendering pages! Even faster [...]

Continue Reading

08 March 2008 ~ 1 Comment

Call Thickbox from Flash followup yet again!

Since my article for calling thickbox from Flash seems to be my biggest contribution to the people out there, I decided to post a little finding I made myself.
It works on IE8!

Continue Reading

UA-2806383-1