|
Post by Sergio secondo on Oct 18, 2013 9:55:57 GMT
Hello, with release 3.0 i should be able to insert any kind of standard html. This is great? i can do it with some objects but with radio buttons seems do not work. Moreover, if i want to set an "html" object using the function HTMLSet, how should manage the symbol (") inside the text? For instance: if (this_frame==10){ HTMLSet("my_ID_HTML","<SELECT name="point" width="40" style="width: 40px" > <OPTION value="1">1 <OPTION value="2">2 <OPTION value="3">3 <OPTION value="4">4 <OPTION value="5">5 </SELECT> "); Thanks
|
|
|
Post by Hippani on Oct 18, 2013 10:37:39 GMT
I think you want \" for a ".
|
|
|
Post by Hippani on Oct 18, 2013 10:38:49 GMT
Also \r\n is a return character. Try to make the code all one string rather than lots of lines. Also, did you forget </Option> ?
|
|
|
Post by Sergio secondo on Nov 6, 2013 15:08:20 GMT
Hello and thanks. The problem with \" is solved but i still do not know if it is possible to create "radio" buttons. The code below do not show the radio buttons but only the form structure and text. Regards
<form action=""> <fieldset> <legend>Linguaggi conosciuti</legend> HTML <input type="radio" name="linguaggio" value="html"/> CSS <input type="radio" name="linguaggio" value="css"/> JavaScript <input type="radio" name="linguaggio" value="javascript"/> </fieldset> </form>
|
|
|
Post by Hippani on Nov 6, 2013 15:41:52 GMT
Radio buttons are now available in v3.1, they are called "option input".
|
|
|
Post by sergio2 on Nov 15, 2013 14:05:48 GMT
Very good! I have used them. Thanks
|
|