check =show editbox
uncheck=hidden editbox
-----------------------------------------------------------------------
w = new Window ("dialog");
check1 = w.add ("checkbox", undefined, "Check");
var Fsize_t= w.add('edittext {properties: {name: "Fsizet"}}');
Fsize_t.preferredSize.width = 100;
Fsize_t.text = "hidden"
w.show();
checkbox =show editbox
Professional AI Audio Generation within Adobe Premiere Pro - Download Free Plugin here
WunderPaint - A complete design studio that runs entirely in your browser - Local & WordPress Plugin
Re: checkbox =show editbox
Code: Select all
Fsize_t.visible = false
check1.onClick = function() {Fsize_t.visible ^= 1}