Jump to content

IE Browser + Flash


Recommended Posts

I got this code from the forum, but I want it to work with flash based sites. How can I enable flash with the current code?

#include <GUIConstants.au3> 
#include <IE.au3> 

$GUI = GUICreate("Simple Web Browser", 800, 450) 
$object = ObjCreate("Shell.Explorer.2") 
$object_ctrl = GUICtrlCreateObj($object, 16, 10, 780, 400) 
$url_button = GUICtrlCreateButton("URL", 16, 410, 750, 25, 0) 
_IENavigate($object, "www.google.com") 
GUISetState() 
 
While 1
    $msg = GUIGetMsg()
    Select
    Case $msg = $url_button
        $URL = Inputbox("Web Browser", "Enter the URL you want to visit.")
        _IENavigate($Object, $URL)
        
    Case $msg = $GUI_EVENT_CLOSE
        Exit
    EndSelect
WEnd
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...