but the WebGadget isn't being recognised as being a 'full' browser - as though it's a mobile device.
See this topic for details.
http://www.purebasic.fr/english/viewtop ... 15&t=47892
The code simply opens a window with a WebGadget and directs it to a site, but the Linux version get's redirected to a warning page.
Code: Select all
url.s="http://www.bbc.co.uk/iplayer/console/bbc_radio_two"
OpenWindow(0,400,50,420,720,"BBC Radio 2", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget)
WebGadget(1,0,0,420,720,url)
Repeat
evn = WaitWindowEvent()
Until evn = #PB_Event_CloseWindow

