For those of you that own a dev license and make good use of the ui html panel, I have some useful information for you.
have you ever created a bot that was loaded with ui elements? Maybe to the point that space became an issue? Here is a time and space saving tip for you.
Instead of using labels to explain the purpose of of an input box, why not place the instructions inside the box? You can do this with a simple addition to the attribute area of the input box. The best part is it will be coded to clear when you click on it to insert the desired data. The code is simple and uses just a small line of javascript. Here is an example:
<input variable="#un" fillwith="value" type="text" id="username" value="Insert Username Here" size="30" onfocus="this.value='';return false;">
Now here is a little known feature:
If you have the default form fields filled out in the options section, and have used those variable names in you script, they will pre-load in the ui html panel ui elements.
John












