tags:

views:

103

answers:

5

im looking to create swf from java like ming from c/c++ is there any thing like this for java ?

+3  A: 

JavaFX was actualy created for these purposes.

Roman
+1  A: 

maybe OpenLaszlo? not from java, but using java at least

splix
A: 

JavaSWF - Macromedia Flash File Format JavaSWF provides a pure Java wrapper for the Macromedia Flash file format (known as SWF). It enables the parsing and generation of Flash content within Java applications and servlets.

stacker
+1  A: 

TransformSWF from Flagstone Software is a SWF-generating library for Java.

It supports through Flash 7, is under reasonably active development, and has pretty good docs on its home page. BSD licensed.

Its sister TranslateSWF is meant for compiling AS1 into SWF-embeddable bytecode from Java.

Michael Brewer-Davis
A: 

You could always use SWIG to generate a JNI wrapper for Ming.

Pete Kirkham