(noob question)
Is it possible to create text boxes that, when demo’d, you can type into?
Would you have to put in your own custom HTML for this?
Here’s a quick tutorial for forms: http://www.tutorialspoint.com/html/html_forms.htm
This would require that you edit the Inner HTML of a text or shape element.
That’s a great link Daniel, I’ve never been there before – thanks.
@DanSimerman, you can also use…
hypeDocument.getElementById(‘myTextBox’).contentEditable = true;
for a Hype text box
1 Like