Activity
‎Dec 25, 2024
09:52 PM
1 Upvote
Try using another browser, such as Google Chrome. We've already seen that Opera GX identifies your computer as a Mac.
... View more
‎Dec 18, 2024
11:58 PM
Try this, it should take the layers' scale and anchor point into account: seedRandom(index, true);
rect = sourceRectAtTime();
scaleFactor = scale / 100;
w = rect.width * scaleFactor[0];
h = rect.height * scaleFactor[1];
cw = thisComp.width;
ch = thisComp.height;
halfW = w / 2;
halfH = h / 2;
sx = Math.random() * (cw - w) + halfW;
sy = Math.random() * (ch - h) + halfH;
scaledAnchor = [
anchorPoint[0] * scaleFactor[0],
anchorPoint[1] * scaleFactor[1]
];
startPos = [sx + scaledAnchor[0], sy + scaledAnchor[1]];
endPos = value;
randomSpeed = Math.random() * 2 + 1;
t = Math.min(time / randomSpeed, 1);
linear(t, 0, 1, startPos, endPos);
... View more
‎Dec 18, 2024
10:51 PM
Try this: 1 / Place your layers correctly 2/ Add this expression to the position property of the layers to animate them randomly. seedRandom(index, true);
w = sourceRectAtTime().width;
h = sourceRectAtTime().height;
cw = thisComp.width;
ch = thisComp.height;
sx = Math.random() * (cw - w) + w / 2;
sy = Math.random() * (ch - h) + h / 2;
startPos = [sx, sy];
endPos = value;
randomSpeed = Math.random() * 2 + 1;
t = linear(time, 0, randomSpeed, 0, 1);
[
linear(t, 0, 1, startPos[0], endPos[0]),
linear(t, 0, 1, startPos[1], endPos[1])
]
... View more
‎Dec 17, 2024
04:52 AM
1 Upvote
Check this thread: AE Script : How to access to a mask property : "Source" - "Masks" - "Effects and Masks"
... View more
‎Dec 17, 2024
04:44 AM
Is the extension compatible with your version of After Effects?
... View more
‎Dec 15, 2024
10:23 PM
1 Upvote
The screen recording layer you mentioned is set as a Guide Layer in After Effects. Guide Layers are designed not to appear in the final render, they are only visible in the Composition Panel for reference purposes. To fix this, check if the layer is marked as a Guide Layer: Select the layer in the Timeline. Right-click on it and go to Guide Layer. If it's checked, uncheck it to disable the Guide Layer status. Once the Guide Layer is disabled, the layer should render properly.
... View more
‎Dec 14, 2024
09:22 PM
maxAudio doesn't exist it should be mixAudio And there is also confusion between mixtretch and mixstretch.
... View more
‎Dec 14, 2024
02:02 PM
To import a 3D model, you need After Effects 24.1 or later. Import and add 3D models to your composition
... View more
‎Dec 08, 2024
11:33 PM
1 Upvote
you need to apply the setText() method: txt = thisComp.layer("Rate").text.sourceText.value;
text.sourceText.style
// 1st character kerning //
.setKerning(thisComp.layer("CONTROL").effect("1st Kerning multiplier")("Slider"), 1)
// 2nd character kerning //
.setKerning(thisComp.layer("CONTROL").effect("2nd Kerning multiplier")("Slider"), 2)
// 3rd character kerning //
.setKerning(thisComp.layer("CONTROL").effect("3rd Kerning multiplier")("Slider"), 3)
// Attach the "Rate" value
.setText(txt)
... View more
‎Dec 06, 2024
01:37 PM
Assure-toi de : - Que ta carte graphique est bien à jour. - Désactiver les logiciels antivirus/anti-spywares susceptibles de créer des conflits avec les produits Adobe. Si le problème persiste, poster les informations systèmes de ton ordinateur et les rapports de crash.
... View more
‎Dec 02, 2024
11:10 PM
Maybe your JSX file is not encoded in UTF-8, otherwise try using QuickScript.
... View more
‎Dec 02, 2024
03:52 AM
1 Upvote
Before drawing a rectangle, uncheck Bezier Path.
... View more
‎Dec 01, 2024
03:07 PM
1 Upvote
Tu dois confondre Tracé dynamique et Trait
... View more
‎Dec 01, 2024
08:54 AM
@Rick Gerard I also thought about renaming the files, but the problem is that then the sequence won't be synchronized with the camera anymore.
... View more
‎Dec 01, 2024
07:26 AM
You can try recreating the sequence using a script: In your project, select the last image of the sequence, then hold down the Shift key and select the first image of the sequence. Place the selected images into a new composition, and then run the script. var proj = app.project;
var thisComp = proj.activeItem;
var regex = /(.*?)_(\d+)\.jpeg/;
for (var i = 1; i <= thisComp.numLayers; i++) {
var layer = thisComp.layer(i);
var match = layer.name.match(regex);
var frameNumber = Number(match[2]);
layer.startTime = frameNumber * thisComp.frameDuration;
}
... View more
‎Nov 27, 2024
03:56 PM
1 Upvote
‎Nov 27, 2024
06:53 AM
1 Upvote
Go to: Effects > Manage Effects... uncheck Only Show Third-Party Effects and Search for CC RepeTitle, the effect might be disabled.
... View more
‎Nov 24, 2024
03:01 PM
What's the effect? It's likely a trial or unregistered version.
... View more
‎Nov 24, 2024
10:13 AM
Go to: Composition > Composition Settings...
... View more
‎Nov 24, 2024
09:04 AM
1 Upvote
Apply the expression to a 3D layer or remove value[2] if the layer is 2D: freq = 1;
amp = thisLayer.effect("Wig Amt - Position")(1);
result = wiggle(freq, amp);
[result[0],result[1]];
... View more
‎Nov 23, 2024
08:25 PM
1 Upvote
Using an expression selector with Scale set to 0%: animation 1 by 1: id = textIndex - 1;
time > id ? Math.min(Math.max(linear(time, id, id + .5, 100, -50), linear(time, id + .5, id + 1, -50, 0))) : 100 animation 2 by 2: g = [[0, 3], [1, 2]], d = 1, id = textIndex - 1;
gi = g.findIndex(a => a.includes(id));
if (gi < 0) 100;
else {
s = gi * d;
time > s ? Math.min(Math.max(linear(time, s, s + d / 2, 100, -50), linear(time, s + d / 2, s + d, -50, 0)), 100) : 100;
}
... View more
‎Nov 23, 2024
11:04 AM
Sometimes, it's better to spend a few minutes writing a script to automate repetitive tasks. Here's a very simple example: var selectedItems = app.project.selection;
if(selectedItems.length){
app.beginUndoGroup("Rename Selected Items");
for (var i = 0; i < selectedItems.length; i++) {
var item = selectedItems[i];
var newName = prompt("Selected Item:\n" + item.name , "");
item.name = newName ;
}
app.endUndoGroup();
}
... View more
‎Nov 22, 2024
01:50 AM
1 Upvote
A thread is already open on this topic: Script UI Panels cropped - i.e. Rift
... View more
‎Nov 22, 2024
01:37 AM
1 Upvote
Yen or Yuan symbol (Â¥) from japanese / chinese keyboard
... View more
‎Nov 20, 2024
06:49 AM
You can use QuickScript extension to quickly run a script: var proj = app.project;
var thisComp = proj.activeItem;
var selectedLayers = thisComp.selectedLayers;
app.beginUndoGroup("undo");
for (var i = 0; i < selectedLayers.length; i++) {
thisComp.layers.precompose([selectedLayers[i].index], selectedLayers[i].name, true);
}
app.endUndoGroup();
... View more
‎Nov 18, 2024
11:06 PM
In your code, I needed to add: pal.show(); Are you using the same AE version on all computers?
... View more