csnmedia Posted March 27, 2011 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
jvanegmond Posted March 28, 2011 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
csnmedia Posted March 28, 2011 Author Posted March 28, 2011 Thanks, gonne try it right away. And yes, that's me on Linked-In Ad
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