Default value for text entry box

Hi,

I am creating a small program to calculate something. I want to display default value for the text entry box. Can you help me?

I am able to calculate using Javascript but do not know if any feature is there to display default value. Example: Text entry box value displayed by default is 5000. User will change it as per the requirement and calculated answer will change if hit enter or clicked submit button.

Thanks,
Shri

Hi Shri,

You can add the following script to slide On Load event to set default value for a text entry box:

prez.object('text entry name').text('default value');

Regards

Thanks ToanLS. It worked.