MuffettsMan Posted June 26, 2009 Posted June 26, 2009 I am using IE.au3 to extract text from web pages but is there a command to be able to save specific jpgs as well? Don't let that status fool you, I am no advanced memeber!
bogQ Posted June 26, 2009 Posted June 26, 2009 I am using IE.au3 to extract text from web pages but is there a command to be able to save specific jpgs as well?i think that InetGet() will serve that purpose TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
MuffettsMan Posted June 26, 2009 Author Posted June 26, 2009 i think that InetGet() will serve that purposety ty that will do it! Don't let that status fool you, I am no advanced memeber!
styles3000 Posted July 20, 2009 Posted July 20, 2009 I am using IE.au3 to extract text from web pages but is there a command to be able to save specific jpgs as well? Could you fill me in on what function to use to extract text from IE? If you could take a look at the pdf I affixed to this post ,I want to extract all the words below...Igoogle Extract.pdf verizon blackberry iphone verizon wireless att at&t sprint twitter tmobile comcast moon math shark new moon dna protein chemistry brain apollo 11 math games soda pop jones soda diet soda coke soda bottle soda water orange soda pepsi caffeine club soda
wolf9228 Posted July 21, 2009 Posted July 21, 2009 I am using IE.au3 to extract text from web pages but is there a command to be able to save specific jpgs as well? #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> $oIE = _IECreateEmbedded () GUICreate("Embedded Web control Test", 640, 580, _ (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2, _ $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS + $WS_CLIPCHILDREN) $GUIActiveX = GUICtrlCreateObj($oIE, 10, 40, 600, 360) $SAVEAS = GUICtrlCreateButton("SAVEAS", 10, 420, 100, 30) GUISetState() ;Show GUI _IENavigate ($oIE, "http://www.autoitscript.com") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $SAVEAS SAVEAS($oIE) EndSelect WEnd Func SAVEAS($oIE) $OLECMDID_SAVEAS = 4 $OLECMDEXECOPT_PROMPTUSER = 1 $oIE.ExecWB($OLECMDID_SAVEAS, $OLECMDEXECOPT_PROMPTUSER) EndFunc صرح السماء كان هنا
styles3000 Posted July 21, 2009 Posted July 21, 2009 #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <IE.au3> $oIE = _IECreateEmbedded () GUICreate("Embedded Web control Test", 640, 580, _ (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2, _ $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS + $WS_CLIPCHILDREN) $GUIActiveX = GUICtrlCreateObj($oIE, 10, 40, 600, 360) $SAVEAS = GUICtrlCreateButton("SAVEAS", 10, 420, 100, 30) GUISetState() ;Show GUI _IENavigate ($oIE, "http://www.autoitscript.com") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $SAVEAS SAVEAS($oIE) EndSelect WEnd Func SAVEAS($oIE) $OLECMDID_SAVEAS = 4 $OLECMDEXECOPT_PROMPTUSER = 1 $oIE.ExecWB($OLECMDID_SAVEAS, $OLECMDEXECOPT_PROMPTUSER) EndFunc Thank you for the script. One question, what code can I use to instead of saving everything I can extract the specific words I need? I'm trying my best not to use mouseclicks.
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