Animation problem with panels

Scantech

Well-Known Member
Licensed User
Longtime User
I have a Panel with few buttons and sliders. I am trying to animate the panel using the alpha. It animates ok but the buttons and sliders are unusable. It appears as an image only. i am new to this animation.

B4X:
Sub AnimatePanelShow
   Dim Animate As Animation
   Animate.InitializeAlpha("", 0, 1)
   Animate.Duration = 2000
   
   pnlControl.Visible = true
   Animate.Start(pnlControl)
End Sub
 
Top