When I changed web server at the end of last month, I didn't have time to move non-blog related pages and files. Until I do, I'll post on my blog whenever someone ask for them.
Today it was the Flash SWT Plugin which I wrote long time ago. The plugin basically allows you to play Flash animation within SWT applications and tools. Here is a screenshot.
ZIP file with source code:
There is really only one class you need to learn about: FlashPlayer. Below is a code snippet that will play a Flash movie.
import com.docuverse.swt.flash.FlashPlayer;
…
FlashPlayer player = new FlashPlayer(container);
player.loadMovie(0, “http://somewhere.com/movie.swf“);
…
For a complete example, scan the FlashPlayerView class source code.
