jump to navigation

AutoIt v3.2.12.1 released (12th June 2008) 12 June 2008

Posted by it2tp in AutoIt.
Tags:
add a comment

Autoscrolling listboxes in AutoIt 20 May 2008

Posted by it2tp in AutoIt.
Tags: ,
add a comment

To add autoscroll functionality to listboxes in AutoIt add this Include:

#include <GuiListBox.au3>

Add a function, call it for example _AutoScroll:

Func _AutoScroll()
_GUICtrlListBox_SetTopIndex($ListName, _GUICtrlListBox_GetListBoxInfo($ListName) – 1) ; Autoscroll to end of ListBox !
EndFunc ;==>_AutoScroll

Then, each time you write to the listbox add a call to
_AutoScroll()

AutoIt v3.2.12.0 released (16th May 2008) 19 May 2008

Posted by it2tp in AutoIt.
Tags:
add a comment

A new version of AutoIt has been released.

See http://www.autoitscript.com/autoit3/ for more info.

There are some important changes, more specifically in the include files. If your script has some GUI functionality which doesn’t work anymore, check out the forum here, for a handsome script which searches through your script and adds the necessary includes:

http://www.autoitscript.com/forum/index.php?showtopic=70902.

Script to find the Outlook Temporary folder (also known as the OLK folder) 6 May 2008

Posted by it2tp in AutoIt, Outlook.
Tags: , ,
1 comment so far

I have made a small AutoIt script which checks in the registry where to find the OLK temporary folder and then opens it. You can download the script here (zipped EXE file; AutoIt source code is not included).

More info about the Outlook Temporary folder, with a clear explanation can be found on groovypost.com.