A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Help with loading text file (loadvars). Works in pc but no in internet [NOT SOLVED]

  1. #1
    Member
    Join Date
    Mar 2006
    Posts
    48

    Help with loading text file (loadvars). Works in pc but no in internet [NOT SOLVED]

    Hey guys
    I have this script in my flash

    Code:
    on (release) {
    
        loadText = new LoadVars();
        loadText.load("http://www.djgdevelop.com/cgl/templates/cgl/images/map/LAX.txt");
        loadText.onLoad = function(success) {
            if (success) {
                // trace(success);
                _parent.newsBox.html = true;
                _parent.newsBox.htmlText = this.myNews;
            }
        };
    }
    It loads a small text with this info:
    HTML Code:
    myNews=<font size="16px" color="#FFFFFF"><b>Tampa, FL</b></font>
    <b>(ATL)</b>
    402 East Oak Avenue Suite 204 Tampa, FL 33602-2704
    T. 813.221.5060                F. 813.221.

    Everything works fine in my pc, I change the URL and stuff and nothing, the server is just "reading'. Both files are together in the same folder.

    What should I do? Thank you in advance

  2. #2
    Senior Member whispers's Avatar
    Join Date
    Mar 2001
    Location
    CFA2h (respect the HEX)
    Posts
    12,756
    PHP Code:
    loadText = new LoadVars();
    loadText.load("http://www.djgdevelop.com/cgl/templates/cgl/images/map/LAX.txt");
    loadText.onLoad = function(success) {
        if (!
    success) {
            
    trace("Cant find data");
        }else{
            
    //_parent.newsBox.html = true;
            //_parent.newsBox.htmlText = this.myNews;
            
    trace("NEWS: "+this.myNews);
        }
    }; 

    seems to load fine for me...

    what is the other URL you are trying to load? I would also NOT add those linebreaks and extra spaces in the text file.. use HTML tags to format....or CSS

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center