What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] Timezone v1.01.024

Pages: (20): « First « 6 7 8 9 [ 10 ] 11 12 13 14 » Last »
[Release] Timezone v1.01.024
Author: Message:
Joereynolds89
Junior Member
**


Posts: 69
Joined: Jul 2006
RE: [Release] Timezone
whats the position to get the timezone bar over where the search bar once was? well still is on peopel that dont patch :P
09-01-2006 09:39 PM
Profile E-Mail PM Find Quote Report
Zayl
Junior Member
**


Posts: 27
Joined: Jun 2006
RE: [Release] Timezone
Very intelligent script ^^
09-01-2006 10:34 PM
Profile E-Mail PM Find Quote Report
Shondoit
Full Member
***

Avatar
Hmm, Just Me...

Posts: 227
Reputation: 15
35 / Male / Flag
Joined: Jul 2006
O.P. RE: [Release] Timezone
I don't know why people are still having trouble with the Tabs...
I fixed that in the latest version, so I thought

I'm gonna release a new version, with Debug so I can find the problem easier



I patched the search button, so if you could post the commands, SpunkyLoveMuff... you should use /TZBottom and /TZRight, this should also help for the Tabs, at the moment...

-edit- The new release also supports MP!L color tags, and format tags


When you need support or want to help test the script, give feedback, you can add me: shondoit@hotmail.com

This post was edited on 09-01-2006 at 10:42 PM by Shondoit.
My scripts:                            [Image: shondoit.gif]
+ Timezone
+ Camelo
+ Multisearch
09-01-2006 10:38 PM
Profile PM Find Quote Report
Shondoit
Full Member
***

Avatar
Hmm, Just Me...

Posts: 227
Reputation: 15
35 / Male / Flag
Joined: Jul 2006
O.P. RE: [Release] Timezone v1.01.07
-update- Version 1.01.07

Added Debug
and Color and format support
Change the mask to something like '[b]HH:mm[ /b]:ss'

Also fixed the bug of clicking on the timer, and pressing escape wich crashed the script, The timer doesn't close anymore

This post was edited on 09-01-2006 at 11:50 PM by Shondoit.
My scripts:                            [Image: shondoit.gif]
+ Timezone
+ Camelo
+ Multisearch
09-01-2006 11:44 PM
Profile PM Find Quote Report
Knucks
Full Member
***

Avatar

Posts: 118
Reputation: 9
33 / Male / Flag
Joined: Mar 2005
RE: [Release] Timezone v1.01.07
Hmm, I was wondering how you would set the time difference for somewhere which has say 3:30 hours? I have only got 1 digit to work. Is there support for that yet or am I missing something? :P

This post was edited on 09-02-2006 at 12:54 AM by Knucks.
It all happened 6980 days, 21 hours, 18 minutes, 23 seconds ago... :D
09-02-2006 12:53 AM
Profile E-Mail PM Web Find Quote Report
artfuldodga
Full Member
***

Avatar

Posts: 178
Joined: Mar 2006
RE: [Release] Timezone v1.01.07
as with my previous post... the default position is ok when im not in a tabbed conversation, once i go into a tabbed convo (tabs being at the top) .. the clock goes out of alignment... and setting it to TZFixTabs true... doesn't do anything? :)

don't know what to do..
09-02-2006 01:45 AM
Profile PM Find Quote Report
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
RE: [Release] Timezone v1.01.07
Don't know if you'd be interested, but I come up with an idea for Winamp Controller, you could use it for Timezone if you wanted. That's if you wanted to include it and come up with the code. Much easier then using commands and entering the amount of pixels.

I was thinking that you could change the amount of pixels that the arrows move the clock Ex. Default is 10, but a textbox lets the user change it?
[Image: positioning2pi0.png]
Twitter: @ChrisLozeau
09-02-2006 01:57 AM
Profile PM Find Quote Report
Shondoit
Full Member
***

Avatar
Hmm, Just Me...

Posts: 227
Reputation: 15
35 / Male / Flag
Joined: Jul 2006
O.P. RE: [Release] Timezone v1.01.07
@artfuldodga, please post the text from the Debug window...

@Chris4, I already said numerous of times,  I'm gonna add a GUI.
It is going to be something different than what you posted, but thanks for the idea anyway

-edit- 100th POST :D

This post was edited on 09-02-2006 at 07:19 AM by Shondoit.
My scripts:                            [Image: shondoit.gif]
+ Timezone
+ Camelo
+ Multisearch
09-02-2006 07:11 AM
Profile PM Find Quote Report
phalanxii
Full Member
***


Posts: 146
Reputation: 5
32 / Male / Flag
Joined: Aug 2006
Status: Away
RE: [Release] Timezone v1.01.07
I think the problem with the tabbed chats is because /^.+\s-\s.+\r\n\((\d+)\s.+\)$/i.test(OwnerTitle) returns false, even with tabbed chats, meaning my debug window reads:
quote:
HasTabs = false
I fixed this by changing the expression to (OwnerTitle.substr(OwnerTitle.length - 14) == " tabbed chats)"), and now it works perfectly!

The code that works for me:
code:
function OnEvent_Timer (TimerId) {

    ...

if (S.FixTabs){
    var OwnerWindow = Interop.Call("User32.dll", "GetWindow", ChatWnd.Handle, 4)
    if (OwnerWindow != 0) {
        if (dbg) Debug.Trace("Chat hWnd:" + ChatWnd.Handle + " has Owner hWnd:" + OwnerWindow)
        var aTitle = Interop.Allocate(640)
        Interop.Call("User32.dll", "GetWindowTextW", OwnerWindow, aTitle, 640)
        var OwnerTitle = aTitle.ReadString(0)
        if (dbg) Debug.Trace("\tTitle = " + OwnerTitle)
        if (dbg) Debug.Trace("\tHasTabs = " + (OwnerTitle.substr(OwnerTitle.length - 14) == " tabbed chats)"))
        if (OwnerTitle.substr(OwnerTitle.length - 14) == " tabbed chats)") {
            var PosTop = (Shell.RegRead("HKCU\\Software\\Patchou\\Messenger Plus! Live\\" + Messenger.MyEmail + "\\Preferences\\TabChatPosition") * 1 == 0)
            if (dbg) Debug.Trace((PosTop) ? "\tPosition = Top" : "\tPosition = Left")
            if (PosTop) {
                if (S.Top) _y += 28
            } else {
                if (S.Left) _x += Shell.RegRead("HKCU\\Software\\Patchou\\Messenger Plus! Live\\" + Messenger.MyEmail + "\\Preferences\\TabChatMinSize") * 1
            }
        }
    }

    ...

}
I hope you don't mind me editing the script. :S
09-02-2006 08:57 AM
Profile PM Find Quote Report
Shondoit
Full Member
***

Avatar
Hmm, Just Me...

Posts: 227
Reputation: 15
35 / Male / Flag
Joined: Jul 2006
O.P. RE: [Release] Timezone v1.01.07
I don't mind you changing it, but it doesn't work for me now, as I'm using the dutch version MP!L, and it doesn't say 'Tabbed chats'

Could you also post the Title of the Owner window, it should show up in the debug window...
My scripts:                            [Image: shondoit.gif]
+ Timezone
+ Camelo
+ Multisearch
09-02-2006 09:02 AM
Profile PM Find Quote Report
Pages: (20): « First « 6 7 8 9 [ 10 ] 11 12 13 14 » 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