Jump to content

Recommended Posts

Posted

WHERE THE #@^& IS THE IE.AU3 FAQ // GUIDE

I DONT GET SHIT OF IT, AND I SEARCHED OVER ~~ MANNNNNNY HOURS ~~

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted

WHERE THE #@^& IS THE IE.AU3 FAQ // GUIDE

I DONT GET SHIT OF IT, AND I SEARCHED OVER ~~ MANNNNNNY HOURS ~~

HI,

the ie help is included in the beta helpfile. Or do you really mean the FAQ? So what is your prob then?

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted (edited)

HI,

the ie help is included in the beta helpfile. Or do you really mean the FAQ? So what is your prob then?

So long,

Mega

i just dont get something of it, ( i cant find a good guide & Or FAQ )

i got this atm:

#include <IE.au3>

$sUrl = "http://www.bootleggers.us"
$oIE = _IECreate ($sUrl)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState ($oHWND, "", @SW_MAXIMIZE )
; the "0" is assumming that this is the first table in source order
$oTable = _IETableGetCollection($oIE, 0)
$aTable_Info = _IETableWriteToArray($oTable)

and now i need it to type: Accountname

and the: Password

and press at the Submit button :/

Edited by aceloc

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted

HI,

???

#include <IE.au3>
$user = "Hugo"
$password = "Hugo1"
$sUrl = "http://www.bootleggers.us"
$oIE = _IECreate ($sUrl)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState ($oHWND, "", @SW_MAXIMIZE )
Send($user&"{Tab}"&$password&"{Tab}""{Enter}")

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted

HI,

???

#include <IE.au3>
$user = "Hugo"
$password = "Hugo1"
$sUrl = "http://www.bootleggers.us"
$oIE = _IECreate ($sUrl)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState ($oHWND, "", @SW_MAXIMIZE )
Send($user&"{Tab}"&$password&"{Tab}""{Enter}")

So long,

Mega

dont work minimized :/

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Posted

#include <IE.au3>
$sUsername = "Username"
$sPassword = "Password"
$sUrl = "http://www.bootleggers.us"
$oIE = _IECreate ($sUrl)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState ($oHWND, "", @SW_MAXIMIZE )
$oForm = _IEFormGetCollection ($oIE, 0)
$oUsername = _IEFormElementGetObjByName ($oForm, "username")
$oPassword = _IEFormElementGetObjByName ($oForm, "password")
_IEFormElementSetValue ($oUsername, $sUsername)
_IEFormElementSetValue ($oPassword, $sPassword)
_IEFormSubmit ($oForm)

Posted

#include <IE.au3>
$sUsername = "Username"
$sPassword = "Password"
$sUrl = "http://www.bootleggers.us"
$oIE = _IECreate ($sUrl)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState ($oHWND, "", @SW_MAXIMIZE )
$oForm = _IEFormGetCollection ($oIE, 0)
$oUsername = _IEFormElementGetObjByName ($oForm, "username")
$oPassword = _IEFormElementGetObjByName ($oForm, "password")
_IEFormElementSetValue ($oUsername, $sUsername)
_IEFormElementSetValue ($oPassword, $sPassword)
_IEFormSubmit ($oForm)
Thanks your great :whistle:

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

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
×
×
  • Create New...