Archive | General

12 February 2010 ~ 0 Comments

Master Volume Control in AS3.0

Applied to a single button. Frame 1 shows that sound is on, and frame 2 shows that it’s off.

sound_mc.buttonMode = true
sound_mc.addEventListener(MouseEvent.CLICK,toggleSound)

function toggleSound(e:MouseEvent){
var tempMC:MovieClip = e.currentTarget as MovieClip
var sTransform:SoundTransform = new SoundTransform(1,0);
if(tempMC.currentFrame == 1){
tempMC.gotoAndStop(2)
sTransform.volume = 0;
}else if(tempMC.currentFrame == 2){
tempMC.gotoAndStop(1)
sTransform.volume = 1;
}
SoundMixer.soundTransform = sTransform;
}

Continue Reading

31 January 2010 ~ 3 Comments

Garbage Collector in AS3

The Garbage Collector in AS3 is smart, but it’s driving me crazy.
Being new to AS3, I didn’t realise that removing a child from the display list does not kill all it’s listeners, sounds, and some other stuff I don’t know.
When it affected me, I stopped for a moment and thought why is it built this [...]

Continue Reading

13 January 2010 ~ 0 Comments

14 Days of jQuery

This is exciting news indeed. jQuery has launched a website – “14 Days of jQuery” to coincide with their launch of the latest build of the arguably best javascript framework.
http://jquery14.com/

Continue Reading

09 January 2010 ~ 0 Comments

New FFD Issue

Check out the latest issue of the FFD Magazine:

Continue Reading

Tags: , , ,

07 January 2010 ~ 2 Comments

Must have SG iPhone Apps

Pardon me for posting a design and flash unrelated post.
I’ve just got my iPhone recently, and have been looking around for free apps to install.
Being a Singaporean, the first thing I wanted to do was sift out, from the thousands of US-centric apps, apps that were tuned for the local community.
So here’s the [...]

Continue Reading

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: , , ,

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:

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

20 December 2009 ~ 0 Comments

Updates coming soon

I’m planning to update DesignFission more as I start to get my career back on track after the 2 years of National Service to my good old country.
Expect more Flash and web related posts coming up!

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

UA-2806383-1