Motion Design Hub
3.83K subscribers
571 photos
303 videos
550 files
74 links
MGFX,Ae scripts and tools.
Download Telegram
//Sets above layer to parent of the selected layer #JS

function ParentAbove() {
app.beginUndoGroup("AR_ParentAbove"); // Begin undo group
var comp = app.project.activeItem; // Get active composition
var layers = comp.selectedLayers // Get selected layers
for (var i = 0; i < layers.length; i++){ // Loop through selected layers
if (layers[i] != comp.layer(1)) { // If not first layer in composition
layers[i].parent = comp.layer(layers[i].index-1); // Parent to above
}
}
app.endUndoGroup(); // End undo group
}
ParentAbove(); // Run the script


////////////////////////////////////////////////////
👇🏻join us👇🏻
@Ae_script_MGfx_tools
This media is not supported in your browser
VIEW IN TELEGRAM
Align selected keyframes to nearest frame
Keyframe Correct #js

👇🏻join us👇🏻
@Ae_script_MGfx_tools
Keyframe Correct.jsx
7.4 KB
Align selected #keyframes to nearest frame
Keyframe Correct #js

👇🏻join us👇🏻
@Ae_script_MGfx_tools