[4.7b1] Webgadget noted difference in PB 4.7b1
Posted: Thu Aug 02, 2012 9:05 pm
If I run this code in PB 4.7b1 respective 4.61 and rightclick in the webgadget I see a major difference.
In 4.7b1 there is a popup. The popup has reload (and back if you have something to go back to).
Can this menu maybe have more things in it - like print?
In 4.7b1 there is a popup. The popup has reload (and back if you have something to go back to).
Can this menu maybe have more things in it - like print?
Code: Select all
If OpenWindow(0, 0, 0, 600, 300, "WebGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
WebGadget(0, 10, 10, 580, 280, "http://www.mybrowserinfo.com/")
; Note: if you want to use a local file, change last parameter to "file://" + path + filename
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf