import ctext.*; void setup() { size(300, 300); CText.setFont("Ziggurat32.vlw"); CText ctext = new CText(this, "drag"); ctext.showBoundingBox(true); ctext.setBoundingBoxStrokeWeight(4); ctext.setMouseDraggable(true); ctext.setSelectedColor(255); } void draw() { background(200); CText.drawAll(); }