WebGadget Android
Posted: Sat Nov 15, 2025 2:27 pm
Hello, I have a problem with version 3.10 of SpiderBasic, the WebGadget does not work correctly on Android.
Do you have a solution? Thank you.
Do you have a solution? Thank you.
Code: Select all
Enumeration
#Window
#GadgetWeb
EndEnumeration
Global URL.s= "http://www.spiderbasic.com"
ExamineDesktops()
Global w = DesktopWidth(0)
Global h = DesktopHeight(0)
Global Wgadget
Procedure onResize()
Protected w = DesktopWidth(0)
Protected h = DesktopHeight(0)
ResizeGadget(Wgadget, #PB_Ignore, #PB_Ignore, w , h)
EndProcedure
;Window (Full Screen)
OpenWindow(#Window, 0, 0, w, h, "BlocTel", #PB_Window_Background)
; CloseDebugOutput()
;Web Gadget
WebGadget(#GadgetWeb, 0, 0, w, h , URL)
;Triggers
BindEvent(#PB_Event_SizeDesktop, @onResize())