Archive for the ‘Adobe’ Category

Export Dreamweaver Sites CS4

Wednesday, March 17th, 2010

You can now multi-select sites in the site manager and export them, easy as pie.

http://www.owenwebs.com/2009/07/07/export-dreamweaver-cs4-site-info/

Dreamweaver Turn OFF Design Notes

Monday, March 8th, 2010

Manage Sites
Edit Site
Left hand column ‘Design Notes’
Uncheck!

much cleaner SVN

Actionscript 3 Make Cursor a Hand

Tuesday, March 2nd, 2010

The goal:

SIMPLY turn the cursor into a hand
(over something that really isn’t a button, in this case it’s just a dynamic URLREQUEST function/link).

Nice and simple solution:

top of your AS3 package:
import flash.ui.Mouse;

in function reacting to mouse movement or loader success:
this.buttonMode = true;

Actionscript 3 Link

Tuesday, March 2nd, 2010

import flash.net.navigateToURL;
this.addEventListener(MouseEvent.CLICK, fOnClick);

private function fOnClick( e : MouseEvent ):void {
var request:URLRequest = new URLRequest(“http://www.google.com”);
navigateToURL(request);
}

Photoshop .ico plugin / Favicon instructions

Tuesday, March 2nd, 2010

http://www.grafikhaus.co.uk/dwtutsfavicon.htm

save to:

program files/adobe/photoshop/plug-ins/file formats

make it at 64 x 64 or 32 x 32, end at 16 x 16

insert into your doc:

<link rel=”Shortcut Icon” href=”/favicon.ico”>