Useful Freeware Photoshop Plugins + ActionScripts


Speedup and  maximize with these amazing plugins. Install and use them in Photoshop.

Actions
Image Edge  - http://www.liknes.no/photoshop/borders.htm

Stickers and Tapes - http://www.panosfx.com/free-photoshop-actions/stickers-tapes

Vantage- http://mutato-nomine.deviantart.com/art/Vintage-Photo-10893481

Polaroid -http://rawimage.deviantart.com/art/Polaroid-GENERATOR-V1-42651542

Filters
Distort, Grunge Etc - http://www.filterforge.com/download/

Photographic- http://www.optikvervelabs.com/

Templates
Grids- http://www.photoradar.com/techniques/technique/10-free-photo-grids-for-photoshop

Triptych
-http://www.photoradar.com/techniques/technique/25-free-triptych-photo-frames-for-photoshop

Rounded Frames - http://gimei.deviantart.com/art/15-illustration-frames-61296653

Brushes

Tape Pieces - http://angela3d.deviantart.com/art/A3D-Pieces-of-Tape-Brushes-25491492


Leavy Borders - http://designresourcebox.com/leavy-borders-brushes/

Cracks & Cuts - http://solalia.deviantart.com/art/Cracks-and-cuts-brushes-110018993


Find more brushes below:
Jump to Frame
stop();
myButton.addEventListener(MouseEvent.MOUSE_DOWN, goIntro);
function goIntro(event:MouseEvent):void {
gotoAndStop(1, "Scene 1");
}


MouseOver Effect
myButton.addEventListener(MouseEvent.MOUSE_OVER, clickLibraryButton);
function clickLibraryButton(event:MouseEvent):void{
myLoader.load(new URLRequest("PopUpActionScript.swf"));
addChild(myLoader);
}

Other Navigation Methods
gotoAndPlay(1); // jump to Frame
gotoAndPlay("main"); // jump to Label
var myLoader:Loader = new Loader();
myLoader.load(new URLRequest("IntroPage.swf"));
addChild(myLoader); // jump to SWF files

Closing External SWF File
import flash.display.DisplayObject;
myButton.addEventListener(MouseEvent.CLICK, clickLibraryButton);
function clickLibraryButton (event:MouseEvent):void {
removeChild("PopUpActionScript.swf");
}

Custom Cursor
Mouse.hide();
stage.addEventListener(MouseEvent.MOUSE_MOVE,follow);
function follow(evt:MouseEvent){
cursor.x = mouseX;
cursor.y = mouseY;
}

For transparent buttons, simply clear all button states except the HIT state. Also, click here to download graphics for your Flash Project or browse more choices from these websites:

Clean up your web codes.

Amazing online tools to check out:


  • http://mrcoles.com/blog/css-unminify/
  • http://mrcoles.com/blog/html5ify-your-existing-code-base/

Post a Comment

0 Comments