What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » idea!! note plugin

Pages: (2): « First [ 1 ] 2 » Last »
idea!! note plugin
Author: Message:
trev
New Member
*

Avatar

Posts: 4
35 / Male / –
Joined: Jul 2004
O.P. idea!! note plugin
Is there a note plugin so if you did

code:
/note joke

in your chat log it would say

[/code]
[12:07:54] trev : hi
[12:08:11] Joke
[12:09:27] bob : hello
[/code]

if you put a note the other person is unable to see it in the im screen!!

This post was edited on 07-13-2004 at 06:00 PM by trev.
07-13-2004 05:58 PM
Profile E-Mail PM Find Quote Report
Stigmata
Veteran Member
*****



Posts: 3520
Reputation: 45
20 / Other / Flag
Joined: Jul 2003
RE: idea!! note plugin
i like this idea... very good :)


please patch add it

note this wont be possible with a plugin

This post was edited on 07-13-2004 at 06:09 PM by Stigmata.
07-13-2004 06:00 PM
Profile PM Web Find Quote Report
crank
Full Member
***

Avatar
Failed to come back here :(

Posts: 304
Reputation: 17
34 / Male / Flag
Joined: Mar 2004
Status: Away
RE: idea!! note plugin
quote:
Originally posted by trev
Is there a note plugin so if you did


I don't think that's possible with a plugin. It has to do with the way plus! saves the logs...
I haven't been active here in ages.
If you're wondering who i am, read my reputations. I used to make plugins, skins and spam the IRC channels here back in the good old days before Windows Live.
07-13-2004 06:08 PM
Profile E-Mail PM Web Find Quote Report
Millenium_edition
Veteran Member
*****

Avatar

Posts: 1787
Reputation: 57
Joined: Apr 2003
RE: idea!! note plugin
Set your nick to alt+0173 and use / me
07-13-2004 07:54 PM
Profile E-Mail PM Find Quote Report
trev
New Member
*

Avatar

Posts: 4
35 / Male / –
Joined: Jul 2004
O.P. RE: idea!! note plugin
yes but they will be able to see it
07-14-2004 07:23 AM
Profile E-Mail PM Find Quote Report
Sk3tch
Veteran Member
*****

Avatar
We are Samurai, the keyboard cowboys

Posts: 1675
Reputation: 4
38 / Male / –
Joined: Jul 2003
RE: idea!! note plugin
I like this idea...   would be useful for a 'keyword' to search for in the logs..


but if its just about the logs.. and you don’t need to actually see the note in the convo..  it could be done easily in a plugin right? Just open the log, assign the note and close..  :P


nice to see a new idea btw :)
Sk3tch@Microsoft.com - Email
- 53 6B 33 74 63 68 34 64@hotmail.com - Messenger
07-14-2004 08:07 AM
Profile E-Mail PM Web Find Quote Report
Guido
Elite Member
*****

Avatar
Design is Safety

Posts: 4566
Reputation: 50
37 / Male / Flag
Joined: Dec 2002
RE: idea!! note plugin
I definitely agree with the idea. Great (Y)


This post was edited on 07-14-2004 at 02:00 PM by Guido.
07-14-2004 01:47 PM
Profile E-Mail PM Web Find Quote Report
Wouter
Full Member
***

Avatar

Posts: 252
Reputation: 3
38 / Male / –
Joined: Jul 2003
Status: Away
RE: idea!! note plugin
code:
Public Function ParseCommand(ByVal sCommand As String, ByVal sCommandArg As String, ByVal oConversationWnd As Object, ByRef sResult As String) As Boolean
    If (StrComp(LCase(sCommand), "/xnote", vbTextCompare) = 0) Then
        Open getstring(HKEY_CURRENT_USER, "Software\Patchou\MsgPlus2\wouter@reclames.net\Archive\" & email & ".txt", "FileName") For Append As #1
        Print #1, "[" & Time & "] " & sCommandArg
        Close 1
        'Send back an empty string to cancel the message
        sResult = ""
        ParseCommand = True
        Exit Function
    End If
   
    'Give other plugins a chance to parse this command
    ParseCommand = False
End Function


code:
Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal Hkey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Declare Function RegQueryValueEx Lib "advapi32.dll" Alias "RegQueryValueExA" (ByVal Hkey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, lpType As Long, lpData As Any, lpcbData As Long) As Long

Public Const HKEY_CLASSES_ROOT = &H80000000
Public Const HKEY_CURRENT_USER = &H80000001
Public Const HKEY_LOCAL_MACHINE = &H80000002
Public Const HKEY_USERS = &H80000003
Public Const HKEY_PERFORMANCE_DATA = &H80000004
Public Const ERROR_SUCCESS = 0&
Public Const REG_SZ = 1

Public Function getstring(Hkey As Long, strPath As String, strValue As String)
    Dim keyhand As Long
    Dim datatype As Long
    Dim lResult As Long
    Dim strBuf As String
    Dim lDataBufSize As Long
    Dim intZeroPos As Integer
    r = RegOpenKey(Hkey, strPath, keyhand)
    lResult = RegQueryValueEx(keyhand, strValue, 0&, lValueType, ByVal 0&, lDataBufSize)


    If lValueType = REG_SZ Then
        strBuf = String(lDataBufSize, " ")
        lResult = RegQueryValueEx(keyhand, strValue, 0&, 0&, ByVal strBuf, lDataBufSize)


        If lResult = ERROR_SUCCESS Then
            intZeroPos = InStr(strBuf, Chr$(0))


            If intZeroPos > 0 Then
                getstring = Left$(strBuf, intZeroPos - 1)
            Else
                getstring = strBuf
            End If
        End If
    End If
End Function

[Image: 1497.jpg]      [Image: qbase.jpg]
07-14-2004 04:51 PM
Profile E-Mail PM Web Find Quote Report
Mike
Elite Member
*****

Avatar
Meet the Spam Family!

Posts: 2795
Reputation: 48
31 / Male / Flag
Joined: Mar 2003
Status: Online
RE: idea!! note plugin
That wont print it to the convo window.
YouTube closed-captions ripper (also allows you to download videos!)
07-14-2004 04:54 PM
Profile E-Mail PM Web Find Quote Report
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: idea!! note plugin
Wouter, I doubt this works perfectly: Plus! doesn't save chat logs on the fly :)
07-14-2004 04:55 PM
Profile PM Web Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On