cagiva Posted June 3, 2011 Posted June 3, 2011 Hello programmers! I've got a problem with _IE commands. I'm trying to add some code to my main program, which will send SMS after file download in utorrent. I made almost full program without this SMS sending option. I've found free SMS gate in the internet here: www.bramkasms.haksior.com But my problem is: -I cannot enter any data in that text areas and inputfields with autoit. I dont know exacly which command I should use. I've been trying with IEAction, Objgetnames and tried them many times without success..(inb4 i've read AutoIT Help File) I'm not an expert of using <IE.au3>, so maybe if you have any idea how to make that, please help me maybe some fresh idea will solve that problem. Code of that SMS gate(names of fields and send-link) aren't shown in html source code of site, i used Opera DragonFly to get that code. Regards, cagiva.
Developers Jos Posted June 3, 2011 Developers Posted June 3, 2011 please be patient and don't bump threads within 24 hours. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
DaleHohm Posted June 4, 2011 Posted June 4, 2011 What have you tried? I'll give you a little code to start, but you need to show your work. This will put text in the message area: #include <IE.au3> $oIE = _IECreate("www.bramkasms.haksior.com") $oTA = _IEGetObjByName($oIE, "tresc") _IEFormElementSetValue($oTA, "Test") Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
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