Jump to content

Recommended Posts

Posted

This script will automaticly log you in and update you with you current balance.

There is no error handling so if you don't have an account or you don't have checking it will most likely error out.

If you do have an account but never setup online banking do that at: www.tcfbank.com

FEEDBACK PLEASE!

#include <IE.au3>
While 1
$ie = _iecreate("https://enterprise1.openbank.com/fitcf/logon/user",0,0)
$form = _IEFormGetCollection ( $ie, 0 )
$user = _IEFormElementGetCollection ( $form, 0 )
$pass = _IEFormElementGetCollection ( $form, 1 )
_IEFormElementSetValue ( $user, '***-**-****' );Social Security Number is your login
_IEFormElementSetValue ( $pass, 'PASSWORD' );Password that you setup with the tcf online banking
_IEFormImageClick ( $ie, "submit_logon", "name" )
_IELoadWait ( $ie, 1000 )
$table = _IETableGetCollection ( $ie, 5 )
If @error Then
    _IEQuit($ie)
    ContinueLoop
EndIf
$table = _IETableWriteToArray ( $table )
If IsArray( $table ) Then TrayTip( "TCF Balance", $table[3][2], 1, 16 )
_IEQuit ($ie)
Sleep(10000)
WEnd

Func onautoitexit()
    _IEQuit( $ie )
EndFunc
Check out ConsultingJoe.com

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