working with large amount of text

Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default working with large amount of text

    I am working with a large amount of text ( abound 9 pages word ), and flash
    became really slow . Is that anyway that I can compress text or made it faster?
    I used scroll box component and some text is missing ??

    Please help me, please !!!! hu hu hu

    Zeus : Master of PC ! Guest

  2. Similar Questions and Discussions

    1. large amount of data and low efficiency
      hi? we are trying to show a large amount of data selected from database(about 1000 records) in the mxml page. But we found it is very slow(about...
    2. Only show a certain amount of text on each page
      Is there a way in ASP to only show a certain amount of text that is pulled through from a database on each page? I have a vast amount of text but...
    3. How to display large amount of text in a dialog box?
      Hi, My application has a movable modal dialog box. I want to display a large amount of text (approx 3 pages) in the dialog box which (text) is...
    4. split large amount of data for loading
      Hi, I have a large amount of data (> 550.000 rows) to load which leads to problems with the transaction protocol. All the rows are compromised in...
    5. Performance issue while loading large amount of data
      Hello I am supposed to load large amount of data from SQL scripts and I have been wondering what is the best option: -frequent commits and no...
  3. #2

    Default Re: working with large amount of text

    Flash does not handle text very well. my advice is to throw the text into a popup or a frame or something outside of flash
    fasterthanlight Guest

  4. #3

    Default Re: working with large amount of text

    i think u can go for load variable option.
    just save ur texts in notepad file, individual file for each category

    then call those text to dynamic text box using loadvariable script
    find these tutorials


    [L=Two]http://comscience.gq.nu/flashTutor/FlashTutorial6.htm[/L][L=One]http://fl
    ash-db.com/Tutorials/loading/loadingData.php?page=1[/L]

    anishu Guest

  5. #4

    Default Re: working with large amount of text

    > i think u can go for load variable option.

    You can, but it won't make the text handling any faster.

    --
    ---------------------------------------
    [url]http://www.phageinteractive.com[/url]
    PhageInteractive Ltd.
    remove mm_ to mail
    ---------------------------------------
    'If I come across as a grumpy and twisted old man, it's just because I'm a
    grumpy, twisted, old man." - me
    ---------------------------------------


    Peter Blumenthal Guest

  6. #5

    Default Re: working with large amount of text

    You can creat a text area in flash, link it to an XML or HTML document, then
    format the XML document with a CSS.

    In the Flash file you will need to call for the CSS and HTML / XML with action
    script. I can show you an example but you will need to format it yourself.

    Example:::

    this.myText.label.selectable = false;

    this.myText.depthChild0._alpha=0; (set to one to enable the green glow)


    //stylesheet
    var ss = new TextField.StyleSheet();
    ss.load("news.css");
    myText.styleSheet = ss;


    //xml
    about = new XML();

    about.load("news.html");
    about.onLoad = function () {
    myText.text = about;
    }
    stop();

    I got that script from a site a while ago, I am not sure of the author but, it
    was posted publicly. (not taking credit for it)

    Anyway, I have used it over a hundred times and it works flawlessly.

    cVarz Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139