Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

The Blinking cursor typewriter console effect stops blinking

Community Beginner ,
Oct 17, 2024 Oct 17, 2024

After applying the effect to a text layer and removing the animation slider keyframes, the blinking effect stops disappears.

 

The workaround would be to leave a single keyframe at 100.

 

Reason I want to remove the keyframes is to add an opacity fade on as opposed to typed on and keeping the blinking cursor.

 

Is this a glitch or intended?

402
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Oct 17, 2024 Oct 17, 2024
LATEST

Yes, you need at least one keyframe on the Animation slider, otherwise it generates an error.

 

screenshot.png

 

You can add a cursor to your text using this expression on the source text property:

i = effect("interval")(1);
t = timeToFrames(time) % (i * 2);
t < i ? value + '_' : value // you can replace the underscore with any symbol

 

  1. create a text a layer
  2. add a slider control and name it interval
  3. add the expression to the source text property

 

screenshot.png

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines