mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 22:04:46 +00:00
- get/setlocal_x renamed to get/setlocalx - QName casing changed from Qname Better increment/decrement detection, chained assignments.
13 lines
258 B
Batchfile
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 |