views:

282

answers:

1

I have a animation written in XAML. I need to create a video (AVI) from that animation. Is there a way to do that ?

+1  A: 

If you have Expression Encoder, you can do the following:

  1. Create a blank movie that has as many frames as your animation (you can change the length later if you get it wrong)
  2. Use the XAML Animation overlay option to add your XAML-based animation
  3. Render out the animation to WMV
  4. Convert the video from WMV to AVI (many free tools will do this)

I believe the free version of Expression Encoder will handle this.

If Expression Encoder won't work for you, you can also use screen capture software like Jing or Camtasia.

Jon Galloway