Jump to content

IE.au3 Library / Builder


Valuater
 Share

Recommended Posts

Works great...

thanks Gary

8)

Another suggestion:

I would store the $AutoItBetaLocation in ini file

then change the top to something like

$AutoItBetaLocation = IniRead(@ScriptDir & "\IE-library.ini","exe","dir","")
If $AutoItBetaLocation = "" Then
    $AutoItBetaLocation = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt","betaInstallDir")
    If $AutoItBetaLocation = "" Then
        $AutoItBetaLocation = FileSelectFolder("Select Folder where the Beta AutoIt is installed","c:\",4,@ProgramFilesDir & "\AutoIt3\beta")
        If $AutoItBetaLocation = "" Then
            MsgBox(262208, "IE.au3 Error #1", "Autoit3 Beta is required   " & @CRLF & "Please download from www.Autoit3.com   ")
        ;Exit
        EndIf
    EndIf
    IniWrite(@ScriptDir & "\IE-library.ini","exe","dir",$AutoItBetaLocation)
EndIf

that way if the user has autoit installed other than the normal place, they only have to select it if its not in the ini

fixed the iniread iniwrite

Edited by gafrost

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

when i try to use this it freezes up after a while and i have ctrl alt del end process it.. I put it in the include folder within the beta folder and im runnin the beta ver ill toggle it off and use reg ver

the IE.au3 Library ( from Dale ) belongs in the Beta\Include folder

this program ( IE Builder ) is not meant to be inside the include folder..

another person told me it freezes-up also at "HTML Elements"...

I can't seem to duplicate the problem...to fix it

8)

NEWHeader1.png

Link to comment
Share on other sites

for me it freezes on different thingss but the one thing i need to look at the image elements i think is what the name is, it freezes as soon as i show that. Also what do i open to do it when i try to iopen IE.au3 nothing happens i have to open it from the library for the thing to run >.<

Edit: when i hit alt it frrezes too >.<

Edited by maed
Link to comment
Share on other sites

C:\Program Files\AutoIt3\beta\Include\IE-library4.au3

C:\Program Files\AutoIt3\beta\Include\IE.au3

If the IE.au3 isnt in the include folder when i try to open ie-library it will say ie.au3 is missing and if i try to open ie.au3 no matter where anything it is it does not do anything at all... What else do u need to know cuz i really need this to work >.<

Link to comment
Share on other sites

1

the latest release is IE-Library5

2

the IE-Library5 ( or IE-Library4) does not belong inside the include folder

3

Download the latest IE Builder on the first page of this Thread

4 ** Very Important **

You should be able to click on IE.au3 and it SHOULD open in SciTE

Maybe download IE.au3 again???

8)

NEWHeader1.png

Link to comment
Share on other sites

ok i got the file from the beginning of this thread and i put it into the beta/include now im looking for the ie builder that goes on desktop i cant seem to find it

Edit: lol i overlooked it ok i got them both now when i open ie.au3 it opens in scite now let me try the builder see if it freezes

Edit2 : now they both are opening in scite wtf >.<

Edit3: ahh it still freezes when i click image tags

Edited by maed
Link to comment
Share on other sites

ok, was going to play with this, and don't have time to figure out what is happening but:

I select source code, display source

no problem so far,

but....

If i try any of the following

Html Elements

Anchor Tags

Image Tags

Form Elements

It looks like it did what it's supposed to do but the CPU usage for the script goes to about 90%

then it doesn't respond anymore.

Gary

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

ok, was going to play with this, and don't have time to figure out what is happening but:

I select source code, display source

no problem so far,

but....

If i try any of the following

Html Elements

Anchor Tags

Image Tags

Form Elements

It looks like it did what it's supposed to do but the CPU usage for the script goes to about 90%

then it doesn't respond anymore.

Gary

thats what it does to me and thats what i meant by freeze >.< it seems like if i go to any of those that u listed its fine untill i try to scroll in it or click in it. but what i need to see is farther down and i need to scroll for it lol so im screwed >.< atleast im not the only one having this problem i thought it was just me

Link to comment
Share on other sites

did get to play around with this for a few minutes and found where the problem is, apparently it doesn't like being in a child window

might be a bug

comment out line 103

$internetgui = GUICreate("Internet GUI", @DesktopWidth - 200, @DesktopHeight - 200, 160, 80, $WS_CHILD + $WS_BORDER , "", $gui)

add the following to line 104 and see what happens

$internetgui = GUICreate("Internet GUI", @DesktopWidth - 200, @DesktopHeight - 200, 160, 80, $WS_BORDER, -1, $gui)

also note -1 for extended style instead of ""

Edited by gafrost

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

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...