mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 21:35:16 +00:00
Added: Harman AIR 51 float support compatibility
This commit is contained in:
BIN
libsrc/ffdec_lib/testdata/float/bin/float.air_harman.swf
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/float/bin/float.air_harman.swf
vendored
Normal file
Binary file not shown.
10
libsrc/ffdec_lib/testdata/float/build_air_harman_debug.bat
vendored
Normal file
10
libsrc/ffdec_lib/testdata/float/build_air_harman_debug.bat
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
@echo off
|
||||
set COMPILERKIND=air_harman
|
||||
set SWFNAME=float
|
||||
rem call c:\air_harman\bin\mxmlc.bat -debug=true -output bin/%SWFNAME%.%COMPILERKIND%.swf src/Main.as 1> buildlog.%COMPILERKIND%.txt 2>&1
|
||||
set batdir=%~dp0
|
||||
echo %batdir%bin\%SWFNAME%.%COMPILERKIND%.xml
|
||||
cd c:\air_harman\bin
|
||||
adl.exe -nodebug %batdir%bin\%SWFNAME%.%COMPILERKIND%.xml
|
||||
rem -cmd
|
||||
pause
|
||||
24
libsrc/ffdec_lib/testdata/float/src/Main.as
vendored
Normal file
24
libsrc/ffdec_lib/testdata/float/src/Main.as
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package
|
||||
{
|
||||
import flash.display.Sprite;
|
||||
import flash.events.Event;
|
||||
|
||||
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);
|
||||
|
||||
var a:float = 10f;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user