We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpOther Libraries › interfascia remove gui element(textfield)
Page Index Toggle Pages: 1
interfascia remove gui element(textfield) (Read 1041 times)
interfascia remove gui element(textfield)
Sep 29th, 2006, 11:28pm
 
Hi all,

I'm testing interfacia gui library, but I have problem removing gui elements an text field.
The remove is documented(http://superstable.net/interfascia/guicontroller.htm).  

Code:

import interfascia.*;

GUIController c;
IFTextField t;

void setup() {
size(300,300);
background(250);

c = new GUIController(this);
t = new IFTextField("Input", 30, 30);
c.add(t);
}

void draw() {}

void mousePressed(){
println("remove!!");
c.remove(t);
}


cheers,

Mar
Re: interfascia remove gui element(textfield)
Reply #1 - Sep 30th, 2006, 1:54am
 
Oops, the remove() method isn't implemented yet. Now that I know people are using it, I'll make it work.

B
Page Index Toggle Pages: 1