How do I make an arrangement visible when switching screens?

I am making an app with two screens, Screen 1 is the main one. Screen 2 has its arrangements not visible. I would like to make one of the arrangements in Screen 2 visible the moment I switch from Screen 1 to Screen 2. I have experimented but haven't had any success since it appears that Screen Blocks from Screen 1 are independent from the other Blocks in Screen 2. Any suggestions will be greatly appreciated :slight_smile:

1 Like

You can use this block:
image
(Use this block in Screen 2)
In the do part, keep the block of the component which you want to make visible.
For Example:
image
This will make Button 3 visible whenever screen 1 starts.
Hope This helps.

1 Like

Hello Alberto

When Screen1 launches Screen2, it can send a value instructing Screen2 as to which Arrangement should become visible - I assume you need this because the Arrangement is one of many and which one to use is determined by something on Screen1

So, here is a crude example, just to demonstrate how it works.
Screen2Arrangement.aia (3.9 KB)

Screen 1 Blocks

blocksScreen1

Screen 2 Blocks

Thank you very much, I will try it :slight_smile:

Thank you very much, I've never thought of it, very clean and very simple solution :slight_smile: