Loading...
Logo
Processing Forum
Hi,

I am using controlP 5 library to display text or rather a paragraph of words or more (1000 words).

I keep getting random arrayIndexOutofBoundsException error when using setText(). here's my code....


Copy code
  1. public void controlEvent( ControlEvent theEvent ) {
      if( theEvent.isGroup() ) {
        eventValue = int(theEvent.group().value() ); 
        println("eventValue before display "+eventValue);
    }


     textArea_3 = controlP5.addTextarea ("T3","T", (int)(width* 0.24), (int)( height * 0.045 ), 1100, (int)(height * 0.135) );

  2. sPost = ""+post.get(eventValue); 
    textArea_3.setText( sPost );


Hope you can advise, how I should solve this problem? May I know if there are other similar library to controlP 5?


AK