tags:

views:

36

answers:

2

I am looking for a way to capture the user interactions with a text input control in Flash over a period of time (not a screen cast)?
For example: If the user enter some text, then delete, then enter something, I would be able to store that interaction as it happens and replay that later. Any help would be extremely useful

Thanks

+1  A: 

the automation package may be a good start. it only allows "playback" though. don't know about recording.

greetz
back2dos

back2dos
A: 

The big picture:

  1. Detect any text changes in the field(s) watched. This is done using onChanged events.
  2. Store info collected upon change in arrays or objects.
  3. On playback, Timer -> increment an index -> read from arrays.
Makram Saleh