faustf Posted December 13, 2014 Share Posted December 13, 2014 ok i find a problems thankzz alot Link to comment Share on other sites More sharing options...
computergroove Posted December 14, 2014 Share Posted December 14, 2014 (edited) When a browser window is opened doesn't windows store the data in a temp directory? Couldn't you just get the name of the picture and copy it to a new location to call from your script from that temp directory? Edited December 14, 2014 by computergroove Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Link to comment Share on other sites More sharing options...
mikell Posted December 14, 2014 Share Posted December 14, 2014 That's what InetGet does if no option is specified [optional] $INET_LOCALCACHE (0) = Get the file from local cache if available (default). Link to comment Share on other sites More sharing options...
wangrangli Posted March 5, 2016 Share Posted March 5, 2016 #include <ScreenCapture.au3> #include <IE.au3> Func _saveIEObjImg2File($ieObj, $filename) $ox = _IEPropertyGet( $ieObj, "screenx"); $oy = _IEPropertyGet( $ieObj, "screeny"); $oWidth = _IEPropertyGet( $ieObj, "width"); $oHeight = _IEPropertyGet( $ieObj, "Height"); ; MsgBox( 0, 'x at', $ox) ; MsgBox( 0, 'y at', $oy) ; MsgBox( 0, 'w =', $oWidth) ; MsgBox( 0, 'h =', $oHeight) ; Capture region _ScreenCapture_Capture($filename, $ox , $oy, $ox+$oWidth, $oy+$oHeight) EndFunc hi, the function worked very well in my computer whatever IE is in Fullscreen or not. Link to comment Share on other sites More sharing options...
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