Skip to content

Commit ec0376a

Browse files
author
SlavaRa
committed
Init
1 parent 9ec4eed commit ec0376a

File tree

11 files changed

+221
-0
lines changed

11 files changed

+221
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<project version="2">
3+
<!-- Output SWF options -->
4+
<output>
5+
<movie outputType="Application" />
6+
<movie input="" />
7+
<movie path="bin\$(ProjectID).js" />
8+
<movie fps="0" />
9+
<movie width="0" />
10+
<movie height="0" />
11+
<movie version="1" />
12+
<movie platform="JavaScript" />
13+
<movie background="#FFFFFF" />
14+
</output>
15+
<!-- Other classes to be compiled into your SWF -->
16+
<classpaths>
17+
<class path="src" />
18+
</classpaths>
19+
<!-- Build options -->
20+
<build>
21+
<option directives="" />
22+
<option flashStrict="False" />
23+
<option mainClass="$(PackageDot)Main" />
24+
<option override="False" />
25+
<option verbose="False" />
26+
<option additional="" />
27+
</build>
28+
<!-- haxelib libraries -->
29+
<haxelib>
30+
<library name="createjs-full" />
31+
</haxelib>
32+
<!-- Class files to compile (other referenced classes will automatically be included) -->
33+
<compileTargets>
34+
<compile path="src\$(PackageSlash)Main.hx" />
35+
</compileTargets>
36+
<!-- Paths to exclude from the Project Explorer tree -->
37+
<hiddenPaths>
38+
<!-- example: <hidden path="..." /> -->
39+
</hiddenPaths>
40+
<!-- Executed before build -->
41+
<preBuildCommand />
42+
<!-- Executed after build -->
43+
<postBuildCommand alwaysRun="False" />
44+
<!-- Other project options -->
45+
<options>
46+
<option showHiddenPaths="False" />
47+
<option testMovie="Webserver" />
48+
<option testMovieCommand="bin/index.html" />
49+
</options>
50+
</project>
26.1 KB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A CreateJS project written in the Haxe language

$(BaseDir)/Projects/332 Haxe - CreateJS Project/bin/easeljs-0.8.2.min.js

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8"/>
5+
<title>$(ProjectName)</title>
6+
<meta name="description" content="" />
7+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimal-ui" />
8+
<meta name="mobile-web-app-capable" content="yes">
9+
<script src="easeljs-0.8.2.min.js"></script>
10+
<script src="soundjs-0.6.2.min.js"></script>
11+
<script src="tweenjs-0.6.2.min.js"></script>
12+
<script src="preloadjs-0.6.2.min.js"></script>
13+
<style>
14+
html {
15+
height: 100%;
16+
margin: 0px;
17+
padding: 0px;
18+
}
19+
body {
20+
background: #CCCCCC;
21+
color: #808080;
22+
margin: 0px;
23+
padding: 0px;
24+
height:100%;
25+
-webkit-user-select: none;
26+
overflow: hidden;
27+
}
28+
</style>
29+
</head>
30+
<body>
31+
<canvas id="canvas" disabled-fullScreen="default"></canvas>
32+
<script src="$(ProjectID).js"></script>
33+
</body>
34+
</html>

$(BaseDir)/Projects/332 Haxe - CreateJS Project/bin/preloadjs-0.6.2.min.js

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

$(BaseDir)/Projects/332 Haxe - CreateJS Project/bin/soundjs-0.6.2.min.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

$(BaseDir)/Projects/332 Haxe - CreateJS Project/bin/tweenjs-0.6.2.min.js

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package $(PackageName);
2+
3+
import createjs.easeljs.Stage;
4+
import js.Browser;
5+
6+
/**
7+
$(CBI)* @author $(DefaultUser)
8+
$(CBI)*/
9+
class Main extends Application $(CSLB){
10+
11+
static function main() $(CSLB){
12+
var canvas = Browser.document.getElementById("canvas");
13+
var stage = new Stage(canvas);
14+
// entry point
15+
}
16+
17+
}

appman.template

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Entry>
2+
<Id>_ID_</Id>
3+
<Name>_NAME_</Name>
4+
<Version>_VERSION_</Version>
5+
<Build>_BUILD_</Build>
6+
<Checksum>_CHECKSUM_</Checksum>
7+
<Desc>_DESC_</Desc>
8+
<Group>Templates</Group>
9+
<Info>_INFO_</Info>
10+
<Urls>
11+
<Url>_URL_</Url>
12+
</Urls>
13+
</Entry>

0 commit comments

Comments
 (0)