|
-
External .txt loader won't load
I have a whole flash website that calls upon external swf depending on the section. There is one section that has a txt scroller that pulls an external txt. It works fine when it's isolated and opened directly, when I try to view it as part of the whole website the scrollbar is there and scrolls but no text shows up.
I'm at a loss.
Assuming it was an error on my part I've even gone so far as to buy a prebuilt scroller figurin that would work and I get the same issue.
lv = new LoadVars();
lv.onLoad = onLoadCallBack;
// send and load variables
lv.load("dynamicfield.txt");
// onLoad Callback
function onLoadCallBack(succes)
{
// if succes
if(succes)
{
// trace variables
page.page.htmlText = this.thetext;
}
else
{
trace("Loading Error!!");
}
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|