Adobe After Effects Tutorial: Typewriter Text Effect with Blinking Cursor

Adobe After Effects Tutorial: Typewriter Text Effect with Blinking Cursor

Rizat Graphics

2 года назад

134,619 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Rizat Graphics
Rizat Graphics - 12.02.2022 21:53

X = text.sourceText;
F = Math.round(time * BlinkingSpeed % 1);
L = X.length;
T = time * Speed - StartAt * Speed;

Cursor = " ";
if (F==1 | T>0) Cursor = "|";
if (T>=L) Cursor = " ";
if (T>0) X.substr(0,T) + Cursor
else Cursor

Ответить
Ewan Mcloughlin
Ewan Mcloughlin - 25.09.2023 14:31

this didn't work for me? not sure what I did wrong but I copied it exactly

Ответить
Pictorshop
Pictorshop - 13.09.2023 07:39

I followed the exact same way in After Effects 2020 but with no result

Ответить
Walter Otto
Walter Otto - 16.08.2023 21:03

thank you again

Ответить
Ken Nguyen
Ken Nguyen - 13.08.2023 23:32

good job

Ответить
Badar Tagar
Badar Tagar - 26.06.2023 21:40

Excellent

Ответить
CLOUDY
CLOUDY - 21.06.2023 18:59

" "

Ответить
Rohan Mahajan
Rohan Mahajan - 17.06.2023 17:22

this is applicable when you only want to do the type writing effect and when its at the start of the comp, what should we do when we want this effect later in the comp. because it starts from the 0 second only i don't know how to change it

Ответить
Polich
Polich - 06.06.2023 00:34

hi! great tutorial :) I'm only wondering -- is there a way to change the cursor's colour, without changing the colour of the text?

Ответить
RenMan2099
RenMan2099 - 04.06.2023 23:05

I create this script so you just need to add these two sliders to the text layer "Typing Speed" and "Stop Point", the stop point goes from 0% to 100% of the length of the text:

X = text.sourceText;
L = X.length;
T = time * effect("Typing Speed")("Slider") * 10 - 0 * 10;

StopPercent = effect("Stop Point")("Slider") / 100;
StopPoint = Math.round(L * StopPercent);

Cursor = "|";
if (Math.round(time * 2) % 2 === 0) {
if (T >= StopPoint) {
Cursor = " ";
}
}

if (T > 0 && T <= StopPoint) {
X.substr(0, T) + Cursor;
} else {
X.substr(0, StopPoint) + Cursor;
}

Ответить
Vinicius Salles
Vinicius Salles - 28.05.2023 22:52

thank you man!

Ответить
FaisalAlam Apu
FaisalAlam Apu - 17.04.2023 14:45

great tutorial. Can you please tell me if there is any way to change the size of the cursor only? I want to make it a little bigger.

Ответить
민
- 04.04.2023 08:57

Hello now the text is written in the middle, is there a way to start from the left?

Ответить
iuliia Iatsenko
iuliia Iatsenko - 21.03.2023 19:27

Hello! I can't find how to copy the expression.. You said 'in comment section', but where is it?

Ответить
Lune
Lune - 17.03.2023 21:31

Merci!

Ответить
OPTIMUS
OPTIMUS - 17.03.2023 07:27

Cool

Ответить
Linh Pham
Linh Pham - 17.03.2023 02:16

This tutorial is simple and amazing help. Thank you!

Ответить
Trnkator
Trnkator - 13.03.2023 18:01

Amazing. Thank you.

Ответить
littleghost82
littleghost82 - 10.03.2023 13:37

I made some small changes so it looks and works the way I need it but I'm stuck with one question:
Is it possible to keep the cursor blinking after the text has appeared?

Ответить
Rapps Gamerz
Rapps Gamerz - 23.01.2023 10:40

Can you add text Rewrite text option

Ответить
Nicholas Faithful
Nicholas Faithful - 10.01.2023 17:26

Thank you. Can I adjust so it reveals a word at a time rather than each letter? Is this even possible using this method?

Ответить
Darkstrand Visuals
Darkstrand Visuals - 27.12.2022 06:13

God bless your soul. Absolute genius

Ответить
CainIwakura Ch. カイン岩倉
CainIwakura Ch. カイン岩倉 - 07.12.2022 20:46

How to change to typewriter to start typing from left allign not from center align.

Ответить
Tushar Sharma
Tushar Sharma - 04.12.2022 17:42

It's not working after I applied all scripts and techniques

Ответить
dino
dino - 27.11.2022 17:59

Thanks man, any way I can do an erase (backspace) effect at the end after writing my text?
Ex: Hello World , (erase or backspace the letter o with the cursor) so I'm just left with Hell World.

Basicly reverse the effect in this tutorial.

Ответить
Unreal Engine Rus/Eng
Unreal Engine Rus/Eng - 19.11.2022 22:21

Wow, so easy !!!
THANK YOU MAN !

Ответить
Luis Osorio
Luis Osorio - 14.09.2022 03:15

Is there a way when finishing the animation to still make the blinking cursor to continue blinking without it disappearing?

Ответить
Maria Bordeaux
Maria Bordeaux - 30.08.2022 09:13

it says for me "missing ) after argument list"

Ответить
Camila Martinucci
Camila Martinucci - 27.07.2022 21:15

Hi! Thanks for the tutorial, very useful. Is there a way to keep the cursor blinking the whole time, not just at the beginning?

Ответить
Chicken Productions
Chicken Productions - 29.06.2022 22:37

Press ALT on the Source text of the text. Just paste this no need for adjustment layer. If you want it to be faster just change the 7's

X = text.sourceText;
F = Math.round(time * 2 % 0);
L = X.length;
T = time * 7 - 0 * 7;

Cursor = " ";
if (F==1 | T>0) Cursor = "|";
if (T>=L) Cursor = " ";
if (T>0) X.substr(0,T) + Cursor
else Cursor

Ответить
Kinza Kazmi
Kinza Kazmi - 13.06.2022 13:32

how can I change the thickness or width of the blinker?

Ответить
supr7meklee
supr7meklee - 11.06.2022 18:14

tysm :)

Ответить
Jecenia Gonzalez
Jecenia Gonzalez - 08.06.2022 08:26

for some reason instead of the “I” it’s “kk” how do i go about fixing this?

Ответить
Digital Magician - VFX & Mograph Tutorials
Digital Magician - VFX & Mograph Tutorials - 02.06.2022 13:05

It was really amazing. It helped me to do a paid project and earn some money. Thanks a lot for sharing :-)

Ответить
warlockzach
warlockzach - 12.05.2022 12:06

Hello, somehow, having italicised text doesn't work with this effect.

Ответить
بالعربي Top Trending
بالعربي Top Trending - 19.04.2022 08:14

Hi
Thank you for the tutorial
But I have a question:
How to make the blinking cursor start from right to left? for (Arabic)
Ty ♥

Ответить