How

Discussion in 'Gaming' started by cycan, Oct 22, 2005.

  1. cycan

    cycan Well-Known Member

    Posts:
    443
    Likes Received:
    0
    Joined:
    Apr 18, 2005
    Three is an option on msn that lets you veiw the privious persons chat. So I dont know it. Pelase tell me. I know that there is a option click that saves the chat in a folder but dont know where please help me.
     
  2. XxLostXx

    XxLostXx Well-Known Member

    Age:
    34
    Posts:
    803
    Likes Received:
    0
    Joined:
    Aug 22, 2005
    Location:
    homeless
    Here we go buddy: (see by message history)

    [​IMG]
     
  3. -=DaRKSTaR=-

    -=DaRKSTaR=- Senior Member

    Age:
    39
    Posts:
    3,949
    Likes Received:
    0
    Joined:
    Mar 30, 2005
    Location:
    England, UK
    If you want to view the message history right click the user and click view message history - The default firectory is in my documents if you save chat logs

    I hope it helps ;)
     
  4. Katiebob

    Katiebob Well-Known Member

    Posts:
    51
    Likes Received:
    0
    Joined:
    Oct 8, 2005
    Location:
    United States Central
    I was reading the post then i saw Darkstars sig area lol geeze man.
     
  5. cycan

    cycan Well-Known Member

    Posts:
    443
    Likes Received:
    0
    Joined:
    Apr 18, 2005
    When I go to the history this file is threre MessageLog.xsl now what do I do?
     
  6. Wolf

    Wolf Well-Known Member

    Posts:
    88
    Likes Received:
    0
    Joined:
    Oct 10, 2005
    open it in notepad or ie
     
  7. cycan

    cycan Well-Known Member

    Posts:
    443
    Likes Received:
    0
    Joined:
    Apr 18, 2005
    This comes:

    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">


    <xsl:variable name='ColumnHeader_Date'>Date</xsl:variable>
    <xsl:variable name='ColumnHeader_Time'>Time</xsl:variable>
    <xsl:variable name='ColumnHeader_From'>From</xsl:variable>
    <xsl:variable name='ColumnHeader_To'>To</xsl:variable>
    <xsl:variable name='ColumnHeader_Message'>Message</xsl:variable>


    <xsl:variable name='Debug'>0</xsl:variable>

    <xsl:variable name='TableStyle'>font-family:Verdana; font-size:67%; text-align:left; vertical-align:top; table-layout:fixed</xsl:variable>
    <xsl:variable name='GutterStyle'>width:2ex</xsl:variable>
    <xsl:variable name='HeaderStyle'>border-bottom:1 solid black</xsl:variable>

    <xsl:variable name='UseZebraStripe'>1</xsl:variable>
    <xsl:variable name='ZebraStripeStyle'>background-color:#e0edff</xsl:variable>

    <xsl:variable name='MostRecentSessionFirst'>0</xsl:variable>


    <xsl:template match="Log">

    <html dir='ltr'>
    <head>
    <title>
    Message Log for <xsl:value-of select="@LogonName"/>
    <xsl:if test="$Debug = 1"> (Debug)</xsl:if>
    </title>

    <xsl:if test="$Debug = 1">

    Debug Version

    <hr/>
    </xsl:if>
    </head>

    <body style='margin:0'>

    <table id='BodyTable' style="{$TableStyle}" cellspacing='0'>

    <xsl:if test="$Debug = 1">
    <col style="vertical-align:top; width:5ex;"/>
    <col style='{$GutterStyle}' />
    </xsl:if>

    <col style="width:16ex;"/>
    <col style='{$GutterStyle}' />
    <col style="width:16ex;"/>
    <col style='{$GutterStyle}' />
    <col style="width:21ex;"/>
    <col style='{$GutterStyle}' />
    <col style="width:21ex;"/>
    <col style='{$GutterStyle}' />
    <col style="width:70ex;"/>

    <thead>
    <tr>
    <xsl:if test="$Debug = 1">
    <th style="{$HeaderStyle}">SID</th>
    <th/>
    </xsl:if>
    <th style="{$HeaderStyle}">
    <xsl:value-of select="$ColumnHeader_Date"/>
    </th>
    <th/>
    <th style="{$HeaderStyle}">
    <xsl:value-of select="$ColumnHeader_Time"/>
    </th>
    <th/>
    <th style="{$HeaderStyle}">
    <xsl:value-of select="$ColumnHeader_From"/>
    </th>
    <th/>
    <th style="{$HeaderStyle}">
    <xsl:value-of select="$ColumnHeader_To"/>
    </th>
    <th/>
    <th style="{$HeaderStyle}">
    <xsl:value-of select="$ColumnHeader_Message"/>
    </th>
    </tr>
    </thead>

    <tbody style='vertical-align:top'>
    <xsl:choose>


    <xsl:when test="$MostRecentSessionFirst = 1">
    <xsl:apply-templates>
    <xsl:sort select='@SessionID' order='descending' data-type='number'/>
    <xsl:sort select='@DateTime' order='ascending'/>
    </xsl:apply-templates>
    </xsl:when>


    <xsl:eek:therwise>
    <xsl:apply-templates>
    <xsl:sort select='@SessionID' order='ascending' data-type='number'/>
    <xsl:sort select='@DateTime' order='ascending'/>
    </xsl:apply-templates>
    </xsl:eek:therwise>

    </xsl:choose>
    </tbody>
    </table>
    </body>
    </html>

    </xsl:template>


    <xsl:template match="Message">
    <tr>
    <xsl:call-template name="CommonMessageProcessing" />

    <td> <xsl:apply-templates select="From/User"/> </td>
    <td/>
    <td> <xsl:apply-templates select="To/User"/> </td>
    <td/>
    <td>

    <xsl:attribute name="style">
    <xsl:value-of select="Text/@Style"/>
    </xsl:attribute>
    <xsl:value-of select="Text"/>

    </td>
    </tr>
    </xsl:template>


    <xsl:template match="Invitation|InvitationResponse|Join|Leave">
    <tr>
    <xsl:call-template name="CommonMessageProcessing" />

    <td/>
    <td/>
    <td/>
    <td/>
    <td>

    <xsl:attribute name="style">
    <xsl:value-of select="Text/@Style"/>
    </xsl:attribute>
    <xsl:value-of select="Text"/>

    </td>
    </tr>
    </xsl:template>


    <xsl:template match="User">

    <xsl:if test="position() != 1">, </xsl:if>

    <xsl:value-of select="@FriendlyName"/>
    </xsl:template>


    <xsl:template name="CommonMessageProcessing">

    <xsl:if test="$UseZebraStripe = 1">
    <xsl:if test="(@SessionID mod 2) = 1">
    <xsl:attribute name="style">
    <xsl:value-of select="$ZebraStripeStyle"/>
    </xsl:attribute>
    </xsl:if>
    </xsl:if>

    <xsl:if test="$Debug = 1">
    <td> <xsl:value-of select="@SessionID"/> </td>
    <td/>
    </xsl:if>

    <td> <xsl:value-of select="@Date"/> </td>
    <td/>
    <td> <xsl:value-of select="@Time"/> </td>
    <td/>
    </xsl:template>


    </xsl:stylesheet>
     
  8. XxLostXx

    XxLostXx Well-Known Member

    Age:
    34
    Posts:
    803
    Likes Received:
    0
    Joined:
    Aug 22, 2005
    Location:
    homeless
    You opened the wrong file...There's supposed to be individual notepad documents with the saved conversations.
     
  9. cycan

    cycan Well-Known Member

    Posts:
    443
    Likes Received:
    0
    Joined:
    Apr 18, 2005
    I only have .xml and .xsl files
     
  10. BLu1

    BLu1 Well-Known Member

    Posts:
    199
    Likes Received:
    0
    Joined:
    Jul 30, 2005
    Shouldn't msn messenger open the files.
     

Share This Page