[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
|
|
09-01-2006 09:39 PM |
|
|
Zayl
Junior Member
Posts: 27
Joined: Jun 2006
|
RE: [Release] Timezone
Very intelligent script ^^
|
|
09-01-2006 10:34 PM |
|
|
Shondoit
Full Member
Hmm, Just Me...
Posts: 227 Reputation: 15
36 / /
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.
|
|
09-01-2006 10:38 PM |
|
|
Shondoit
Full Member
Hmm, Just Me...
Posts: 227 Reputation: 15
36 / /
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.
|
|
09-01-2006 11:44 PM |
|
|
Knucks
Full Member
Posts: 118 Reputation: 9
34 / /
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?
This post was edited on 09-02-2006 at 12:54 AM by Knucks.
It all happened 7185 days, 17 hours, 11 minutes, 47 seconds ago...
|
|
09-02-2006 12:53 AM |
|
|
artfuldodga
Full Member
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 |
|
|
Chris4
Elite Member
Posts: 4461 Reputation: 84
33 / /
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?
|
|
09-02-2006 01:57 AM |
|
|
Shondoit
Full Member
Hmm, Just Me...
Posts: 227 Reputation: 15
36 / /
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
This post was edited on 09-02-2006 at 07:19 AM by Shondoit.
|
|
09-02-2006 07:11 AM |
|
|
phalanxii
Full Member
Posts: 146 Reputation: 5
32 / /
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.
|
|
09-02-2006 08:57 AM |
|
|
Shondoit
Full Member
Hmm, Just Me...
Posts: 227 Reputation: 15
36 / /
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...
|
|
09-02-2006 09:02 AM |
|
|
Pages: (20):
« First
«
6
7
8
9
[ 10 ]
11
12
13
14
»
Last »
|
|