Need to edit your photo’s without software?

Tuesday, April 28th, 2009

Many people would love to edit their own photo’s, re-size them to give them to someone to put on a website or to put them up themselves. However most people don’t want to spend a few hundred dollars on software that can do this efficiently(re-sizing in windows paint isn’t efficient or effective).

There are a few different options, windows  and mac both offer tools that you can download (windows live) that have some editing tools built in to make updates. However if your looking for an easy solution and have high speed internet there are some great online options.

Photoshop.com

You can upload or photo’s edit and re-size with lots of different options, you can then embed them from thier on to other websites or you can even save them to your local computer and upload them to where you would like to have them.

Flickr

Another great online tool to upload your photo’s and edit them with many options. I’m not sure if you can resave them directly with flickr but if not just right click on your edited photo and click ” save as ” if your using fire fox ” save image as” and you can save it to your local machine. That way you have a copy on your computer for back up or to share on other websites without having to depend on Flickr.

Now with all of the tools mentioned you will be able to do many simple edits but for cleaning up images to make really big changes I would recommend looking into the actual Photoshop Software, with all of the options with it you will be able to create almost anything you can imagine ( with a bit of training :-) )

Flash Button Action Script 3

Wednesday, April 22nd, 2009

New to action script 3 and looking to make your button link to a website, add your movie clip and give it the instance name of – myButton

Then add this code to your actionscript frame and update the url as required.

myButton.addEventListener(MouseEvent.MOUSE_UP , myButtonClick );

function myButtonClick(event:MouseEvent):void
{

var yourURL:URLRequest = new URLRequest(“http://www.elitegd.com”);
navigateToURL( yourURL , “_self”);
}

If you have mulitple buttons just duplicate the code and add a number to your vars and instance name.

If your looking to link to a different frame just change the middle var request

var yourURL:URLRequest = new URLRequest(“http://www.elitegd.com”);
navigateToURL( yourURL , “_self”);

to

gotoAndStop(2);

Hopefully this will help you to get control of one of the basic tasks that requires just a bit more code in Action Script 3.

Note for the _self to work i did have to upload to a webserver to test and it worked correctly offline using _blank worked correctly.

Tips and Tricks #1

Thursday, April 16th, 2009

I’m going to start consolidating different information i get from other websites on my blog that I think will be beneficial to people who read along.

First up is Adobe TV: Everyday Timesavers: Web – Preview Pages in Dreamweaver CS4

The new Live View feature in Dreamweaver CS4 helps you be more productive by letting you preview your web pages without having to load them in a browser.