Library to hold MessageBox functions for Furaffinity
Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/528997/1765109/Furaffinity-Message-Box.js
Helper Library to show a MessageBox for your custom FurAffinity Script.
See documentation on Furaffinity-Message-Box.
@require this script
Show a MessageBox:
await FAMessageBox.show('Hello, world!');
const result = await FAMessageBox.show('This is a confirmation.', 'Confirmation', FAMessageBoxButtons.YesNo, FAMessageBoxIcon.Question);
if (result === FADialogResult.Yes) { /* ... */ }
See Furaffinity-Message-Box for more info
| Feature | Status |
|---|---|
| Have MessageBox | ✅ Completed |
| Support different Types | ✅ Completed |
| ⠀⠀⠀⠀Information | ✅ Completed |
| ⠀⠀⠀⠀Question | ✅ Completed |
| ⠀⠀⠀⠀Warning | ✅ Completed |
| ⠀⠀⠀⠀Error | ✅ Completed |
| Support Furaffinity Color Themes | ✅ Completed |
| Support non async MessageBox | ⬜ Planned |