Jump to content

Stanislav

Members
  • Posts

    3
  • Joined

  • Last visited

Stanislav's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Oh! Now I got it - there are 2 limits, MAXCALLRECURSE and MAXEXECUTERECURSE: Maximum number of times functions can recurse to themselves (5100). Thank you!
  2. Why not just pass the counter to the function as a parameter? _Function1() Func _Function1($iCounter=1) If MsgBox(1, "_Function1", "I was called " & $iCounter & " time(s)") = 2 Then Exit EndIf $iCounter +=1 _Function1($iCounter) EndFunc
  3. If you only need to scroll down to the bottom of the page, there is a hotkey for that - just send "{END}" key to the IE window. #include <IE.au3> $oIE = _IECreate("http://www.autoitscript.com/forum/topic/124829-how-to-get-the-position-of-the-scrollbar-in-the-page/") $hwnd = _IEPropertyGet($oIE, "hwnd") ControlSend($hwnd, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{END}")
×
×
  • Create New...