How to record user interaction in Flash app?
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 scree开发者_运维问答n 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 usefulThanks
the automation package may be a good start. it only allows "playback" though. don't know about recording.
greetz
back2dos
The big picture:
- Detect any text changes in the field(s) watched. This is done using
onChanged
events. - Store info collected upon change in arrays or objects.
- On playback, Timer -> increment an index -> read from arrays.
精彩评论