Animated buttons for Flash Action Script 3

For animated buttons in AS3, use the following code:

my_button_mc.buttonMode = true;
my_button_mc.addEventListener(MouseEvent.ROLL_OVER, overHandler);
my_button_mc.addEventListener(MouseEvent.ROLL_OUT, outHandler);

function overHandler(event:MouseEvent) {
event.target.gotoAndPlay(”over”);
}

function outHandler(event:MouseEvent) {
event.target.gotoAndPlay(”out”);
}

New Table4 blog launched

Table4 proudly presents it’s new blog. Here you can find:

  • Our Table4 Wiki
  • Customer Testimonials
  • Additional information about our services
  • News updates

Internet Explorer 7 vulnerability

Very important news about Internet Explorer 7. Please read this article for more information:

http://news.bbc.co.uk/1/hi/technology/7784908.stm

,