Jump to content

First Mid West Balance


ConsultingJoe
 Share

Recommended Posts

This will log you into online banking and check your balance every hour. It gives you a tray tip of your balance.

Comments and feedback are welcome, Thanks

#include <IE.au3>
$userlogin = "USER/ACCOUNT#"
$pinlogin = "PASSWORD/PIN"
While 1
$ie = _IECreate( "https://www.firstmidwest.com/", 0, 0 )
$form = _IEFormGetObjByName( $ie, "loginform" )
$user = _IEFormElementGetObjByName( $form, "LOGON_ACCTID20_1" )
$pin = _IEFormElementGetObjByName( $form, "LOGON_PIN_1" )
_IEFormElementSetValue( $user, $userlogin )
_IEFormElementSetValue( $pin, $pinlogin )
_IEFormSubmit( $form )
_IELinkClickByText( $ie, "Return To Banking Online" )
$table = _IETableGetCollection( $ie, 14 )
$table = _IETableWriteToArray( $table )
_IEQuit( $ie )
TrayTip( "First Mid West", "Balance: " & $table[1][0], 15 )
Sleep(3600000)
WEnd

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

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