How to update WordPress

1. Have server running (if using localhost)
2. Backup old wordpress folder with everything in it
3. Delete old wordpress files and Copy in new wordpress files
4. Copy in theme(s) to new location wordpress/wp-content/themes
5. Copy in wp config file from backup location to /wordpress
6. Run database update: … /wp-admin/upgrade.php.
7. Wait for it to finish
8. Done!

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

Get URL code for Flash Action Script 3

For get url buttons in AS3, use the following code:

example_btn.addEventListener(MouseEvent.MOUSE_DOWN, example1);
function example1(e:MouseEvent):void {
var request:URLRequest=new URLRequest(“http://www.table4.com/“);
navigateToURL(request, “_self“);
}

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

Go to frame code for Flash Action Script 3

To go to a frame in AS3, use the following code:

examplebutton_btn.addEventListener(MouseEvent.MOUSE_DOWN, examplebutton);
function examplebutton(event:MouseEvent):void {
gotoAndPlay(FRAME NUMBER HERE);
}

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

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”);
}

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

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
Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

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

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • TwitThis
  • Yahoo! Buzz
  • LinkedIn

,

« Newer Posts