Jump to content

Google Breadcrumbs


Recommended Posts

Hi,

I am new with Autoit and maybe it's a stupid question but after seeing a lot of tutorials

i can't find the answer.

I would like to make an interface to add data into Google Breadcrumbs Breadcrumbs

On the Google version you write html data in a screen.

How can i make an interface to add text onto an internet page?

Like to here from one of you,

Ad Mulders

Link to comment
Share on other sites

I've created a script that can create an internet explorer window, load that page, fill it with data and then submit it. It does not work in IE9 - but since that is only out for a few days I won't expect it to do that.

Try it:

#include <IE.au3>

$oIE = _IECreate("http://breadcrumb.googlelabs.com/")

$oForm = _IEFormGetCollection($oIE, 0)

$oTitle = _IEFormElementGetObjByName($oForm, "id_title")
$oSource = _IEFormElementGetObjByName($oForm, "id_source")

_IEFormElementSetValue($oTitle, "Your new title")
_IEFormElementSetValue($oSource, "(1) Your new story")

_IEFormSubmit($oForm)

By the way, this is you right: http://www.linkedin.com/in/admulders ?

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