Pottery 0 Posted July 23, 2010 (edited) I know Valuator made MyPCTweet and since he didn't release the source code I don't know how long his code is but I made this little snippet for anyone that wants to make use of it. #include <INet.au3> #include <String.au3> $URL = 'https://twitter.com/user' While 1 $TWIT = _INetGetSource($URL) $TWIT2 = _StringBetween($TWIT, '<span class="entry-content">', '</span>') If Not @error Then If $TWIT2[0] = 'HI' Then MsgBox(0, '', 'HI') EndIf EndIf WEnd Just edit in whatever functions you want it to do with certain status updates and run it Edited July 23, 2010 by Epdmk Share this post Link to post Share on other sites