# No hyperlink in textbox via exyernal text file

**URL:** https://forum.kirupa.com/t/no-hyperlink-in-textbox-via-exyernal-text-file/88880
**Category:** Uncategorized
**Created:** [May 3, 2005, 10:14am UTC](https://forum.kirupa.com/t/no-hyperlink-in-textbox-via-exyernal-text-file/88880 "2005-05-03T10:14:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jimmywoods](https://avatars.discourse-cdn.com/v4/letter/j/b5ac83/32.png) [@jimmywoods](https://forum.kirupa.com/u/jimmywoods)
#### Post date: [May 3, 2005, 10:14am UTC](https://forum.kirupa.com/t/no-hyperlink-in-textbox-via-exyernal-text-file/88880/1 "2005-05-03T10:14:21Z")

</div>

hi, i have followed the loading of the external textfile into my flash movie from this excellent site, and it works…but the hyper links don’t work.

my textbox actionscript is :

loadText = new loadVars();  
loadText.load(“work.txt”);  
loadText.onLoad = function(success) {  
if (success) {  
// trace(success);  
newsBox.html = true;  
newsBox.htmlText = this.myNews;  
}  
};

and my textfile is :

myNews=\<a href=“[www.bricktaylor.com](http://www.bricktaylor.com)” target="\_blank"\>Brick Taylor\</a\>\<br\>  
\<a href=“[www.qaommunications.com.au](http://www.qaommunications.com.au)” target="\_blank"\>Q and A Communications\</a\>

does anyone have any idea why the links don’t work in the flash movie ?

thanks for any help
