Search found 158 matches

by Atomic
June 5th, 2008, 5:20 am
Forum: Expressions Library
Topic: PhotoFlow like Effect
Replies: 22
Views: 112948

Re: PhotoFlow like Effect

There used to be a "wet floor" script here:

http://www.nabscripts.com/Downloads/downloads_en_1.php

But is seems to have been removed...?

The wet floor script would arrange them in a cricle like you mentioned.
by Atomic
May 29th, 2008, 5:43 am
Forum: Expression Discussion
Topic: Possible to Right-Align the Type-On/Typewriter Effect?
Replies: 5
Views: 17466

Re: Possible to Right-Align the Type-On/Typewriter Effect?

I was quite disappointed that AE CS3 simply removed the Animation Preset Gallery. Is it just me? I can't find it anywhere. Now there is no way to preview effects presets in CS3. textIndex and selectorValue are in the standard help file, not the CS3 scripting PDF. Just type textIndex into the search ...
by Atomic
May 28th, 2008, 9:49 am
Forum: Expression Discussion
Topic: Possible to Right-Align the Type-On/Typewriter Effect?
Replies: 5
Views: 17466

Re: Possible to Right-Align the Type-On/Typewriter Effect?

You might be able to adapt the "Insert Text" preset under Mechanical.
by Atomic
May 28th, 2008, 5:55 am
Forum: Script requests
Topic: Create an Animated Mask For a Layer
Replies: 3
Views: 10608

Re: Create an Animated Mask For a Layer

more experimenting has lead to this. myShape.vertices = [[0,0],[w,0],[w,h],[0,h]]; myShape.closed = true; myMaskShape.setValueAtTime(0,myShape); offset = 50; myShape.vertices = [[0+offset,0],[w+offset,0],[w+offset,h],[0+offset,h]]; myShape.closed = true; myMaskShape.setValueAtTime(1,myShape); It loo...
by Atomic
May 27th, 2008, 10:52 am
Forum: Script requests
Topic: Create an Animated Mask For a Layer
Replies: 3
Views: 10608

Re: Create an Animated Mask For a Layer

Hmmm, almost. // create square mask var newMask = mySolid.Masks.addProperty("Mask"); newMask.inverted = true; var myMaskShape = newMask.property("maskShape"); var myShape = myMaskShape.value; myShape.vertices = [[5,5],[5,45],[45,45],[45,5]]; myShape.closed = true; myMaskShape.set...
by Atomic
May 27th, 2008, 10:15 am
Forum: Script requests
Topic: Create an Animated Mask For a Layer
Replies: 3
Views: 10608

Re: Create an Animated Mask For a Layer

Once again, motionscript has the answer.

http://www.motionscript.com/ae-scriptin ... ted-1.html
by Atomic
May 26th, 2008, 5:05 am
Forum: Script requests
Topic: Create an Animated Mask For a Layer
Replies: 3
Views: 10608

Create an Animated Mask For a Layer

Hi All,

I am trying to automate a process and I need to create an animated mask on every layer I import.

I don't know if this is possible, but is there a way to create a mask using JSX? If so, how do I animate it?

Thanks
by Atomic
May 21st, 2008, 5:34 am
Forum: Expression Discussion
Topic: Distribute Layers on a spiral
Replies: 3
Views: 10287

Re: Distribute Layers on a spiral

To simulate what is in the video you mention, remember to move the layer's achor point to the bottom of the card.
by Atomic
May 8th, 2008, 5:20 am
Forum: Expression Discussion
Topic: Expression to link camera to grid effect.
Replies: 2
Views: 9222

Re: Expression to link camera to grid effect.

Just wondering...

Can't you achieve that effect with MotionTile applied to a layer? Make the layer 3D and roate it along the camera FOV?
by Atomic
May 5th, 2008, 5:29 am
Forum: Expression Discussion
Topic: Expression To Control Z-Position Only
Replies: 2
Views: 8709

Re: Expression To Control Z-Position Only

Thank You Dan.
by Atomic
May 2nd, 2008, 1:02 pm
Forum: Expression Discussion
Topic: Expression To Control Z-Position Only
Replies: 2
Views: 8709

Expression To Control Z-Position Only

Hi All, I am trying to make a comp that has two slider controls. These two sliders represent the "Far Point" and "Near Point" of the layer they are controlling. I want to be able to traditionally key frame the x,y position, but I want the slider controllers to control the z posit...
by Atomic
April 29th, 2008, 5:39 am
Forum: Expression Discussion
Topic: Expression To Grab Path Coordinate
Replies: 1
Views: 7382

Re: Expression To Grab Path Coordinate

Hmm, 84 views and no reply?

Is there no way to do this?
by Atomic
April 16th, 2008, 11:48 am
Forum: Expression Discussion
Topic: Expression To Grab Path Coordinate
Replies: 1
Views: 7382

Expression To Grab Path Coordinate

Hi All, I am trying to create an arrow that travels along a path. I want it to bend around the path as well. I have come up with a possible solution. I am using the Vegas effect with only a single segment, this get's me the body of the arrow bending along the path. So the challenge is to get the arr...
by Atomic
April 15th, 2008, 5:40 am
Forum: Expression Discussion
Topic: 3D text extrusion...A la Belief Design
Replies: 3
Views: 11721

Re: 3D text extrusion...A la Belief Design

I would guess that it was made in after effects using the copy text into z-space technique.

http://library.creativecow.net/articles ... petut2.php

Then I would visit http://www.motionscript.com and use Dan's bounce code.