XInFisk Posted June 29, 2006 Posted June 29, 2006 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
Valuater Posted June 30, 2006 Posted June 30, 2006 $account = IniRead("Setup.ini", "settings", "Account", "") $password = IniRead("Setup.ini", "settings", "Password", "") Send( $account , 1 ) Send( $password, 1 ) [settings] Account=YourAccName Password=YourAccPass 8)
XInFisk Posted June 30, 2006 Author Posted June 30, 2006 (edited) $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 i found the problem.. i wrote: send("$account", 1) .. And thanks for your help. -XInFisk Edited June 30, 2006 by XInFisk
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now