🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

build-fla

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-fla

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

latest
Source
npmnpm
Version
0.1.7
Version published
Maintainers
1
Created
Source

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

Keywords

build

FAQs

Package last updated on 17 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts