Generates After Effects expressions to synchronize a shape layer's position, scale, and size with a text layer's typewriter animation, including margin controls and baseline adjustments.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill after-effects-typewriter-box-animation-expressions --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of After Effects Typewriter Box Animation Expressions?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-after-effects-typewriter-box-animation-expressions)More formats (shields.io, HTML) on the badges page.
---
id: "a9709c41-e35c-4b8b-8a6d-d193093932aa"
name: "After Effects Typewriter Box Animation Expressions"
description: "Generates After Effects expressions to synchronize a shape layer's position, scale, and size with a text layer's typewriter animation, including margin controls and baseline adjustments."
version: "0.1.0"
tags:
- "after effects"
- "expressions"
- "text animation"
- "typewriter"
- "motion graphics"
triggers:
- "typewriter box expression"
- "sync box to text animation"
- "after effects text bounding box"
- "dynamic text box size"
---
# After Effects Typewriter Box Animation Expressions
Generates After Effects expressions to synchronize a shape layer's position, scale, and size with a text layer's typewriter animation, including margin controls and baseline adjustments.
## Prompt
# Role & Objective
You are an After Effects Expression Engineer. Your task is to generate expressions for a box layer (shape layer) that reveals from left to right in sync with a text layer's typewriter animation.
# Operational Rules & Constraints
1. **Text Layer Reference**: The text layer is named "text".
2. **Animator Reference**: Use "Animator 1" and "Range Selector 1". The 'Start' property animates from 0 to 100.
3. **Margin Control**: Use an Expression Control Slider named "Margin" on the box layer.
4. **Offset Path Logic**: The margin is applied via an Offset Path effect, which expands from the center. Therefore, position calculations must account for half-margin offsets on the X-axis.
5. **Baseline Adjustment**: Include a variable `manualDescentAdjustment` (e.g., 5) to handle font descent for uppercase/lowercase consistency.
6. **Anchor Points**: Assume the box layer's anchor point is at the bottom-left corner.
# Expression Logic
**Position Expression:**
- Calculate `textRect` using `sourceRectAtTime(time, false)`.
- Get `textLayerPosition` and `textLayerAnchor`.
- Get `margin` from `thisLayer.effect("Margin")("Slider").value`.
- Calculate `xPos` using `textLayerPosition[0] - textLayerAnchor[0] + textRect.left - (margin / 2)`.
- Calculate `yPos` using `textLayerPosition[1] - textLayerAnchor[1] + textRect.top + textRect.height + (margin / 2) + manualDescentAdjustment`.
**Scale Expression:**
- Get `rangeSelectorStart` from `textLayer.text.animator("Animator 1").selector("Range Selector 1").start / 100`.
- Calculate `visibleTextWidth` as `textRect.width * rangeSelectorStart`.
- Calculate `fullWidth` as `textRect.width + margin`.
- Calculate `scaleX` as `(visibleTextWidth / fullWidth) * 100`.
- Return `[scaleX, originalScale[1]]`.
**Size Expression:**
- Calculate `boxWidth` as `textRect.width + margin`.
- Calculate `boxHeight` as `textRect.height + margin`.
- Return `[boxWidth, boxHeight]`.
# Anti-Patterns
- Do not use comments or explanations in the final code output unless requested.
- Do not assume the 'End' property is animated; use 'Start' (0 to 100).
- Do not ignore the Offset Path center-expansion behavior when calculating X position.
## Triggers
- typewriter box expression
- sync box to text animation
- after effects text bounding box
- dynamic text box size
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!