Jump to content

Recommended Posts

Posted (edited)

i need auto login to these website:

http://4down.info/addnews.html
http://www.tinydl.com
http://hunt4download.com

please help me!!!

Edited by nguyenan
Posted

Learn to script then write some code. If it does not work then post back here showing what you have tried.

No-one is going to write it for you.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Posted

go to the autoit help file and then select the index (second tab) then search for:

_IE_Introduction

This should get you started in the right direction.

Once you get some code hashed out if you still have some problems post the code or code snippets and we'll help.

What are we going to do tonight Brain?Same thing we do every night Pinky try to automate the world.

Posted

i readed autoit help file and my scripts:

#include <IE.au3>

$oIE = _IECreate ("http://4down.info")

$o_form = _IEFormGetObjByName ($oIE, "form of site")

$o_login = _IEFormElementGetObjByName ($o_form, "login_name")

$o_password = _IEFormElementGetObjByName ($o_form, "login_password")

$o_signin = _IEFormElementGetObjByName ($o_form, "login")

$username = "user"

$password = "pass"

_IEFormElementSetValue ($o_login, $username)

_IEFormElementSetValue ($o_password, $password)

_IEAction ($o_signin, "click")

but i can not see form of this site in source,can you help me?

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...