# Dynamically Text (links?)

**URL:** https://forum.kirupa.com/t/dynamically-text-links/25422
**Category:** flash
**Created:** [July 12, 2003, 4:46pm UTC](https://forum.kirupa.com/t/dynamically-text-links/25422 "2003-07-12T16:46:20Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![shakazulu](https://avatars.discourse-cdn.com/v4/letter/s/6a8cbe/32.png) [@shakazulu](https://forum.kirupa.com/u/shakazulu)
#### Post date: [July 12, 2003, 4:46pm UTC](https://forum.kirupa.com/t/dynamically-text-links/25422/1 "2003-07-12T16:46:20Z")

</div>

I did the Kirupa tutorial on Dynamically Scrolling text [http://www.kirupa.com/developer/mx/dynamic\_scroller.htm](http://www.kirupa.com/developer/mx/dynamic_scroller.htm) , the simple version. Is there a way to make links in this format using the .txt file

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 12, 2003, 4:54pm UTC](https://forum.kirupa.com/t/dynamically-text-links/25422/2 "2003-07-12T16:54:07Z")

</div>

yes  
just mark “Render text as HTML” on Flash Text tool Cp…  
links would be just like in HTML -

```php
<a href=link>link text</a>

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 12, 2003, 4:56pm UTC](https://forum.kirupa.com/t/dynamically-text-links/25422/3 "2003-07-12T16:56:30Z")

</div>

Ya i’m writing the tut for it as we speak lol. If you are NOT using a external TXT file read this  
[http://www.kirupa.com/developer/mx/links\_dynamictextbox.htm](http://www.kirupa.com/developer/mx/links_dynamictextbox.htm)

If you ARE using a external TXT file it is still easy. Select your dynamic text box. In the properties pannel you will see a button that looks like this “\<\>”. This is the “Render text as HTML” button. Now in your TXT file you can use HTML formating to do any number of things including making links.

In your TXT file

```php
yourtext= A <a href="http://www.sintax321.com">link</a> to my site.

```

would come out looking like this “A \<a href=“[http://www.sintax321.com](http://www.sintax321.com)”\>link\</a\> to my site.”
