BeneBarros Active Member Licensed User Longtime User Dec 7, 2019 #1 in B4XView (Imageview) can't use Alpha?
Erel B4X founder Staff member Licensed User Longtime User Dec 8, 2019 #2 B4X: Dim n As ImageView = AnyB4XView n.Alpha = 0.6 Upvote 0
BeneBarros Active Member Licensed User Longtime User Dec 8, 2019 #3 Erel said: B4X: Dim n As ImageView = AnyB4XView n.Alpha = 0.6 Click to expand... Thanks ... as I have several objects where I use alpha, I created a sub B4X: Sub setAlpha (nd as Node, alpha as Double) nd.Alpha = Max (Min (alpha, 1.0), 0.0) End Sub Upvote 0
Erel said: B4X: Dim n As ImageView = AnyB4XView n.Alpha = 0.6 Click to expand... Thanks ... as I have several objects where I use alpha, I created a sub B4X: Sub setAlpha (nd as Node, alpha as Double) nd.Alpha = Max (Min (alpha, 1.0), 0.0) End Sub