4ggr35510n 0 Posted November 17, 2010 Is it possible to save image from internet explorer application? As using context menu > Save as...? Best Regards, 4ggr35510n Share this post Link to post Share on other sites
PsaltyDS 42 Posted November 17, 2010 The source of the IMG tag might be accessible to InetGet(), something like: $oIMG = _IEGetObjById($oIE, "ImgElementId") $sURL = $oIMG.src InetGet($sURL, "C:\Temp\Image.jpg") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
wakillon 404 Posted November 17, 2010 You can download all pictures of a web page like this #include <IE.au3> $f_tryAttach=0 $f_visible=0 $f_wait=1 $oIE = _IECreate ( "http://www.autoitscript.com/", $f_tryAttach, $f_visible, $f_wait ) $oImgs = _IEImgGetCollection ( $oIE ) $iNumImg = @extended ConsoleWrite ( "There are " & $iNumImg & " images on the page" & @Crlf ) For $oImg In $oImgs $_Url = $oImg.src ConsoleWrite ( "Img Info src= " & $oImg.src & @Crlf ) InetGet ( $_URL, @DesktopDir & '\' & _GetFullNameByUrl ( $_URL ), 1, 0 ) Next _IEQuit ( $oIE ) Exit Func _GetFullNameByUrl ( $_FileUrl ) $_FileName = StringSplit ( $_FileUrl, '/' ) If Not @error Then Return $_FileName[$_FileName[0]] Else Return 0 EndIf EndFunc ;==> _GetFullNameByUrl ( ) AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites