Jump to content

_IE problem


Recommended Posts

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 :huh2: 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.

Link to comment
Share on other sites

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

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...