Last active
December 18, 2015 17:39
-
-
Save dossy/c1cecda9bf0e4c06ec4c to your computer and use it in GitHub Desktop.
http://oakark.com/eleven_build_client.html, http://htmlpreview.github.io/?https://gist.githubusercontent.com/dossy/c1cecda9bf0e4c06ec4c/raw/4e04a6e6031f4588a4537c34a265fb23ff6f0b0e/eleven_build_client.html
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Eleven</title> | |
<style> | |
.center { | |
text-align: center; | |
} | |
.q { | |
margin-left: 1em; | |
} | |
.a { | |
margin-left: 5em; | |
margin-bottom: 2em; | |
} | |
.notes { | |
margin-left: 1em; | |
margin-bottom: 2em; | |
} | |
.quote { | |
background-color: #efefef; | |
} | |
</style> | |
</head> | |
<body> | |
<h1 class="center">Eleven Build Client</h1> | |
<div class="q">How to build the glitch client.</div> | |
<div class="notes"> | |
Notes on compiling BootStrap.as to a BootStrap.swf using Flex<br/> | |
These files seemed to be missing from the project, I found them on the Internet:<br/> | |
<ul> | |
<li>assets/VAGRoundedBold.ttf</li> | |
<li>com/flexamphetamine/BuildDecayChronograph.as</li> | |
<li>com/flexamphetamine/chronometer.css</li> | |
<li>com/flexamphetamine/ColorChronometer.as</li> | |
<li>fonts/04b-24/04B-24.TTF</li> | |
<li>org/osflash/license.txt</li> | |
<li>org/osflash/readme.txt</li> | |
<li>org/osflash/signals/IOnceSignal.as</li> | |
<li>org/osflash/signals/IPrioritySignal.as</li> | |
<li>org/osflash/signals/ISignal.as</li> | |
<li>org/osflash/signals/ISlot.as</li> | |
<li>org/osflash/signals/OnceSignal.as</li> | |
<li>org/osflash/signals/PrioritySignal.as</li> | |
<li>org/osflash/signals/Signal.as</li> | |
<li>org/osflash/signals/Slot.as</li> | |
<li>org/osflash/signals/SlotList.as</li> | |
</ul> | |
Here is the script I used to build it (note I'm using cygwin on windows): | |
<pre> | |
mxmlc \ | |
-static-link-runtime-shared-libraries=true \ | |
-define+=CONFIG::perf,false \ | |
-define+=CONFIG::god,false \ | |
-define+=CONFIG::debugging,false \ | |
-define+=CONFIG::locodeco,false \ | |
-define+=CONFIG::localhost,false \ | |
-define+=CONFIG::embed_engine_in_bootstrap,false \ | |
-define+=CONFIG::svn_revision,\"1\" \ | |
BootStrap.as | |
</pre> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment