top of page
  • Writer's pictureRajmeet Singh Arora

Create Professional Text Animations in Premiere Pro with .mogarts: The Ultimate Guide

In this post, you will learn how to create .mogarts for Premiere Pro that will allow you to add professional text animations right inside of Premiere Pro.

What is a .mogart?

A Mogart is a pre-built animation template in Adobe After Effects that can be used in Premiere Pro. It allows users to quickly create and customize professional-looking animations without starting from scratch, saving time and streamlining the animation creation process.


Mogarts you will learn to make:

  1. Ramp Up Opacity

  2. Simple Typewriter

  3. Position Opacity

  4. Tracking/Flicker

  5. Glitch

 

1. Ramp Up Opacity

Preliminary step:

Create a null layer called "control" with slider controls as shown below:


Code:


Alt+left click stopwatch to open expressions window on property "Opacity" of text layer's transform and "Offset" of Range Selector 1:


Opacity:

var fadeCheck = thisComp.layer("Control").effect("Fade-Out")("Checkbox");

var outFrom = thisComp.layer("Control").effect("OUT-From")("Slider");

var outDur = thisComp.layer("Control").effect("OUT-duration")("Slider");

if(fadeCheck == 1){

linear(time,outFrom,outFrom+outDur,100,0);

}

else

{

100;

} -------------------------------||------------------------------
Offset:

var durIN = thisComp.layer("Control").effect("IN-duration")("Slider"); linear(time,0,durIN,-100,100);




1. Ramp Up Opacity


Preliminary step:

Create a null layer called "control" with slider controls as shown below:


Code:

Alt+left click stopwatch to open expressions window on property "Opacity" of text layer's transform and "Offset" of Range Selector 1:


Offset:

var durIN = thisComp.layer("Control").effect("IN-duration")("Slider");

linear(time,0,durIN,-100,100);


Opacity:

var fadeCheck = thisComp.layer("Control").effect("Fade-Out")("Checkbox");

var outFrom = thisComp.layer("Control").effect("OUT-From")("Slider");

var outDur = thisComp.layer("Control").effect("OUT-duration")("Slider");

if(fadeCheck == 1){

linear(time,outFrom,outFrom+outDur,100,0);

}

else{

100;

}












5 views0 comments

Comments


bottom of page