Search found 139 matches

by Mylenium
November 10th, 2008, 12:28 pm
Forum: Script requests
Topic: camera revolving
Replies: 5
Views: 11483

Re: camera revolving

Use expressions: rCenter=thisComp.layer("center").position; rRadius=200; X=rCenter[0]+Math.sin(time)*rRadius; Y=rCenter[1]; Z=rCenter[2]+Math.cos(time)*rRadius; [X,Y,Z] Simply pin down your point of interest with a pickwhip expression to a Null and you are set. Modify values as needed. Myl...
by Mylenium
November 10th, 2008, 12:24 pm
Forum: Script requests
Topic: Font search
Replies: 22
Views: 45367

Re: Font search

Does anyone have any idea why this information is so hard to get or when it might likely become available? Seems at odds with how accessible everything else is. I guess you would have to spend considerable effort on it and start by separating the streams for this info in AE itself first. My knowled...
by Mylenium
November 3rd, 2008, 12:31 pm
Forum: Script requests
Topic: Set Video Size in MB
Replies: 2
Views: 8356

Re: Set Video Size in MB

Not possible in AE. Doing so would require to know the stream profiling information based on the compression algorithm's matrices and algorithms which in turn would require to be able to scan all existing frames which in turn would mean AE had to render them and apply the compression afterwards. Nei...
by Mylenium
November 3rd, 2008, 12:25 pm
Forum: Expression Discussion
Topic: Offset Own lensflate? help
Replies: 1
Views: 7437

Re: Offset Own lensflate? help

http://library.creativecow.net/articles ... _flare.php Should provide al lthe formulas and even stock project files you may need.

Mylenium
by Mylenium
October 31st, 2008, 10:19 am
Forum: Expression Discussion
Topic: precomping layers with other size
Replies: 1
Views: 8021

Re: precomping layers with other size

I don't quite understand. The size of pre-comps when pre-composing them from the timeline is determined by the "Leave attributes in current comp" and "Move attributes to nested comp" options. Beyond that AE doesn't care for the actual sizes. If you need some specific alignment, a...
by Mylenium
October 31st, 2008, 10:16 am
Forum: Expression Discussion
Topic: Time-based easing?
Replies: 3
Views: 10520

Re: Time-based easing?

The way I understand you, you simply need a fixed segment length based on the proximity which can easily be done by dividing the space between keyframes and deciding which side you're on. From there you'd simply add/subtract the start time and feed it into your actual easing function rather than the...
by Mylenium
September 25th, 2008, 10:30 am
Forum: Scripts Discussion
Topic: Import Photoshop Layers
Replies: 3
Views: 10085

Re: Import Photoshop Layers

julianck wrote:I can import a photoshop file as a whole, but is there anyway to import just an individual layer?

Thanks,
Julian
Umm, you select it in the import dialog? Has worked for ages this way.

Mylenium
by Mylenium
September 25th, 2008, 10:28 am
Forum: Expression Discussion
Topic: Cycle through expressions to clear warnings/errors
Replies: 15
Views: 28279

Re: Cycle through expressions to clear warnings/errors

So I wonder if there's any global expression-refresh command? So I can easily just cycle through all expressions for a layer or comp to make them valid again...? No. There's a reason it behaves this way. And for the other matter: If your code doesn't evaluate, then it is crooked. By all means, AE w...
by Mylenium
September 25th, 2008, 10:25 am
Forum: Expression Discussion
Topic: If statement in Expression that refuses to cooperate.
Replies: 9
Views: 17106

Re: If statement in Expression that refuses to cooperate.

And it seems like the valueAtTime only works in scripts and not in expressions. It does. It's however merely a read-only method, which is only logical for a system, that evaluates at every frame anyways. As for the rest - well, consider for a moment, that you are permanently changing the start valu...
by Mylenium
September 19th, 2008, 9:52 am
Forum: Script requests
Topic: Remove and re-link duplicate materials?
Replies: 5
Views: 11611

Re: Remove and re-link duplicate materials?

Check the manual for replacing footage. Absolutely no scripts required.

Mylenium
by Mylenium
September 19th, 2008, 9:51 am
Forum: Script requests
Topic: AE camera to Psunami camera
Replies: 2
Views: 14486

Re: AE camera to Psunami camera

You could bake the cam by using the Expression to Keyframes keyframe assistant. For the rotation, you could copy the position of the POI to a Null, turn the camera's orientation property off, then apply a lookAt() expression to the orientation before baking. might provide some usable values for copy...
by Mylenium
September 19th, 2008, 9:45 am
Forum: Script requests
Topic: Font search
Replies: 22
Views: 45367

Re: Font search

You cannot query font properties as of yet. It should be possible to find strings with indexOf() or regex(). Not sure what exactly you are looking for.

Mylenium
by Mylenium
August 2nd, 2008, 8:00 am
Forum: Script requests
Topic: Protect AEP ?
Replies: 3
Views: 9518

Re: Protect AEP ?

My question is, whether it is possible to protect a file AEP somehow? Nope. As Atomic said: If you don't want other people to use your stuff, don't leave it out in the open. There's a million ways to protect your stuff on the operating system/ file system level from simple setting user permissions ...
by Mylenium
July 1st, 2008, 11:55 am
Forum: Expression Discussion
Topic: sound keys and scaleing
Replies: 2
Views: 8628

Re: sound keys and scaleing

No idea what the video shows, but the make or break for audio pumping is defined by a secondary vibration. Rather than using the Soundkeys output directly, you would use it as a modulator for a wiggle() or constant sinusoidal motion's amplitude.

Mylenium
by Mylenium
July 1st, 2008, 11:50 am
Forum: Expression Discussion
Topic: Get 3D Position values of Motion Path
Replies: 1
Views: 7370

Re: Get 3D Position values of Motion Path

Transform data is converted using the layer space transforms, in your case something like m3D=thisComp.layer("Null1") m2D=m3D.toWorld(m3D.anchorPoint) would be proper. For the flipping issue you could re-create the orient with your own set of expressions or simply use one more level of par...