Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / MFC
Article

SWFLIB - a free Flash authoring library

Rate me:
Please Sign up or sign in to vote.
4.75/5 (26 votes)
18 Jul 2006CPOL2 min read 168.7K   6.5K   93   50
An article on a free Flash authoring library.

Introduction

This article is about a small SWF authoring library written in C++. It can be used from any desktop application to generate Flash animations at run-time. In this release, the library can generate SWF version 3 movies, without sounds and text. This release has extended SWF tag support to cover buttons, actions, and sprites. Since this is an a experimental project, the future releases will be extended with additional functionality. For now, you are able to generate any kind of animation from the C++ source code and test it in any browser that supports Flash. The goal here is not to chase the latest SWF file format specification, but to enable developers to test this tool in their projects.

Background

Similar SWF authoring tools could be found on the Internet but with different support for generating Flash animations.

Using the code

You can use this library by downloading the SWFLIB project file and recompiling it. The project you use the library in must include the library header files and link to the swflib.lib file. The possible problem would be default project linking to the LIBCD.LIB library in the Project->Settings... and then the Link tab. The solution would be to select Input from the Category combo-box and to write the library name (LIBCD.LIB) in the Ignore section. It has worked for me in the TestProject that can be found in the download section on this page.

Generating a simple Flash movie would look like this:

#include "SWFMovie.h"

SIZE_F movieSize = {400, 400};
int frameRate = 12;
CSWFMovie swfMovie;

// Open new .SWF file
swfMovie.OpenSWFFile("Sample.swf", movieSize, frameRate);

// Define a simple shape
USHORT nID = 1;
USHORT depth = 1;
RECT_F shapeRect = {0, 0, 200, 200};
CSWFShape shape(nID, shapeRect, depth);
int lineWidth = 2;
SWF_RGBA lineColor = {255, 0, 0, 255};
shape.AddLineStyle(lineWidth, lineColor);
SWF_RGBA fillColor = {0, 0, 255, 255};
shape.AddSolidFillStyle(fillColor);
shape.AddLineSegment(100, 0);
shape.AddLineSegment(0, 100);
shape.AddLineSegment(-100, 0);
shape.AddLineSegment(0, -100);
swfMovie.AddShape(&shape, shape.m_Depth, true);
swfMovie.ShowFrame();

// Close .SWF file
swfMovie.CloseSWFFile();

Please understand that it is not possible to describe the whole functionality of the SWFLIB library using a single web page. You can find the SWFLIB Programmers Reference document in the download section, with the complete SWFLIB library specification.

Very important note

This library is just a thin wrapper around SWF tags, so don't expect final solutions. You'll have to build them using your mathematical skills and imagination. The animations are all about mathematical transformations, so you need 2D math tricks in order to get interesting effects. But don't be sad, with some practice, you'll make it for sure.

Points of interest

Working on this project was very exciting, and the future releases will increase the functionality of this library. So far, there are no noticed memory leaks, but if you detect one, please report it.

History

SWFLIB.LIB v1.1, release date - July 4, 2006

  • Buttons
  • SWF 3 Actions
  • Sprites

SWFLIB.LIB v1.0, release date - June 26, 2006

  • Custom shapes
  • Morphing shapes
  • JPEG file support
  • Line and fill style definition
  • Geometrical transformations
  • Color transformations

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Elektromehanika d.o.o. Nis
Serbia Serbia
He has a master degree in Computer Science at Faculty of Electronics in Nis (Serbia), and works as a C++/C# application developer for Windows platforms since 2001. He likes traveling, reading and meeting new people and cultures.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Koh Chia25-May-13 3:45
professionalKoh Chia25-May-13 3:45 
QuestionCSWFButton Help Pin
Member 88861093-Oct-12 13:26
Member 88861093-Oct-12 13:26 
BugRotation Problem!!! Pin
SimonCommon24-Dec-11 1:22
SimonCommon24-Dec-11 1:22 
GeneralI couldnt add more frame into the swf movie [modified] Pin
rootlife4-Nov-09 19:40
rootlife4-Nov-09 19:40 
GeneralRe: I couldnt add more frame into the swf movie Pin
darkoman5-Nov-09 9:10
darkoman5-Nov-09 9:10 
GeneralRe: I couldnt add more frame into the swf movie Pin
rootlife8-Nov-09 1:07
rootlife8-Nov-09 1:07 
GeneralError while building test app Pin
sajidadesh11-Jan-09 23:43
sajidadesh11-Jan-09 23:43 
Generalcompiling swflib project Pin
xavier6617-Sep-08 2:18
xavier6617-Sep-08 2:18 
QuestionHow to transcode flash type to other media type Pin
Member 30495742-Mar-08 21:10
Member 30495742-Mar-08 21:10 
QuestionText Tag Pin
Stephen Herd11-Oct-07 14:13
Stephen Herd11-Oct-07 14:13 
AnswerRe: Text Tag Pin
darkoman12-Oct-07 2:01
darkoman12-Oct-07 2:01 
Hello,

thanks for an interest...
I have added that but I am spending time on testing it.
Hope to finish it soon.


Best regards,
Darkoman
GeneralRe: Text Tag Pin
Stephen Herd12-Oct-07 2:45
Stephen Herd12-Oct-07 2:45 
GeneralI see only the first frame. Pin
Shlomo15-Jul-07 2:55
Shlomo15-Jul-07 2:55 
GeneralRe: I see only the first frame. Pin
darkoman6-Aug-08 4:39
darkoman6-Aug-08 4:39 
QuestionHow can I add an action context ? Pin
million12320-May-07 3:19
million12320-May-07 3:19 
AnswerRe: How can I add an action context ? Pin
darkoman20-May-07 9:11
darkoman20-May-07 9:11 
GeneralRe: How can I add an action context ? Pin
million12320-May-07 17:46
million12320-May-07 17:46 
GeneralRe: How can I add an action context ? Pin
darkoman20-May-07 19:32
darkoman20-May-07 19:32 
GeneralRe: How can I add an action context ? Pin
million12321-May-07 3:25
million12321-May-07 3:25 
GeneralRe: How can I add an action context ? Pin
darkoman21-May-07 8:28
darkoman21-May-07 8:28 
GeneralRe: How can I add an action context ? Pin
million12321-May-07 15:22
million12321-May-07 15:22 
GeneralRe: How can I add an action context ? Pin
darkoman21-May-07 19:36
darkoman21-May-07 19:36 
GeneralRe: How can I add an action context ? Pin
million12321-May-07 20:43
million12321-May-07 20:43 
Questionthanks for the code; do you want credit on my web page? Pin
Dr. Zarkov24-Apr-07 7:05
Dr. Zarkov24-Apr-07 7:05 
AnswerRe: thanks for the code; do you want credit on my web page? Pin
darkoman24-Apr-07 9:44
darkoman24-Apr-07 9:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.