Re: How to get the name of active screen
App.ActiveScreen.Name
Reference
This is great for building navigation components:
1. App Settings > Advanced Settings > Experimental Features > Components > On
2. In the Tree view, select the Components tab.
3. Press New component and rename it. Try this naming style: cmpTitleBar
4. Change your component size. Try a height of 40 or 50.
5. Press New custom property and name it. Try this for Name: inpTitleBar
6. With Property type: Input and Data type: Text, complete the dialog by pressing Save.
7. Now that your component is listening for that input, Insert a Label.
8. Connect by changing the label's Text property from "Text" to cmpTitleBar.inpTitleBar.
9. Lastly, change the component's input (inpTitleBar) to App.ActiveScreen.Name as a default value.
10. Name a screen and Insert Component to see the result.
What else can you add to your navigation component?