How to record set a text to the text field inside the Flash object?
To set a text value in the flash text box follow below Steps: • While recording click inside the text box. • This will record the fireEventOnObject with the action as “click”. • Continue with the recording process to and type in the text inside the text box and proceed with further recording. • Once the recording is completed, the recorded action over Flash object fireEventOnObject(“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″,”object”,”372″,”380″,”click”,”NONE”) To set a text in the text field, change the following properties in the above function, change click as settext change NONE as value to be set in the text field. Modified functiona call is, fireEventOnObject(“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″,”object”,”372″,”380″,”settext”,”QEngine”) where the click action is changed to settext and the message “NONE” is changed to Value to be set in the text field.