Reputation: 7301
Is it possible to create a flash file programmatically using C# or VB.net?
I have a bunch of handwritten characters in coordinate form and I want to create a flash file that displays the characters one after the other. It must also play sounds while this is happening.
The ultimate goal is the convert a pencast as generated by a Livescribe smartpen to a flash file. This pencast file contains the characters as well as the audio.
Upvotes: 2
Views: 445
Reputation: 22604
Simple answer: You can use just about any programming language to create ActionScript files, and use the flex compiler to compile them. After all, code is only text - anything you can do in a manually written program, you can do in a generated one.
Upvotes: 1