Re: Save Link As...
"valery_vi" <[email protected]>
| Newsgroups | gmane.comp.windows.autoit.user |
|---|---|
| Message-ID | <[email protected]> |
See UDF from IE.au3: Func _IELinkClickByText(ByRef $o_object, $s_linkText, $i_index = 0, $f_wait = 1) It can "Simulate a mouse click on a link with text sub-string matching the string provided" But you can just get links collection. $links = $o_object.document.links Now you have to get any item from this collection and save it directly without IE's action at all. Valery --- In [email protected], "gkoelln7" <gkoelln7@...> wrote: > > Neither INetGet(), nor _IEAction($oIE, "saveas") will work for what I > want to do. Is it possible to simulate performing the Save Link As > (aka Save Target As) on a link? > > Thanks, > > Greg >