I'm trying to create a keyboard shortcut to show the web page Properties dialog (the one you get through the IE right-click menu). Any ideas please?
Code: Select all
OpenWindow(0, 632, 42, 600, 500, "Window_0", #PB_Window_SystemMenu)
WebGadget(0, 10, 10, 580, 450, "http://www.purebasic.com")
AddKeyboardShortcut(0,   #PB_Shortcut_F12, 86)         
Repeat 
  e = WaitWindowEvent()
  Select e
    Case #PB_Event_Menu    
      If EventMenu() =    86 : 
        Debug "Show Page Properties"
        
      EndIf
  EndSelect
  
Until e = #PB_Event_CloseWindow

