CNN Shirt Store?

Posted by Matthew Hancock at 1:12 pm
Tutorials No Comments »

Now I’ve seen it all… why would anyone want to buy a t-shirt with the title of a news story on it?

read more | digg story

Toshiba R500: thinner, lighter, more capable than Air

Posted by Matthew Hancock at 5:20 pm
Tutorials No Comments »

The R500 not only has 3G connectivity, it has three USB ports, includes an internal DVD drive, removable battery, a full-size DVI video port, a PC Card slot, Gigabit Ethernet and a Firewire connector. All of the latter are missing from the Macbook Air. It weights less too; 1kg compared to the not-so-air-like 1.35 kg

read more | digg story

Clowntextual Advertising

Posted by Matthew Hancock at 1:49 pm
Tutorials No Comments »

I guess we know that the internet gnomes aren’t voting for Hillary this year.

read more | digg story

Using the MouseWheel to Scroll in AS3

Posted by Matthew Hancock at 1:09 pm
Tutorials 2 Comments »

Here is a nice little chunk of code that I wrote to help you enable the MouseWheel in your Flash AS3 files.

// Import MouseEvent
import flash.events.MouseEvent;

// Create MouseWheel Event
public function handleMouseWheel(event:MouseEvent){
trace(event.delta);
}

// Add MouseWheel Listener
addEventListener(MouseEvent.MOUSE_WHEEL,handleMouseWheel);

This will trace the movement from the MouseWheel and that value can be used in your Flash movie however you would like. Enjoy!

How to get a list of child objects that are inside another object

Posted by Matthew Hancock at 6:11 pm
Tutorials No Comments »

Here is an easy way to get a list of child objects from inside another object.

for(x=0; x < my_mc.numChildren; x++){
trace("Type: "+my_mc.getChildAt(x)+" Name: "+my_mc.getChildAt(x).name);
}

  • Noob Flash Feeds

  • Site Tools

  • WP Theme & Icons by N.Design Studio
    Entries RSS Comments RSS Login