Jump to content

Need help with login


Recommended Posts

Hi, i am new to AutoIT.. And i need some help.. i cant get this working:

$account = IniRead("Setup.ini", "", "Account", "")
$password = IniRead("Setup.ini", "", "Password", "")

Send( "$account" , 0 )
Send( "$password", 0 )

And in my Setup.ini file it looks like this:

Account=YourAccName
Password=YourAccPass

Can anyone help me?

-XInFisk

Link to comment
Share on other sites

$account = IniRead("Setup.ini", "settings", "Account", "")
$password = IniRead("Setup.ini", "settings", "Password", "")

Send( $account , 1 )
Send( $password, 1 )

[settings]
Account=YourAccName
Password=YourAccPass

8)

lol :D i found the problem.. i wrote: send("$account", 1) ..

And thanks for your help.

-XInFisk

Edited by XInFisk
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...