# Flash content mgt issue

**URL:** https://forum.kirupa.com/t/flash-content-mgt-issue/84818
**Category:** Uncategorized
**Created:** [March 30, 2005, 6:39pm UTC](https://forum.kirupa.com/t/flash-content-mgt-issue/84818 "2005-03-30T18:39:40Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mcpalmer](https://avatars.discourse-cdn.com/v4/letter/m/e495f1/32.png) [@mcpalmer](https://forum.kirupa.com/u/mcpalmer)
#### Post date: [March 30, 2005, 6:39pm UTC](https://forum.kirupa.com/t/flash-content-mgt-issue/84818/1 "2005-03-30T18:39:40Z")

</div>

Can anyone help? I’ve got problems uploading text into a flash site from a series of text files. The upload works fine into a test page but when i come to transfer the text files into a new folder to upload into the live page the text does not appear. A number of pics that are uploaded at the same time appear fine but no main text is visible. Menu button titles are also uploaded fine - these use the loadVariables function as opposed to LOADVARS method for the main text. Here is an example of the code to upload one piece of text:

```auto

wintext.loadTitle = function(){

var loader=new LoadVars();
loader.onLoad=function(done){
if(done){
titleFileLoaded();
} else{ 
trace("notloaded");
}
}; 
titleFileLoaded=function(){
wintext.createTextField("wTitle1", 10, 0, 0, 200, 20);
wintext.wTitle1.multiline = false;
wintext.wTitle1.wordWrap = false;
wintext.wTitle1.embedFonts = true;
wintext.wTitle1.text=loader.tTitle;
wintext.wTitle1.setTextFormat(tfmt);
wintext.loadBody();
};
loader.load(title1);
}

```

I think the problem might have something to do with creating textfields and the fact that when the site goes live, the actual main swf that uploads the text is itself loaded from an intro swf as opposed to being loaded directly on the test page. Would this be what is causing the problems here? What should i do to fix it? Is it an issue with the path to the txt files needing to be changed because variables are loaded into aswf called by another swf?

Any advice and help greatly appreciated.
