Jump to content

fishlester

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by fishlester

  1. _gzDecompress( $htm ) gzip.au3
  2. i try b4 but i dunno how make it works..
  3. wat script can choose 'Feb' or 'Mar' , Below is the html , please help ... <select class="" id="birthday_month" name="birthday_month" onchange=""><option value="-1">Month:</option><option value="1">Jan</option> <option value="2">Feb</option> <option value="3">Mar</option> <option value="4">Apr</option> <option value="5">May</option> <option value="6">Jun</option> <option value="7">Jul</option> <option value="8">Aug</option> <option value="9">Sep</option> <option value="10">Oct</option> <option value="11">Nov</option> <option value="12">Dec</option> </select>
  4. how can i get iframe souce? if iframe is target google.com i wan to get google source
  5. #include <IE.au3> $oIE = _IECreate ("http://ucfish.webs.com/iframe.htm") $oFrame = _IEFrameGetObjByName($oIE, "iframe_test") $FrameHTML = _IEDocReadHTML($oFrame) MsgBox(0, "",$FrameHTML) now i change my iframe target 'www.google.com.my' then i get this error... C:\Program Files\AutoIt3\Include\ie.au3 (2024) : ==> The requested action with this object has failed.: Return SetError($_IEStatus_Success, 0, $o_object.document.documentElement.outerHTML) Return SetError($_IEStatus_Success, 0, $o_object.document^ ERROR >Exit code: 1 Time: 2.746
  6. is iframe source [http://ucfish.webs.com/test.htm] <title>test</title> <style type="text/css"> <!-- body,td,th { color: #D4D0C8; } body { background-color: #000; } --> </style><!-- --><script type="text/javascript" src="http://images.webs.com/static/global/js/webs/usersites/escort.js"></script><script type="text/javascript">if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script>if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();}</script>
  7. #include <IE.au3> $oIE = _IECreate ("http://ucfish.webs.com/iframe.htm") $oFrame = _IEFrameGetObjByName($oIE, "iframe_test") $FrameHTML = _IEPropertyGet($oFrame, "innerhtml") MsgBox(0, "",$FrameHTML) i follow this scripts i get incorrect innerhtml source...
  8. <title>help iframe</title> <iframe src="http://ucfish.webs.com/test.htm" framespacing="0" frameborder="no" scrolling="no" width="760" height="570" name="iframe_test"></iframe> please help me get "http://ucfish.webs.com/test.htm" innerhtml source please...i cant get iframe innerhtml with au3 scripts , please help ! the example pages is http://ucfish.webs.com/iframe.htm
  9. actually how make it works
  10. ;START #include <GUIConstants.au3> $oIE = ObjCreate("Shell.Explorer.2") $s=GUICreate ("test", 640, 580,(@DesktopWidth-640)/2, (@DesktopHeight-580)/2, BitOr($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS, $WS_CLIPCHILDREN)) $GUIActiveX = GUICtrlCreateObj ( $oIE, 10, 40 , 600 , 360 ) $GUI_Button_Back = GuiCtrlCreateButton ("Back", 10, 420, 100, 30) $GUI_Button_Forward = GuiCtrlCreateButton ("Forward", 120, 420, 100, 30) $GUI_Button_Home = GuiCtrlCreateButton ("Home", 230, 420, 100, 30) $GUI_Button_Stop = GuiCtrlCreateButton ("Stop", 330, 420, 100, 30) GUISetState() $oIE.navigate("C:\Documents and Settings") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $GUI_Button_Home $oIE.navigate("C:\windows\system32") Case $msg = $GUI_Button_Back guictrlsetstyle($s,$WS_CLIPCHILDREN) Case $msg = $GUI_Button_Forward $oIE.GoForward Case $msg = $GUI_Button_Stop $oIE.Stop EndSelect Wend GUIDelete () Exit ;END ;how to make the object view by icon (auto adjust);please help me some1 , please !~~~~~ ;i just wan view by icon
  11. ;START #include <GUIConstants.au3> $oIE = ObjCreate("Shell.Explorer.2") $s=GUICreate ("test", 640, 580,(@DesktopWidth-640)/2, (@DesktopHeight-580)/2, BitOr($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS, $WS_CLIPCHILDREN)) $GUIActiveX = GUICtrlCreateObj ( $oIE, 10, 40 , 600 , 360 ) $GUI_Button_Back = GuiCtrlCreateButton ("Back", 10, 420, 100, 30) $GUI_Button_Forward = GuiCtrlCreateButton ("Forward", 120, 420, 100, 30) $GUI_Button_Home = GuiCtrlCreateButton ("Home", 230, 420, 100, 30) $GUI_Button_Stop = GuiCtrlCreateButton ("Stop", 330, 420, 100, 30) GUISetState() $oIE.navigate("C:\Documents and Settings") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $GUI_Button_Home $oIE.navigate("C:\windows\system32") Case $msg = $GUI_Button_Back guictrlsetstyle($s,$WS_CLIPCHILDREN) Case $msg = $GUI_Button_Forward $oIE.GoForward Case $msg = $GUI_Button_Stop $oIE.Stop EndSelect Wend GUIDelete () Exit ;END ;how to make the object view by icon (auto adjust);please help me some1 ~~~
×
×
  • Create New...