csnmedia 0 Posted March 27, 2011 Hi,I am new with Autoit and maybe it's a stupid question but after seeing a lot of tutorialsi can't find the answer.I would like to make an interface to add data into Google Breadcrumbs BreadcrumbsOn 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 Share this post Link to post Share on other sites
jvanegmond 306 Posted March 28, 2011 (edited) 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 March 28, 2011 by Manadar github.com/jvanegmond Share this post Link to post Share on other sites
csnmedia 0 Posted March 28, 2011 Thanks, gonne try it right away. And yes, that's me on Linked-In Ad Share this post Link to post Share on other sites