0.1.7 • Published 8 years ago

build-fla v0.1.7

Weekly downloads
11
License
MIT
Repository
github
Last release
8 years ago

build-fla

Node module for building swf from SWF from .fla files programatically. Adobe Flash that is capable of JSFL is needed.

how to use

const buildFla = require('build-fla');
buildFla({
	flaPath: "file:///C|/Users/user/input.fla",
	outputPath: "file:///C|/Users/user/input.fla"
}, function(err, output) {
	console.log('done building fla');
});

config options

required

  • flaPath: the path as a file:// protocol to the .fla that should be build
  • outputPath: the path to the destination swf file as a file:// protocol. The file will be overwritten.

optional

  • flashExecutablePath: the path to the flash executable on your system (needed to build the flash movie)

return values

  • err: will contain any compiler errors mentioned
  • output: will contain stuff written to the output window during build
0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago