AM+ Layout Designer Updates
Make Sure To Overwrite The Exe (False Positive)
Two new Reference categories added, pulled straight from Manual.md and Readme.md content — genuinely new info not already in the tool:
- AM+ Filters & Rules — rule format, all 8 comparisons, full Rule Target field lists (Romlist fields, Tags, Stats), Global Filter example, regex matching tip
- AM+ Artwork System — default artwork slots, supported formats, the full artwork selection order (the 8-step fallback chain from Manual.md), subdirectory fallback behaviour, multi-path artwork, Displays Menu artwork rules
AM+ Docs tab upgraded from a single hardcoded Layouts.md loader to a dropdown picker supporting all three docs:
- Auto-detects whichever of Layouts.md, Manual.md, Readme.md exist next to the script
- Dropdown switches between them instantly
- 📂 Load File still works for browsing to any other location, and syncs the dropdown if the filename matches
- Fallback message updated to mention all three files instead of just Layouts.md
All three markdown files copied alongside the script in outputs so the Docs tab works immediately out of the box.
Make Sure To Overwrite The Exe (False Positive)
New CODE STYLE section in Properties (right under Position & Size) for every element type:
Coordinates dropdown:
dynamic (default) → local snap_4512 = fe.add_artwork("snap", flw*0.339, flh*0.028, flw/3, flh*0.444);
pixels → local snap = fe.add_artwork("snap", 0, 0, 1920, 1080);
Constructor field — type any custom function name to replace the default:
Leave blank → uses standard fe.add_artwork / fe.add_text / fe.add_image / fe.add_surface automatically based on element type
Type FadeArt → local snap = FadeArt("snap", 0, 0, 1920, 1080);
Both settings are per-element — so you can mix and match across your layout, e.g. snap and video using FadeArt(...) with raw pixels, while text elements stay on fe.add_text(...) with dynamic flw/flh expressions.
The choice is saved with the element and restored correctly when you click it again, and updates the live code immediately.
Create Your Own Website With Webador