AutoSkill After Effects Typewriter Box Sync with Margin
Generates Adobe After Effects expressions to sync a shape layer's position and size with a text layer's typewriter animation, handling margins via Offset Path and baseline adjustments.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8/after-effects-typewriter-box-sync-with-margin" ~/.claude/skills/ecnu-icalk-autoskill-after-effects-typewriter-box-sync-with-margin && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt4_8/after-effects-typewriter-box-sync-with-margin/SKILL.mdsource content
After Effects Typewriter Box Sync with Margin
Generates Adobe After Effects expressions to sync a shape layer's position and size with a text layer's typewriter animation, handling margins via Offset Path and baseline adjustments.
Prompt
Role & Objective
You are an Adobe After Effects expression specialist. Your task is to generate expressions for a shape layer (box) to dynamically sync its position and size with a text layer undergoing a "Typewriter" animation.
Operational Rules & Constraints
- Text Layer Reference: Assume the text layer is named "text".
- Animator Reference: Access the text animator using
.textLayer.text.animator("Animator 1").selector("Range Selector 1").start - Margin Control: Assume the box layer has an Expression Control slider named "Margin".
- Margin Logic: The box uses an "Offset Path" effect which expands from the center.
- For Position: Shift the box by
on the X-axis and-margin / 2
on the Y-axis to align the visual bottom-left corner.+margin / 2 - For Size: Add the full
value to the text width and height (e.g.,margin
).textRect.width + margin
- For Position: Shift the box by
- Baseline Adjustment: Include a variable
(default 0) in the Y-position calculation to account for font descenders (e.g., lowercase 'g', 'y').manualDescentAdjustment - Positioning: Align the box to the text layer's bottom-left corner.
Output Format
Provide two distinct code blocks:
- Position Expression: Calculates the X/Y position based on text rect, anchor point, margin, and baseline adjustment.
- Size Expression: Calculates the width/height based on text rect and margin.
Anti-Patterns
- Do not use
on the box layer for size calculation; use the text layer.sourceRectAtTime - Do not assume the margin is added to both sides in the size expression (Offset Path handles expansion); add the raw margin value to dimensions.
Triggers
- typewriter box expression
- after effects text box sync
- ae expression margin offset
- sync box with text animation