This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Add consecutive ID to selection | |
| * (c) 2025 Timo Laine www.timoroso.com | |
| */ | |
| console.log("Add consecutive ID to selection"); | |
| var propName = window.prompt("To which property do you want to add a consecutive ID for selected elements or relations? (leave empty to cancel)?", ""); | |
| if (propName) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Color relations by property value | |
| * | |
| * Requires jArchi - https://www.archimatetool.com/blog/2018/07/02/jarchi/ | |
| * | |
| * Original script (c) 2022 Steven Mileham | |
| * Modifications to support relationship colorization (c) 2025 Timo Laine | |
| * | |
| */ | |
| var debug = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Mapify | |
| * Author: Timo Laine (timoroso.com) | |
| * Arranges selected elements alphabetically into a neat grid. | |
| * The number of columns is user configurable. | |
| */ | |
| // Get Archi's Preference Store | |
| const archiPrefs = Java.type('com.archimatetool.editor.ArchiPlugin').PREFERENCES; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Information flows between applications | |
| * | |
| * This script is under construction! | |
| * | |
| * This script provides a list of information flows between application components. | |
| * It is based strictly on the relationships found in the model and is therefore | |
| * independent of views. In case more attributes for the flows are needed, they can be | |
| * added easily (IntegrationPlatform is provided as an example). | |
| * |