0.0.12 • Published 9 years ago

flex-compiler v0.0.12

Weekly downloads
41
License
-
Repository
github
Last release
9 years ago

##flex-compiler

A Node.js module to compile Flex/ActionScript/MXML apps with the compiler from the Apache/Adobe Flex SDK.

##Quick Examples

var FlexCompiler = require('flex-compiler');

var params = {
  flexSDKPath: 'c:/dev/flexsdk',
  sourcePath: ['c:/demo/src'],
  libraryPath: ['c:/demo/libs'],
  main: 'c:/demo/src/Main.as',
  swfWidth: 480,
  swfHeight: 360,
  frameRate: 30,
  outputPath: 'c:/demo/Main.swf',
};

var flexCompiler = new FlexCompiler();
flexCompiler.mxmlc(params, function(err) {
  if(err) {
    console.log('compile failed');
  }else {
    console.log('compile success');
  }
});
0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago