Is this possible with autoit ?

01/28/2015 23:29 mlukac89#1
Hi

I want to know is it possible to read source code of webpage in mozilla opera or chrome because i saw one topic on my laguage that u can see who is watching your profile.

U open ur profile page, right click -> view page source -> press CTRL F, then u got a little form in right top corner ( chrome ) and u type InitialChat and press enter, there is many results and u will see something like this "100000199976799-2" and u need only to copy a number to the -2 like 100000199976799 then type in [Only registered and activated users can see links. Click Here To Register...] and that opens profile of person u have chat or person that look your page.

So can it be made in list only ? or its impossible to make this ?
01/29/2015 00:14 alpines#2
There are some profiles but they're not the ones who were the latest visit on your profile.
And yes it is possible, why shouldn't it be possible?

Either use IE.au3 / FF.au3 / Chrome.au3 or a facebook udf and RegEx the profiles.
01/29/2015 01:12 mlukac89#3
I tryed this but it copy me a content from clipboard and dont focus on window

Code:
$browserlistdatamax = 2
$browserlistmax = 3
$link = "No browser found"

Dim $browserlist[$browserlistmax][$browserlistdatamax]

$browserlist[0][0] = "[CLASS:MozillaWindowClass]"
$browserlist[1][0] = "[CLASS:IEFrame]"
$browserlist[2][0] = "[CLASS:Chrome_WidgetWin_1]"

For $i = 0 To $browserlistmax-1; loop through browser list. catch the first browser we find, let all the other ones go

	If WinExists($browserlist[$i][0]) = 1 Then; check if each browser is running
		Local $browser = $browserlist[$i][0]
		WinActivate($browser)
		WinWaitActive($browser)

		Sleep(50)
		Send("{F6}")
		Sleep(200)
		Send ("^c")

		$link= ClipGet()
	  ExitLoop

	EndIf ; end if winexists($browserlist[$i][0])

Next; end for $browserlistmax-1

MsgBox(0, "browser address:", $link)

Exit
01/31/2015 01:31 mlukac89#4
:confused: