Text Area can not show a mass of chars

I create a textArea, and assign million chars to the Text property. The flex application is freezing for minutes.
Could some one give me an advice to make textArea display mass chars effectively, or is there a way to append text at the end of the textarea instead of displaying mass chars one time?
I use Flex SDK 3.4 and Flex Builder 3.

You will probably have to implement some form of virtualization. In other words, only display the section of text that is currently visible. This is likely to be challanging with the standard text controls, so you I imagine you will need to develop something custom. The text layout framework would probably provide the best starting point:
http://labs.adobe.com/technologies/textlayout/
Note that it is player 10 only.

Similar Messages

  • Istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    Hi
    So these are EXS24 Sampler Instruments?
    If yes... the .exs Instrument files need to go in
    Library:Application Support:Logic:Sampler Instruments
    Or
    <User>:Library:Application Support:Logic:Sampler Instruments
    CCT

  • Lightroom 4.1 can not show text correctly

    lightroom 4.1 can not show text correctly when publish in PDF and blurb format
    the text can be show correctly in JPEG format
    but lightroom 4.0 can show correctly with the same book.
    i cant publish my book on blurb now

    I don't think LR4 adjustments can be directly sent to CS4, because CS4 cannot interpret LR4's new processing engine.
    I think you have to use Edit In... and create a TIF or PSD and send those to CS4

  • Can not show applet in jeditorpane

    Hi,
    I want to load a Web page which contains an applet into a JeditorPane, but I found the applet can not show in the editorpane.
    I use the following statement to create a JEditorPane
    JEditorPane htmlpane = new JEditorPane("http://sulu.informatics.indiana.edu/6S/network/");
    The static text is showing, but the applet graph is always missing. Do I need to do something else? Please help me!

    JEditorPane's abilities to show HTML are very limited. It doesn't support CSS, JavaScript, applets and many other things. You'll need a real browser component for that.

  • SetText() works for one text area but not for another

    I am student new to java so forgive me if I'm making an obvious mistake. I have a GUI with 3 tabs. Two tabs have a text area in each in them and an action listener tells the textarea what to print. The problem is one text area works and the other doesn't. they are declared in the same way so I can't see why the problem occurs.

    If you have copied and pasted code for the second one, it is possible that you are setting text for the first text area at both the places. Check if you are calling the setText method on both the text areas and not the same one twice.

  • Payment Order, Payment transaction area can not be posted

    Hi,
    While creating a Payment order for a current account, we are recieving the following error:
    'Payment Order, Payment transaction area can not be posted' and 'Error determining the number range'.
    As a result Payment order is not getting created.
    Number range interval has already been checked and assigned to the relevant Payment Transaction Area.
    Please suggest the possible options to look for the solution.
    Thanks
    Shefali

    Hi Shefali ,
    From the description you gave, it looks like the problem is related to number range only . Can you please double check if the number range you are mentioning is assigned to same Payment Transaction Area which is being used .
    Also if possible post the long text with message ID if available.
    Regards
    Ravi

  • My Startup Disk can not show in Finder.

    My Startup Disk can not show in Finder.but it can be used in OSX normally.
    So can I put it back to Finder?

    If the startup disk is for Mac OS 9, neither MacBook nor PowerMac G5 can boot into 9. Only the PowerMac G5 can use Mac OS 9 in Apple menu -> System Preferences -> Classic.
    Please be more detailed what sort of Startup Disk you are talking about, which operating system, and which machine this is a problem with.

  • Why are contacts not showing up after added

    why are contacts not showing up after added. Don't show up after they added when I want to select then for a new email

    I am replying to my post with the hopes that someone can please help me!
    I am adding new episodes, but they don't show up on the main page. The most recent one to show up is from 10/29/07. I added a new episode today, but it doesn't appear on the main page (before you subscribe). Is there a limit to the # of podcasts that can appear on the main page? Has anyone else had this problem? All the relevant info is above.
    Your help is much appreciated.
    Message was edited by: oneness_podcaster

  • I am a Taiwanese. My iPod nano can not show the lyrics

    My iPod nan can not show the lyrics.It will be like"ifhfjdghuiadhghjkbdbdjkbdgdnkjn589d567g564h54df+.......................... "
    Why?
    How to solve it?

    Right->click on these tracks in iTunes and choose Get Info.  Then head to Lyrics tab.  Are the correct lyrics listed there?
    B-rock

  • Itunes can not show chinese characters.

    My Itunes can not show chinese characters, they are all blocks, while I can re-type in the chinese name of the song in Itunes, then it works.
    The same as Japanese, some time it can show Jap, while sometime can not. How can I solve this problem. My computer is Mac system

    Do you have such problem only with Chinese characters?

  • Why this tree can not show on the Applet?

    hi, all, I try to create a java Applet show a tree, this following code has no error, but the tree can not show on the Applet, can any one tell me why? thanks!
    <code>
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.dnd.*;
    public class AppletApp extends Applet {
         Date myDate;
         protected JTree m_tree = null;
         protected DefaultTreeModel m_model = null;
         protected JTextField m_display;
         public void init() {
         public void paint(Graphics g) {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("root");          
              DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("node1");          
              root.add(node1);                    
              node1.add(new DefaultMutableTreeNode("sub1_1"));                         
              node1.add(new DefaultMutableTreeNode("sub1_2"));                                        
         public static void main(String arg[]) {
              JFrame myFrame = new JFrame();          
              Container contentPane = myFrame.getContentPane();
              contentPane.setLayout(new GridLayout(1,2));          
              AppletApp app = new AppletApp();          
              contentPane.add(new JScrollPane(app), BorderLayout.CENTER);     
              myFrame.addWindowListener (new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              app.init();
              app.start();
              myFrame.setSize (400,400);                              
              myFrame.setVisible(true);          
    </code>

    Not quite sure what you are trying to do, but if you move the code from the paint() method into the init() method (then delete your paint() method), then add one new line to the init() method (after the code you just inserted) that reads:
    getContentPane().add(new JTree(root));
    - You should at least see a tree!

  • My iphone 5 for some reason can receive calls, send & receive texts but can not call out

    My iphone 5 for some reason can receive calls, send & receive texts but can not call out

    I am not sure if this issue is going to help you but lets give it a try.
    I know that where im from, which is the Netherlands, I am not able to sent e-mails from my iPhone or any other mobile device by using 3G or a random WIFI acces point. The provider only allowes you to sent e-mails when you are connected to a network of there own. Which means if you have provider "101" and your email settings are set up for this provider in your iPhone but your using the network of a friend of yours which is provider "202" you cannot sent emails from his network. Though you can receive them you may not sent.
    As I said, I am not aware if this issue is the same for you totaly depents on the country and provider your using.

  • Can not show Address of BP in XL reporter

    Hi all!
    I don't undersatnd why i can not show address of BP in XL reporter although i have already entered these information for address.
    Thanks!

    If you use the report composer to create your report:
    Drag the business partner object into the report view an then make right-click --> display more attributes and than choose the adress fields you want to display
    Hi !
    I have already used this way before i create new thread but Address is stll not showed. You can test in your Database
    I'm using SAP B1 2007A Pl42
    Thanks!

  • HT201210 my iphone can not show home scene, keep showing plug in to the itunes

    my iphone can not show home scene, keep showing plug in to the itunes, tried restore buy fail, error 3941

    update to latests version of itunes if you have
    then uninstall it
    reboot and resintall

  • HT4059 When purchased on iPhone why are they not showing up on my iPad

    When purchased on iPhone why are they not showing up on my iPad

    Have you got automatic downloads turned on in Settings > Store on the iPad ?

Maybe you are looking for

  • Can't receive Gmail in Mac Mail - just started

    I can't seem to get any of my imap Gmail in my Mac Mail account - just started happening. Connection doctor is ok, but the little spinner just spins and spins next to my Gmail acct and nothing downloads. Have access through Time Warner Roadrunner. I

  • Fiddling with volume slider and sound quality

    In an attempt to bypass the infamous volume cap that plagues iPods sold in the EU, in the past I fiddled with the volume slider of many of my MP3 tracks, either directly or via third party applications (such as euPod). Afterwards I have changed my mi

  • Access denied error in feature receiver code when deploying-activating custom timer job feature

    hi, am creating a sp timer job for a updating a list.when i write this code in a  the event receiver featureactivated  method, and when i activate this feature , am getting access denied error. but, when i deploy this timer job [ without feature rece

  • Problem while moving Web Dynpro code from one env to other

    Hi Experts, I have developed some Web Dynpro program in Development Environment. The Web Dynpro program uses BAPI and gets data from R/3.  I have to transfer the Web Dynpro program to Quality environment. When I am trying to compile, I am getting fol

  • ICLOUD PROBLEM!!!  IM A NEWBIE...HELP!!!

    Okay, here goes.....I am not "savy" with computers or technology, so please answer like I am a three year old when responding:) I finally updated my iPhone 3GS with the 5.1 update.  I activated iCloud...and now my wife's phone and my phone share cont