Search found 21 matches

by pdeb
April 2nd, 2010, 11:13 pm
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 135869

Re: Quick effects palette

errr, I meant adding AE glow to an ffx...stand corrected
by pdeb
April 2nd, 2010, 11:12 pm
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 135869

Re: Quick effects palette

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
by pdeb
February 10th, 2010, 2:46 pm
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 135869

Re: Quick effects palette

meant to include this - nice and compact
by pdeb
February 10th, 2010, 2:30 pm
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 135869

Re: Quick effects palette

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: var presetPath1 = ("/Applications/Adobe...
by pdeb
February 4th, 2010, 9:35 am
Forum: General Scripts Library
Topic: Duplicate Comp Hierarchy Script
Replies: 2
Views: 13768

Re: Duplicate Comp Hierarchy Script

Thanks for your work on this script.

I ran the script and it returned this error:
"Unable to execute script at line 21. undefined is not an object"

pdeb
by pdeb
February 2nd, 2010, 10:36 am
Forum: Script requests
Topic: Clone brush position to null
Replies: 1
Views: 7592

Re: Clone brush position to null

This expression converts 3d position to 2d coordinates

Code: Select all

L = thisComp.layer("your track");
L.toComp([0,0,0]);
by pdeb
August 1st, 2009, 12:32 am
Forum: Expression Discussion
Topic: expression to a slider
Replies: 2
Views: 10735

Re: expression to a slider

Edit - Copy Expression Only - this will allow you to migrate an expression from a single layer to multiple selected layers. Do this for each property.
by pdeb
March 29th, 2009, 5:24 am
Forum: Paul Tuersley's Scripts
Topic: AE to C4D
Replies: 82
Views: 480937

Re: AE to C4D

Would this be what you're looking for:
http://www.aenhancers.com/viewtopic.php ... hilit=bake

seems to bake out rotation for a camera with sure target applied,
pdeb
by pdeb
May 28th, 2008, 6:00 am
Forum: Expression Discussion
Topic: Layer markers driving position (compress motion with easing)
Replies: 6
Views: 16950

Re: Layer markers driving position (compress motion with easing)

Thanks Lloyd, I tried your suggestion, then tried keying it manually, and it seems by default one gets a speed dip when going from linear interpolation to an easing keyframe, expression or no expression. I had to set the 'ease out' and 'ease in' keys to continuous as well as match the incoming and o...
by pdeb
May 27th, 2008, 11:07 pm
Forum: Expression Discussion
Topic: Layer markers driving position (compress motion with easing)
Replies: 6
Views: 16950

Re: Layer markers driving position (compress motion with easing)

Thanks very much Lloyd, I took your suggestion and got this to work: k1 = marker.key(1).time; k2 = marker.key(2).time; k3 = marker.key(3).time; k4 = marker.key(4).time; sValue = key(1).value; eValue = key(2).value; value1 = position.valueAtTime(k1); value4 = position.valueAtTime(k4); if (time < k2) ...
by pdeb
May 26th, 2008, 11:50 am
Forum: Script requests
Topic: Script to compress motion using marker sets
Replies: 3
Views: 19499

Re: Script to compress motion using marker sets

Thanks as always, Dan! I'm going to try to vary the easing based on Ian Haugh's ease and wizz

P
by pdeb
May 26th, 2008, 7:59 am
Forum: Script requests
Topic: Script to compress motion using marker sets
Replies: 3
Views: 19499

Script to compress motion using marker sets

Hi everyone, thanks for your continued support of the AE community! I originally posted this under the expressions discussions, but as I look under the hood a little more it seems this is more of a script-based challenge. Inspired by Lloyd Alvarez's recent expressions, I'm trying to create an intera...
by pdeb
May 24th, 2008, 3:49 am
Forum: Expression Discussion
Topic: Layer markers driving position (compress motion with easing)
Replies: 6
Views: 16950

Re: Layer markers driving position (compress motion with easing)

ps...upon further research, it appears that I may have to go to the scripting route to take advantage of the "setValueAtTime" method - does this sound about right? Thanks, Peter
by pdeb
May 24th, 2008, 3:25 am
Forum: Expression Discussion
Topic: Layer markers driving position (compress motion with easing)
Replies: 6
Views: 16950

Layer markers driving position (compress motion with easing)

Inspired by Lloyd Alvarez's recent expressions, I'm trying to create an interactive way to compress position based on sets of markers. Here's the process I'm trying to work through, though not much success with my basic knowledge of iterative loops: 1. start with 2 linear-interpolation position keyf...
by pdeb
July 23rd, 2007, 4:09 pm
Forum: Paul Tuersley's Scripts
Topic: AE to C4D
Replies: 82
Views: 480937

LW <-> AE scripts? OT question for Blabberlicious

First off, thanks Paul for the great scripts for C4D, looks like you put your all into them.

I wanted to ask Blabberlicious if the scripts he uses to exchange AE and LW info are available somewhere.

thanks, pdeb