# How can i adapt this Kirupa tutorial?

**URL:** https://forum.kirupa.com/t/how-can-i-adapt-this-kirupa-tutorial/107923
**Category:** Uncategorized
**Created:** [April 20, 2004, 7:52am UTC](https://forum.kirupa.com/t/how-can-i-adapt-this-kirupa-tutorial/107923 "2004-04-20T07:52:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![burns](https://avatars.discourse-cdn.com/v4/letter/b/e9a140/32.png) [@burns](https://forum.kirupa.com/u/burns)
#### Post date: [April 20, 2004, 7:52am UTC](https://forum.kirupa.com/t/how-can-i-adapt-this-kirupa-tutorial/107923/1 "2004-04-20T07:52:36Z")

</div>

Hi,

I have managed to complete the following tutorial [[COLOR=DarkOrange]Loading Text from External Sources[/COLOR]](http://www.kirupa.com/developer/mx/multiple_dynamictext.htm) and while it works fine, i would like to adapt it to “load” the text from the external file when the movie loads instead of having to click on a button, this is the AS that needs to be changed:

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

i’m guessing that you have to change it to frame loaded or something similiar?

Any ideas please

cheers
