Alex V Hi, For my project, I need to create a form to enter the user's name. Is it possible to create and use a text box where the user can enter his text? Of course, using coding for that. Thanks
Angelo S Hello Alex, of course you can. Just use a smart object to place some custom HTML and javascript code. You can save the entered value in localStorage.
Alex V All good, but this method doesn't work for epub. Could you tell me where to look for a solution?
Angelo S It depends on the EPUB reader. Some of them, e.g. iBooks if I recall correctly, have problems showing the keyboard with form inputs. You could try using contenteditable attribute https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Editable_content
Alex V Super!!! This method works perfectly! I'm starting to test! Block «text», coding editor of the text: <p contenteditable = "true">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> It’s realy working.