This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function(grunt) { | |
var setting = { | |
//CreateJS パブリッシュボタンを押した際に出力されるディレクトリ | |
cjsout : 'fla/html/', | |
//JSのコーディングなどを行うディレクトリ | |
work : 'work/', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Toolkit for CreateJSで出力された HTMLを監視し、 | |
* manifestだけ別のJSファイルに書き出すよ! | |
* 多分、movieNameも initConfig に入れた方が良い気がするけど、とりあえず動いた! | |
*/ | |
'use strict'; | |
var movieName = 'fever2'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// flash app | |
var net = require('net'); | |
var streams = []; | |
var server = net.createServer(function (stream) { | |
stream.setEncoding('utf8'); | |
streams.push(stream); | |
stream.addListener('data', function (data) { | |
try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.events.MouseEvent; | |
import flash.geom.ColorTransform; | |
public class Coloring extends Sprite { | |
private var box:Sprite; | |
public function Coloring() { |