A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: Can you tell me if this works?

  1. #1
    Senior Member
    Join Date
    Aug 2003
    Posts
    122

    Can you tell me if this works?

    I am having an issue with my scrolling text... It seems as though the bottom half of the scrollbox and handle are locked...Is that what you see? If so, any suggestions on how to fix it?

    Here it is and thanks

    got a tight deadline, so this would really help!!!

    thanks

  2. #2
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    Everything seems to be working fine here!

    In case...

    PIV - ME - IE5.5 - CABLE CONNECTION

  3. #3
    Senior Member
    Join Date
    Aug 2003
    Posts
    122
    you are always the super help....

    what I am seeing is at this line

    "with Jim Callahan recording and mixing their first album, Mountain"

    that line and all lines above are selectable, and scrollable...below that line the scrollbar will not go down and the rest of the text is not selectable.

    It previews fine in flash, not ok in golive, not ok in IE 6.0

    maybe I messed up the scrollable area, orsince it works, what is incompatable on my end?

    thanks again....I'd just hate to upload the whole site and have others experience this issue.

  4. #4
    Senior Member
    Join Date
    Aug 2003
    Posts
    122
    so oddly enough it previews for me too... It must just be my computer.....thanks.

    but if you are reading this, I have two minor questions....

    one, do you know of a tutorial that shows how to set up a few buttons, each of which can load text into that very same textbox while unloading the one txt file that is in it (IE swapping)? Or just a script to add to the buttons?? And is there a simple script to add to this code to give it html functionality?

    loadText = new loadVars();
    loadText.load("biography.txt");
    // creating the loadVarsText function
    loadText.onLoad = function() {
    scroller.text = this.biographytext;
    };



    thanks so much

  5. #5
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    Why is that text selectable anyways? Do you need it to be?

    Am I glad I'm still on IE5.5... So many problems reported with 6!

    You don't need to unload a previous text file if you load a new one in the same textfield, it'll replace it automatically...

    Don't know of any specific tutorials, but did do this example when
    MX came out (some 18 months ago!)... Might help!
    Last edited by oldnewbie; 12-05-2004 at 02:23 AM.

  6. #6
    Senior Member
    Join Date
    Aug 2003
    Posts
    122
    I will dive into that...thanks a bunch as always

  7. #7
    Junior Member
    Join Date
    Jan 2006
    Posts
    13
    Quote Originally Posted by Scarface1856
    loadText = new loadVars();
    loadText.load("biography.txt");
    // creating the loadVarsText function
    loadText.onLoad = function() {
    scroller.text = this.biographytext;
    };
    try this instead...

    Code:
    loadText = new loadVars();
    // creating the loadVarsText function
    loadText.onLoad = function() {
        scroller.text = this.biographytext;
    };
    
    loadText.load("biography.txt");

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