AE ENHANCERS

Expressions/Scripts/Presets
It is currently Thu Sep 02, 2010 3:52 pm

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 35 posts ]  Go to page 1, 2, 3  Next
Author Message
 Post subject: Quick effects palette
PostPosted: Mon Feb 01, 2010 9:47 am 
Offline

Joined: Mon Oct 26, 2009 2:49 pm
Posts: 16
Location: Next to Paris
Hi,

This is a very simple script but useful... :oops:

In some compositing package (Fusion, Nuke...), I like to access to effects (not all but the most useful) with "button bar"...
In repetitive task in AE it's painful to browse the list of all effects in menu or with mouse (right click...).
I made a little script that do it :
Image

At this time the list of effects is hard coded in the script...
Later i try to make a script who load the list in a preference text...
Of course it's easy to modify this script to customize for you. :D


Attachments:
Quick_Fx_Palette.zip [1.62 KiB]
Downloaded 447 times
Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Tue Feb 09, 2010 1:52 pm 
Offline
User avatar

Joined: Sat Jun 05, 2004 8:05 am
Posts: 132
Location: Los Angeles, CA
This is sooo awesome! Please do add the possibility of customizing this, it would reach even greater heights of awesomeness


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Wed Feb 10, 2010 2:30 pm 
Offline

Joined: Tue Nov 07, 2006 2:07 pm
Posts: 21
Thanks so much for this!

I've added 2 of your palettes to my workspace, one for effects, one for presets.

I don't have a great deal of scripting experience, and I can say it's relatively simple to customize.

For presets, I've added paths to my .ffx files:
Code:
   var presetPath1 = ("/Applications/Adobe After Effects CS4/Presets/PdB/UnMult White.ffx");
   var myPreset1 = File(presetPath1);

then call the vars in your function

It works brilliantly - great time saver!

pdeb


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Wed Feb 10, 2010 2:46 pm 
Offline

Joined: Tue Nov 07, 2006 2:07 pm
Posts: 21
meant to include this - nice and compact


Attachments:
tbars.png
tbars.png [ 48.29 KiB | Viewed 2833 times ]
Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Wed Mar 10, 2010 4:31 pm 
Offline

Joined: Mon Nov 27, 2006 11:08 pm
Posts: 93
Location: Los Angeles, CA
This is awesome!!! Can't wait to try it! I hope it's easy to modify the fx you want on the toolbar.

_________________
if it's not fun, what's the point?
http://www.mackdadd.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Sun Mar 14, 2010 2:25 pm 
Offline

Joined: Mon Oct 26, 2009 2:49 pm
Posts: 16
Location: Next to Paris
Thanks for your feedback ! :D

The 1.2 is done
Image

Easily customizable...
Works for effects and preset !
You have only to edit the head of the script, only arrays to modify... example :
Code:
///// effects example
var But_01=["Fst Blr",   // the name of the button
               "fx",   // fx for an effects or preset to apply preset
               "Fast Blur",   //exact effect name or preset path (copy the name in effects pallette in AE)
               "Blurriness",   // custom property name only for fx (if you want to modify one default property for example the fast blur blurriness is "0" , to modify more than one property you could create a  preset)
               9]; //custom property value for fx
...
///// Preset example
var But_18=["601 to RGB",   // text on button,  max is 7 char
               "preset",   // fx or preset
               "C:/Program Files (x86)/Adobe/Adobe After Effects CS4/Support Files/Presets/Image - Utilities/Levels - video to computer.ffx"];   //exact effect name or preset path (copy the name in effects pallette in AE)


Attachments:
Quick_Fx_Palette_v2.zip [2.42 KiB]
Downloaded 435 times


Last edited by cfx on Thu Mar 25, 2010 1:29 am, edited 1 time in total.
Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Tue Mar 23, 2010 1:41 am 
Offline

Joined: Mon Nov 27, 2006 11:08 pm
Posts: 93
Location: Los Angeles, CA
I'm getting an error, it doesn't recognize the "staticText" in line 134.

I'm using CS3, not CS4. Could that be why? If so, is there any way to make it CS3 functional? I really, really would love to be using this tool!!!

_________________
if it's not fun, what's the point?
http://www.mackdadd.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Thu Mar 25, 2010 1:35 am 
Offline

Joined: Mon Oct 26, 2009 2:49 pm
Posts: 16
Location: Next to Paris
"staticText" isn't supported in cs3...
I have removed this in the script for cs3 compatibility...
You can download the new version in my last post. :D


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Thu Mar 25, 2010 9:35 am 
Offline
User avatar

Joined: Thu Jun 17, 2004 9:27 am
Posts: 381
Location: New York City, NY
StaticText is compatible with CS3, just make sure you capitalize it correctly. If you are using add the you need to keep it all lowercase:

Code:
myPanel.sep = myPanel.add("statictext", [210, 10, 220, 25], "|");


-Lloyd

_________________
You can find all my AE scripts here: http://aescripts.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Thu Mar 25, 2010 1:45 pm 
Offline

Joined: Mon Nov 27, 2006 11:08 pm
Posts: 93
Location: Los Angeles, CA
Excellent, thanks guys! I'll let you know how it goes.

_________________
if it's not fun, what's the point?
http://www.mackdadd.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Fri Apr 02, 2010 4:48 pm 
Offline

Joined: Mon Nov 27, 2006 11:08 pm
Posts: 93
Location: Los Angeles, CA
Dang, this thing is awesome! I've already gotten completely used to just having this there at the top!

Here's a little something I ran into, though, wondering if there's maybe a fix for it.

I wanted to have the Glow effect on it, so I changed the script like I'm supposed to to customize. However, I also have Pete's Plugins installed, and he has a glow in that set called "Glow", just like the default AE glow. Unfortunately, the palette grabs the Pete's plugin one, not the AE one. Any ideas on how I can get it to differentiate?

Even if there's not, this is still an amazing tool!!

_________________
if it's not fun, what's the point?
http://www.mackdadd.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Fri Apr 02, 2010 11:12 pm 
Offline

Joined: Tue Nov 07, 2006 2:07 pm
Posts: 21
Hype, I imagine just applying Pete's glow to a layer, saving that as an ffx, then adding that ffx to the toolbar will do the trick.

Pete Debay


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Fri Apr 02, 2010 11:13 pm 
Offline

Joined: Tue Nov 07, 2006 2:07 pm
Posts: 21
errr, I meant adding AE glow to an ffx...stand corrected


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Mon Apr 05, 2010 11:53 am 
Offline

Joined: Mon Nov 27, 2006 11:08 pm
Posts: 93
Location: Los Angeles, CA
good solution, thanks for the tip!!

_________________
if it's not fun, what's the point?
http://www.mackdadd.com


Top
 Profile  
 
 Post subject: Re: Quick effects palette
PostPosted: Tue Apr 06, 2010 2:01 am 
Offline

Joined: Mon Oct 26, 2009 2:49 pm
Posts: 16
Location: Next to Paris
lloydalvarez wrote:
StaticText is compatible with CS3, just make sure you capitalize it correctly. If you are using add the you need to keep it all lowercase:

Code:
myPanel.sep = myPanel.add("statictext", [210, 10, 220, 25], "|");


-Lloyd


Thank you for having me back in the right way ! :D
Fred


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 35 posts ]  Go to page 1, 2, 3  Next

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group