This script would read the settings of property selected, copy them and paste them into an expression, therefore locking the poperty.
If position is 960,540 the expression written would simply be [960,540]
Ideally this would be a pallet with options to lock all or selected properties.
Lock property script
Moderator: byronnash
Hello scribling,
try this (big) one :
requires AE7.0 http://www.nabscripts.com/Forum/Scripts ... erties.jsx
how it's supposed to work:
(palette' s options)
-lock selected props only
-lock selected layers props
-lock all props in comp
-unlock (remove expression) selected props
you can find other details in the "?" help button.
hope this helps (also helpful to me
)
try this (big) one :
requires AE7.0 http://www.nabscripts.com/Forum/Scripts ... erties.jsx
how it's supposed to work:
(palette' s options)
-lock selected props only
-lock selected layers props
-lock all props in comp
-unlock (remove expression) selected props
you can find other details in the "?" help button.
hope this helps (also helpful to me

That's totally cool! I just hate when I'm working away and somehow a layer gets shifted or I accidentally hit + or - and rotate a layer. This prevents all of that and let's me work without having to be all gingerly. Especially in 7 ... the intface is slow so I always end up moving a layer instead of moving the window.
Thanks again. You rock!
Any ideas on the destabilization slider I posted a while ago?
Thanks again. You rock!
Any ideas on the destabilization slider I posted a while ago?
For the stabilization, you mean your footage starts destabilized and a slider controls the "amount" of stabilization (from 0 to 100) ?
Add a slider to your footage (later..animate it from 0 to 100).
Paste something like this in the anchorPoint property (AE stabilizer has created a lot of anchor point keyframes...represented here by the "end" variable):
is that what you mean ?
Add a slider to your footage (later..animate it from 0 to 100).
Paste something like this in the anchorPoint property (AE stabilizer has created a lot of anchor point keyframes...represented here by the "end" variable):
Code: Select all
slider = effect("Slider Control")("Slider");
start = [thisComp.width/2,thisComp.height/2];
end = value;
s = clamp(slider/100,0,1); // between 0 and 1
(1-s)*start + s*end;
http://www.nabscripts.com/ seems to have been lost to domain pirates. What a pity...
Thanks Jonas. I'll try to find a solution in the next few days...
So what would be a good way to disable a time remap effect...These are often tedious to setup, but sometimes you need to look at your layer (in the context of the comp) without any remapping.
Is there a way to "turn it off", as it were?
Alex
Is there a way to "turn it off", as it were?
Alex
-
- Posts: 704
- Joined: June 5th, 2004, 7:59 am
- Location: London, UK
If the layer starts on the first frame, you could use this expression:Disciple wrote:So what would be a good way to disable a time remap effect...These are often tedious to setup, but sometimes you need to look at your layer (in the context of the comp) without any remapping.
Is there a way to "turn it off", as it were?
Alex
time
Otherwise, you could use this:
time - thisLayer.startTime;