How to control text entry box width with javascript?
I'm using variables to position text entry boxes. I've worked out how to shift them right/left but can't control their width, though I can do so for regular smart shapes:
var mybutton = document.getElementById("Text_Entry_Box_2c");
mybutton.style.left = textLeft2 + 'px'; // this works
mybutton.style.width = textWide2 + 'px'; //this doesn't work
Has anyone been able to do this?
