Jump to content

Search the Community

Showing results for tags 'Mozilla Browser ActiveX'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. This example uses new function ObjCreateInterface from AutoIt v.3.3.7.23 (beta) and Mozilla Browser ActiveX. The last control is available from http://www.wxperl.co.uk/MozillaControl1712.exe . You can also get it from the control's author at http://www.iol.ie/~locka/mozilla/control.htm The control may not be currently maintained, the last release being in 2005. You should probably therefore not use it as a general browser. After installation you should register it by regsvr32 utility. ; ******************************************************* ; Mozilla ActiveX control example ; AutoIt v3.3.7.23 (beta) ++ ; ******************************************************* #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> Global Const $sCLSID_MozillaBrowser = "{1339B54C-3453-11D2-93B9-000000000000}" Global Const $sIID_IWebBrowserApp = "{EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B}" Global $Home = "http://www.yahoo.com/" $oMZ = ObjCreateInterface($sCLSID_MozillaBrowser,$sIID_IWebBrowserApp) GUICreate("Mozilla ActiveX Application", 640, 580, (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2, $WS_OVERLAPPEDWINDOW) $GUI_Button_Back = GUICtrlCreateButton("Back", 10, 10, 90, 30) GUICtrlSetResizing(-1,$GUI_DOCKALL) $GUI_Button_Forward = GUICtrlCreateButton("Forward", 100, 10, 90, 30) GUICtrlSetResizing(-1,$GUI_DOCKALL) $GUI_Button_Home = GUICtrlCreateButton("Home", 200, 10, 90, 30) GUICtrlSetResizing(-1,$GUI_DOCKALL) $GUI_Button_Stop = GUICtrlCreateButton("Stop", 300, 10, 90, 30) GUICtrlSetResizing(-1,$GUI_DOCKALL) $URL_Label = GUICtrlCreateLabel("URL:", 10, 50, 40, 20) GUICtrlSetResizing(-1,$GUI_DOCKALL) $GUI_URL = GUICtrlCreateInput($Home, 50, 50, 480, 20) GUICtrlSetResizing(-1,$GUI_DOCKTOP+$GUI_DOCKLEFT+$GUI_DOCKHEIGHT) $GUI_Button_Go = GUICtrlCreateButton("->", 530, 50, 40, 20) GUICtrlSetResizing(-1,$GUI_DOCKTOP+$GUI_DOCKHEIGHT) $GUIActiveX = GUICtrlCreateObj($oMZ, 10, 80, 620, 450) GUICtrlSetResizing($GUIActiveX,$GUI_DOCKTOP+$GUI_DOCKLEFT) $Status_Label = GUICtrlCreateLabel("Status_Label", 10, 550, 620, 20) $oSink = ObjEvent($oMZ,"MZEvent_") GUISetState() ;Show GUI $oMZ.Visible = True $oMZ.Navigate2($Home) ; Waiting for user to close the window While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE $oMZ.Quit() ExitLoop Case $msg = $GUI_Button_Go $oMZ.Navigate2(GuiCtrlRead($GUI_URL)) Case $msg = $GUI_Button_Home $oMZ.GoHome() Case $msg = $GUI_Button_Back $oMZ.GoBack() Case $msg = $GUI_Button_Forward $oMZ.GoForward() Case $msg = $GUI_Button_Stop $oMZ.Stop() EndSelect WEnd Exit Func MZEvent_StatusTextChange($Text) GUICtrlSetData($Status_Label, $Text) EndFunc Func MZEvent_NavigateComplete($URL) GUICtrlSetData($GUI_URL, $URL) EndFunc Enjoy
×
×
  • Create New...