is there a possibility a panel to automatically move down when another panel is visible? With App Inventor is already there by default this.
Until now, I've done this:
if panel1.visible = true then
Panel2.Top = Panel2.Top + 20DIP
Panel3.Top = Panel3.Top + 20DIP
...
...
else
Panel2.Top = 100dip
Panel3.Top = 150dip
...
...
But now when I have about 30 panels, all this is too complicated.
For example, if Panel1, Panel6, and Panel7 are visible, need 8-30 Panel 148dip down further. However, Panel2 and Panel5 visible panel to 6-30 107dip further down.
I hope my question is understood.
Sorry for my bad english. Google Translator is to blame
Until now, I've done this:
if panel1.visible = true then
Panel2.Top = Panel2.Top + 20DIP
Panel3.Top = Panel3.Top + 20DIP
...
...
else
Panel2.Top = 100dip
Panel3.Top = 150dip
...
...
But now when I have about 30 panels, all this is too complicated.
For example, if Panel1, Panel6, and Panel7 are visible, need 8-30 Panel 148dip down further. However, Panel2 and Panel5 visible panel to 6-30 107dip further down.
I hope my question is understood.
Sorry for my bad english. Google Translator is to blame