# Typewriter Effect (Right Alignment)

**URL:** https://forum.kirupa.com/t/typewriter-effect-right-alignment/77467
**Category:** flash
**Created:** [January 27, 2005, 1:32pm UTC](https://forum.kirupa.com/t/typewriter-effect-right-alignment/77467 "2005-01-27T13:32:05Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![alwaysdrifting](https://avatars.discourse-cdn.com/v4/letter/a/a8b319/32.png) [@alwaysdrifting](https://forum.kirupa.com/u/alwaysdrifting)
#### Post date: [January 27, 2005, 1:32pm UTC](https://forum.kirupa.com/t/typewriter-effect-right-alignment/77467/1 "2005-01-27T13:32:05Z")

</div>

I’m using a typewriter effect for some text. It works fine when the text field is left justified and text appears from left to right. If the field is justified to the right, the text appears from right to left. If I have the text field justified to the right, is it possible for me to have the text appear from **left to right**?

```auto
function TextEffect(location){
        myText = "";
        type = 0;
        this.onEnterFrame = function() {
                myText = location;
                description.text = myText.substr(0, type);
                type<myText.length ? type += 2 : delete this.onEnterFrame;
        };
}

```

Thanks
