Jump to content

TCF Bank Balance


ConsultingJoe
 Share

Recommended Posts

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

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