SIGN IN
::
SPONSORS
::
ABOUT US
::
CONTACT US
FORUMS
TUTORIALS
MAGAZINE
TRAINING
VIDEOS - REELS
PODCASTS
EVENTS
SERVICES
NEWSLETTER
NEWS
BLOGS
ADOBE AFTER EFFECTS:
Home
Forum
Basics
Expressions
Tutorials
Podcasts
Motion Graphics
Training
Cinema 4D
FAQ
Re: How can I manually replicate the Exponential Scale effect in standard?
Cow Forums
:
Adobe After Effects
FAQ
•
VIEW POSTS
•
ADD A NEW POST
•
SEARCH
•
CHANGE FORUM
Respond to this post
•
Return to posts index
•
Read entire thread
Re: How can I manually replicate the Exponential Scale effect in standard?
by
yikesmikes
on Jul 12, 2007 at 8:40:23 pm
You might want to try this exponential scale expression from an earlier Dan post. Copy the expression, then Alt Click the Scale Stopwatch of that Layer 1/SanFran.psd, then Paste.
I plugged in Andrew's 100% to .0005% over 6 seconds. This expression will override any keyframes, so you don't need any on that top layer. I don't have AE7, my bad, so I can't download Andrew's project file to test it, but it should be smooth.
Dan Ebberts earlier post, with your parameters:
Date: Apr 27, 2005 at 15:46 gmt
Subject: Re: is it possible to us expression for?
Try this:
v1 = 100;
v2 = .0005;
t1 = 0; //start time
t2 = 6; //end time
if (time <= t1){
s = v1;
}else if (time > t1 && time < t2){
t = time - t1;
T = t2 - t1;
k = Math.log(v2/v1)/T;
s = v1*Math.exp(k*t)
}else{
s = v2;
}
[s,s]
Respond to this post
•
Return to posts index
•
Read entire thread
Current Message Thread:
How can I manually replicate the Exponential Scale effect in standard?
by tommmm on Jul 12, 2007 at 6:13:32 pm
Re: How can I manually replicate the Exponential Scale effect in standard?
by LGABoarder on Jul 12, 2007 at 6:18:10 pm
Re: How can I manually replicate the Exponential Scale effect in standard?
by tommmm on Jul 12, 2007 at 7:45:00 pm
Re: How can I manually replicate the Exponential Scale effect in standard?
by yikesmikes on Jul 12, 2007 at 8:40:23 pm
Re: How can I manually replicate the Exponential Scale effect in standard?
by LGABoarder on Jul 12, 2007 at 8:14:44 pm
Re: How can I manually replicate the Exponential Scale effect in standard?
by tommmm on Jul 13, 2007 at 12:54:31 am
Re: How can I manually replicate the Exponential Scale effect in standard?
by LGABoarder on Jul 13, 2007 at 2:31:45 am
Re: How can I manually replicate the Exponential Scale effect in standard?
by tommmm on Jul 13, 2007 at 5:32:57 am
Re: How can I manually replicate the Exponential Scale effect in standard?
by sam.mltn on Jul 14, 2007 at 6:34:34 pm
Note:
If you are a registered user please
click here to login
before posting.
Your post will not be accepted if your name and email address are not registered in our database. Click
here
if you do not have an account.
Name
E-Mail Address
Subject
E-Mail me when someone responds
Just This Message
Entire Thread
None
Message:
Note:
The following are HTML characters and may cause parts of your post to disappear if not used correctly: < > &
To include any portion of the post in your response, highlight the desired text and hit the "Q" key.
Read more...
Add your message signature
Note:
By clicking "Post Direct" button above, you are agreeing to the Creative Cow's
Code of Conduct
.
FORUMS
•
TUTORIALS
•
MAGAZINE
•
TRAINING
•
VIDEOS - REELS
•
PODCASTS
•
EVENTS
•
SERVICES
•
NEWSLETTER
•
NEWS
•
BLOGS
©
CreativeCOW.net
All rights are reserved.
[
Top
]