Erel B4X founder Staff member Licensed User Longtime User Aug 5, 2020 #2 What exactly are you trying to do? The transparent regions are respected. Upvote 0
M mohd_farez Member Licensed User Aug 5, 2020 #3 Hi Erel , Thank u for Reply. In B4I B4XGifView Have Properties "Alpha Level" this make opacity between 0 to 1 Are it have equation in B4A ? I make web view With Special Animated Gif Image for Loading I make B4XGifView Alpha Level value = 0.7 and make it Brig to front of Webview Last edited: Aug 5, 2020 Upvote 0
Hi Erel , Thank u for Reply. In B4I B4XGifView Have Properties "Alpha Level" this make opacity between 0 to 1 Are it have equation in B4A ? I make web view With Special Animated Gif Image for Loading I make B4XGifView Alpha Level value = 0.7 and make it Brig to front of Webview
Erel B4X founder Staff member Licensed User Longtime User Aug 6, 2020 #4 Try this: B4X: Dim jo As JavaObject = GifView.mBase Dim alpha As Float = 0.7 jo.RunMethod("setAlpha", Array(alpha)) Upvote 0
Try this: B4X: Dim jo As JavaObject = GifView.mBase Dim alpha As Float = 0.7 jo.RunMethod("setAlpha", Array(alpha))