Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/custom/run_abcexport.bat
Jindra Petřík 0da0e41cc6 AS3 p-code more RAbcDasm like
- get/setlocal_x renamed to get/setlocalx
- QName casing changed from Qname

Better increment/decrement detection, chained assignments.
2021-01-26 21:12:34 +01:00

13 lines
258 B
Batchfile

@echo off
set RABCDASM_PATH=c:\RABCDasm
rd /s /q .\abc
%RABCDASM_PATH%\abcexport.exe .\bin\custom.swf
mkdir .\abc
move .\bin\*.abc abc\>NUL
set ABC_DIR=.\abc
for /F %%x in ('dir /B/D %ABC_DIR%') do (
%RABCDASM_PATH%\rabcdasm.exe %ABC_DIR%\%%x
)
pause