You use the LoadVars object
eg.
something like this( very basic, Google Flash +LoadVars
Let's say you have a .txt flie which you update using Forms and PHP, the contents shold look like this( no linebreaks):
news=27.08.2004 Breaking news ...
Flash:
As a frame action:
// Create a new LoadVars object
myLoadVars = new LoadVars();
// Load an URL (must exist on same domain as the movie)
myLoadVars.load( url);
// Check if all goes well
myLoadVars.onLoad = function( success) {
if (success == true) {
// Output text to the Output window( you could easily
// take the myLoadVars.news into a dynamic text field).
trace( myLoadVars.news);
}
}
best regards
Thomas