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!
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“);
}
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);
}
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:











