mshtml.
text = document1.body.outerHTML;
writer1.Write(text);
writer1.Close();this writes it to the text... now of course i figured i could just do an Indexof("New Comments") but...myspace website code is wierd.. take a look at this..<DIV class="show indicator" id=indicatorMail><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_MessageHL href="http://messaging.myspace.com/index.cfm?fuseaction=mail.inbox&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> <SPAN class=txtRed>New Messages! </SPAN></A></DIV><DIV class="hide indicator" id=indicatorFriendRequest><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink1 href="http://messaging.myspace.com/index.cfm?fuseaction=mail.friendRequests&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Friend Requests!</A> </DIV><DIV class="hide indicator" id=indicatorComments><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink2 href="http://comment.myspace.com/index.cfm?fuseaction=user.viewComments&friendID=20010775&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Comments!</A> </DIV><DIV class="hide indicator" id=indicatorImageComments><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink3 href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=20010775&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Picture Comments!</A> </DIV><DIV class="hide indicator" id=indicatorBlogComments><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink4 href="http://blog.myspace.com/index.cfm?fuseaction=blog.controlcenter&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Blog Comments!</A> </DIV><DIV class="hide indicator" id=indicatorBlogs><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink5 href="http://blog.myspace.com/index.cfm?fuseaction=blog.controlcenter&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Blog Subscription Posts!</A> </DIV><DIV class="show indicator" id=indicatorEvents><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink6 href="http://messaging.myspace.com/index.cfm?fuseaction=mail.eventInvite&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_invite_b_white.gif" align=middle> New Event Invitation!</A> </DIV><DIV class="hide indicator" id=indicatorBirthday><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink7 href="http://collect.myspace.com/index.cfm?fuseaction=user.birthdays&friendID=20010775&userName=Kevin&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_present.gif" align=middle> New Birthdays!</A> </DIV><DIV class="hide indicator" id=indicatorVideoComments><A id=ctl00_Main_ctl00_MessageCenter1_Indicators1_HyperLink8 href="http://vids.myspace.com/index.cfm?fuseaction=vids.myvideos&MyToken=7ff09815-afe3-4ce6-8ac3-0eceb1aaf0f0"><IMG class=indicator alt="" src="http://x.myspace.com/images/icon_envelope.gif" align=middle> New Video Comments!</A> </DIV>as you can see they made up a table and depending on if you have them or not it changes its class to show inficator or hide indicator.... now my question is...isnt there a way with mshtml that i can goto a specific ID like id=indicatorVideoComments and then see if the class is hidden or showing, thus indicating you have new messages...ect? im not sure where to look for a code like this so any help on this would be appreciated.