Where to find it: Open any microflow or workflow → File menu (top bar) → Export as image
Keyboard Shortcuts Worth Knowing
Keyboard shortcuts are one of the easiest ways to speed up day-to-day development in Studio Pro. While many are documented, some took me a while to discover and have since become part of my regular workflow.
Quickly Find Documents with Ctrl + G: Ctrl + G opens the Go to Document search, allowing you to search across every module in your project, including pages, microflows, entities, snippets, and more. You don’t need to enter the full document name. Studio Pro matches against fragments of names, so typing something like book conf will still locate Booking_Confirmation. It’s a much faster way to navigate large applications than manually browsing through folder structures.
Advanced Searching with Ctrl + Shift + F: Ctrl + Shift + F opens Find Advanced, one of the most powerful search tools in Studio Pro.Beyond simple text searches, it can be used to locate unused items, find specific action types across the entire application, and identify documents with version-control changes. The Unused Items search is particularly useful when cleaning up an application ahead of a release. A related feature can be found within the domain model. By right-clicking an entity and selecting Find usages in actions, Studio Pro opens Find Advanced with the appropriate filters already applied. This displays every relevant microflow action (such as Create, Retrieve, and Change activities) that interacts with the selected entity, saving you from having to configure the search manually.
Navigate Large Canvases More Efficiently: When working in microflows, nanoflows, rules, or domain models, these navigation shortcuts can make it much easier to move around larger canvases:
- Shift + Mouse Wheel – Scroll horizontally
- Ctrl + Mouse Wheel – Zoom in and out
- Middle Mouse Button + Drag – Pan around the canvas
- Space + Click and Drag – Alternative method for panning
These shortcuts are particularly useful when working with larger microflows where frequent zooming and navigation is required.
Switch Between Open Documents: If you’re working across multiple pages, microflows, and domain models, document-switching shortcuts can help maintain your flow:
- Ctrl + Tab – Move to the next open document
- Ctrl + Shift + Tab – Move to the previous open document
Edit Activity Captions Quickly: Rather than opening properties manually, Shift + F2 allows you to edit the caption of the currently selected activity directly, making small updates quicker and less disruptive to your workflow.
Call Hierarchy
Before making changes to a microflow, it’s often useful to understand how it fits into the wider application. Refactoring becomes much safer when you know exactly what depends on a microflow and what that microflow depends on in turn. Introduced in Mendix 11.1, the Call Hierarchy pane provides this visibility in a single view. To access it, right-click any microflow or nanoflow in the App Explorer and select Show Call Hierarchy. Studio Pro opens a dedicated pane containing two tabs:
- Incoming – Shows every microflow, nanoflow, page, or action that calls the selected item.
- Outgoing – Shows every microflow, nanoflow, and action that the selected item calls.
While it’s possible to gather similar information using Find Usages, doing so often requires multiple searches and some manual investigation. The Call Hierarchy pane presents both directions together, making it much easier to understand dependencies before making changes. I’ve found it particularly useful when working in unfamiliar parts of an application. A quick look at the hierarchy can reveal whether a seemingly small change affects a handful of processes or a significant portion of the system, helping to avoid unintended consequences during development.