Search code examples
apache-flexactionscript-3videorecordflash-media-server

How to record the screen application in flex (Fms)?


"Hi!

I have an application with webcam, chat and more, and i need to record the screen aplication in server, for the client not have to upload the result. Can some one help me?
Thanks"

What I want is to know how to record the images shown in the Flex application (only inside the swf).


Solution

  • Check out the same question over at Can Flex/Flash Record the Screen?, however I disagree with them. You can render the contents of a movieclip into a bitmap image. The stage is one such object you can render, therefore theoretically you could constantly be rendering these into sequential bitmaps, but you would need some alchemy like encoder to get around the performance hit.

    By far the easiest way to go is to record the mouse movements, click actions, or use a insanely well build command pattern to re-recreate the experience elsewhere.

    Google as3 command pattern. Good luck!