Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.53 KB

RESOURCES.md

File metadata and controls

46 lines (38 loc) · 1.53 KB

Adobe XD Resources

A collection of resources from Adobe for XD extension

XD Dev Days

Documentation

Useful highlights

To add multiple options on plugin (UI Entry Points) add to uiEntryPoints on manifest.json file. Example:

"uiEntryPoints": [
        {
            "type": "menu",
            "label": "Fit It (Demo)",
            "menuItems": [
                {
                    "type": "menu",
                    "label": "Fit It As Is",
                    "commandId": "fitItem"
                },
                {
                    "type": "menu",
                    "label": "Fit It Clockwise",
                    "commandId": "rotatateClockFitItem"
                },
                {
                    "type": "menu",
                    "label": "Fit It Counter-clockwise",
                    "commandId": "rotateCounterClockFitItem"
                }
            ]
        }
    ]