Blogging within a flash page.

eloc_86

New Member
So I am trying to finish a site for a customer that is made with flash. What I want to do is set it up so that he only has to edit a txt document which would then change the text within the SWF. that sounded confusing...

Heres the link www.lundstromdesign.com/hangup.html

How do I link to a html or txt file and view it within my SWF?
 

eloc_86

New Member
I figured it out

You need to create a txt file and then use this code to get it

myData = new LoadVars();
myData.onLoad = function() {
myText_txt.text = this.myVariable;
};
myData.load("myText1.txt");
 
Top