-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 001daba
Showing
5 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bin | ||
obj |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project version="2"> | ||
<!-- Output SWF options --> | ||
<output> | ||
<movie outputType="Application" /> | ||
<movie input="" /> | ||
<movie path="bin\Fade.swf" /> | ||
<movie fps="30" /> | ||
<movie width="800" /> | ||
<movie height="600" /> | ||
<movie version="18" /> | ||
<movie minorVersion="0" /> | ||
<movie platform="Flash Player" /> | ||
<movie background="#FFFFFF" /> | ||
</output> | ||
<!-- Other classes to be compiled into your SWF --> | ||
<classpaths> | ||
<class path="src" /> | ||
</classpaths> | ||
<!-- Build options --> | ||
<build> | ||
<option accessible="False" /> | ||
<option advancedTelemetry="False" /> | ||
<option allowSourcePathOverlap="False" /> | ||
<option benchmark="False" /> | ||
<option es="False" /> | ||
<option inline="False" /> | ||
<option locale="" /> | ||
<option loadConfig="" /> | ||
<option optimize="True" /> | ||
<option omitTraces="True" /> | ||
<option showActionScriptWarnings="True" /> | ||
<option showBindingWarnings="True" /> | ||
<option showInvalidCSS="True" /> | ||
<option showDeprecationWarnings="True" /> | ||
<option showUnusedTypeSelectorWarnings="True" /> | ||
<option strict="True" /> | ||
<option useNetwork="True" /> | ||
<option useResourceBundleMetadata="True" /> | ||
<option warnings="True" /> | ||
<option verboseStackTraces="False" /> | ||
<option linkReport="" /> | ||
<option loadExterns="" /> | ||
<option staticLinkRSL="True" /> | ||
<option additional="" /> | ||
<option compilerConstants="" /> | ||
<option minorVersion="" /> | ||
</build> | ||
<!-- SWC Include Libraries --> | ||
<includeLibraries> | ||
<!-- example: <element path="..." /> --> | ||
</includeLibraries> | ||
<!-- SWC Libraries --> | ||
<libraryPaths> | ||
<element path="lib\as3crypto.swc" /> | ||
<element path="lib\base64.swc" /> | ||
</libraryPaths> | ||
<!-- External Libraries --> | ||
<externalLibraryPaths> | ||
<!-- example: <element path="..." /> --> | ||
</externalLibraryPaths> | ||
<!-- Runtime Shared Libraries --> | ||
<rslPaths> | ||
<!-- example: <element path="..." /> --> | ||
</rslPaths> | ||
<!-- Intrinsic Libraries --> | ||
<intrinsics> | ||
<!-- example: <element path="..." /> --> | ||
</intrinsics> | ||
<!-- Assets to embed into the output SWF --> | ||
<library> | ||
<!-- example: <asset path="..." id="..." update="..." glyphs="..." mode="..." place="..." sharepoint="..." /> --> | ||
</library> | ||
<!-- Class files to compile (other referenced classes will automatically be included) --> | ||
<compileTargets> | ||
<compile path="src\com\muzari\polskabot\fade\Main.as" /> | ||
</compileTargets> | ||
<!-- Paths to exclude from the Project Explorer tree --> | ||
<hiddenPaths> | ||
<hidden path="obj" /> | ||
</hiddenPaths> | ||
<!-- Executed before build --> | ||
<preBuildCommand /> | ||
<!-- Executed after build --> | ||
<postBuildCommand alwaysRun="False" /> | ||
<!-- Other project options --> | ||
<options> | ||
<option showHiddenPaths="True" /> | ||
<option testMovie="Default" /> | ||
<option testMovieCommand="" /> | ||
</options> | ||
<!-- Plugin storage --> | ||
<storage /> | ||
</project> |
Binary file not shown.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.muzari.polskabot.fade | ||
{ | ||
import flash.display.Sprite; | ||
import flash.events.Event; | ||
|
||
/** | ||
* ... | ||
* @author Wiktor Tkaczyński | ||
*/ | ||
public class Main extends Sprite | ||
{ | ||
|
||
public function Main() | ||
{ | ||
if (stage) init(); | ||
else addEventListener(Event.ADDED_TO_STAGE, init); | ||
} | ||
|
||
private function init(e:Event = null):void | ||
{ | ||
removeEventListener(Event.ADDED_TO_STAGE, init); | ||
// entry point | ||
} | ||
|
||
} | ||
|
||
} |