$.text.size
Examples
function update() {
$.text.size = 16;
$.text.print($.w/2, 30, "size = 16");
$.text.size = 24;
$.text.print($.w/2, 60, "size = 24");
$.text.size = 32;
$.text.print($.w/2, 100, "size = 32");
$.text.size = 36;
$.text.print($.w/2, 140, "size = 36");
}