I download from first post from author FB_UDF.au3 and this one
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#include <String.au3>
#include 'WinHttp.au3'
#include 'FB_UDF.au3'
$hStart = _FBStart()
$sMail = "" ; your email
$sPW = "" ; your pass
$hLogin = _FBLogin($hStart, $sMail, $sPW)
MsgBox(0, "Facebook", $hLogin)
$page = _FBPageGetData($hStart, $hLogin)
$Form1 = GUICreate("Test", 562, 437, 192, 124)
;$List1 = GUICtrlCreateList("", 8, 8, 409, 409)
$List1 = _FBCreateList($page[0], $page[1], $page[2], 8, 8, 409, 409)
$Button1 = GUICtrlCreateButton("Ausgewähltes Liken", 424, 160, 129, 49)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_FBLikeThisPage($hStart, $hLogin, $List1)
EndSwitch
WEnd
here is link i ziped all files
[Only registered and activated users can see links. Click Here To Register...]