This shows you the differences between two versions of the page.
| tutorial:ffdec-tutorial [2025/03/08 23:01] – created admin | tutorial:ffdec-tutorial [2025/03/08 23:09] (current) – admin | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ===== Overview ===== | ===== Overview ===== | ||
| - | The [[https:// | + | The [[https:// |
| + | |||
| + | Although FFDEC has an graphical interface for editing '' | ||
| + | |||
| + | ==== GFX to XML Script ==== | ||
| + | This is a Windows batch script that lets you easily convert all '' | ||
| + | |||
| + | < | ||
| + | @echo off | ||
| + | setlocal | ||
| + | |||
| + | :: Path to FFDec (Update this if needed) | ||
| + | set FFDEC_PATH=" | ||
| + | set SOURCE_PATH=" | ||
| + | |||
| + | cd /d %SOURCE_PATH% | ||
| + | |||
| + | :: Process | ||
| + | for %%F in (*.gfx) do ( | ||
| + | echo Converting: %%F | ||
| + | %FFDEC_PATH% -swf2xml " | ||
| + | ) | ||
| + | |||
| + | pause | ||
| + | </ | ||
| + | |||
| + | |||
| + | Change the '' | ||
| + | |||
| + | Change the '' | ||
| + | |||
| + | ==== XML to GFX Script ==== | ||
| + | This is a Windows batch script that lets you easily convert all '' | ||
| + | |||
| + | < | ||
| + | @echo off | ||
| + | setlocal | ||
| + | |||
| + | :: Path to FFDec (Update this if needed) | ||
| + | set FFDEC_PATH=" | ||
| + | set SOURCE_PATH=" | ||
| + | |||
| + | cd /d %SOURCE_PATH% | ||
| + | |||
| + | :: Process | ||
| + | for %%F in (*.xml) do ( | ||
| + | echo Converting: %%F | ||
| + | %FFDEC_PATH% -xml2swf " | ||
| + | ) | ||
| + | |||
| + | pause | ||
| + | </ | ||
| + | |||
| + | Change the '' | ||
| + | |||
| + | Change the '' | ||