Précédent   Forums CustomXP > CustomXP > Actualité
Actualité
Suivez toute l'actu de CustomXP.net

Discussion fermée
#21
Vieux 02/12/2009, 09h11
Lefreut
-
Avatar de Lefreut
Team CustomXP.net
Date d'inscription : août 2003
Messages : 5 816
Lefreut est déconnecté
Hi,

Change "GlowMethod" from "New" to "Old" in the two skin.ini files of the skin.

Haut de page
#22
Vieux 02/12/2009, 11h34
Kubaant
-
Avatar de Kubaant
Basic
Date d'inscription : décembre 2009
Messages : 2
Kubaant est déconnecté
Citation:
Envoyé par Lefreut Voir le message
Hi,

Change "GlowMethod" from "New" to "Old" in the two skin.ini files of the skin.
THX ! It Work ! so, i have another question: how to remove in maximize window left right and bottom bar ?

Haut de page
#23
Vieux 29/12/2009, 16h44
clupman
-
Basic
Date d'inscription : décembre 2009
Messages : 2
clupman est déconnecté
Bonjour,
Merci pour ce thème qui est vraiment extraordinaire.
J'ai un petit souci avec File maker Pro9 : lorsque TT est activé, je n'ai plus mes menus déroulants dans FM9.J'ai testé plusieurs fois, car il me semblait difficile d’imaginer le lien de cause à effet…mais oui, lorsque je ferme TT mes menus déroulants dans l’application sont à nouveau présents !
Est-il possible d'éditer soi-même la liste d'exclusion de TT?
D’avance merci pour votre réponse et aussi pour votre travail fantastique que vous n’hésitez pas à partager.

Haut de page
#24
Vieux 29/12/2009, 18h01
rhahgleuhargh
-
Basic
Date d'inscription : septembre 2009
Messages : 25
rhahgleuhargh est déconnecté
Citation:
Envoyé par clupman Voir le message
Bonjour,
Merci pour ce thème qui est vraiment extraordinaire.
J'ai un petit souci avec File maker Pro9 : lorsque TT est activé, je n'ai plus mes menus déroulants dans FM9.J'ai testé plusieurs fois, car il me semblait difficile d’imaginer le lien de cause à effet…mais oui, lorsque je ferme TT mes menus déroulants dans l’application sont à nouveau présents !
Est-il possible d'éditer soi-même la liste d'exclusion de TT?
D’avance merci pour votre réponse et aussi pour votre travail fantastique que vous n’hésitez pas à partager.
'lut,
Oui, tu peux éditer la liste des programmes à exclure. Eteins TT d'abord.
Ouvre avec le bloc notes windows le fichier "exclude.dat" situé dans le répertoire où tu as installé TT, et ajoute à la fin de la liste sur une nouvelle ligne le nom de l'exécutable de ton programme (tu devrais obtenir un truc comme n="FM9.exe"). Enregistre la modification, et redémarre TT.

Haut de page
#25
Vieux 29/12/2009, 18h32
clupman
-
Basic
Date d'inscription : décembre 2009
Messages : 2
clupman est déconnecté
Citation:
Envoyé par rhahgleuhargh Voir le message
'lut,
Oui, tu peux éditer la liste des programmes à exclure. Eteins TT d'abord.
Ouvre avec le bloc notes windows le fichier "exclude.dat" situé dans le répertoire où tu as installé TT, et ajoute à la fin de la liste sur une nouvelle ligne le nom de l'exécutable de ton programme (tu devrais obtenir un truc comme n="FM9.exe"). Enregistre la modification, et redémarre TT.
Super,
Merci pour le "coup de main" .
Maintenant, je peux continuer à profiter de TT en travaillant avec FM9.
Merci beaucoup.
(PS.: n="FileMaker Pro.exe")
Dernière modification par clupman ; 29/12/2009 à 18h38.

Haut de page
#26
Vieux 15/01/2010, 04h38
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
Hi,
I'm a C++ coder and i want to know whether the TT would be updated some day since the releasing of the windows 7.
I may suggest you something about the TT' developing: One is about the moving of a window. The TT seems using MoveWindow or SetWindowPos to move the 'cliented'-main window when user drag the title of the window by mouse. however it shows asynchronized moving. I suggest you to use BeginDeferWindowPos-DeferWindowPos-EndDeferWindowPos instead of other APIs to moving glass-rectangle and its clipped main window. Although it may let you write more code in there. But, because the glass-rectangle must be moved by DeferWindowPos not by system directly in this method, the mouse-click-and-drag must also be emulated by loging the mouse-clicked coordinate => set mouse capture => move => release capture when a WM_RBUTTONUP was recieved.
The other is ... All right, i forgot now, i will tell you later if i remembered.

Haut de page
#27
Vieux 15/01/2010, 05h16
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
The other thing is, when used the Asian languaged XP (like Chinese ver.), The title-text on the window's title-bar could be draw corrupted if the title string contains the local-language characters. I don't know how this bug comes out. I guess that you have used the GDI api to draw text string to a per-pixel-alpha bitmap(trsnf from PNG). Most of them do not check the null-terminating character for ending string, they always use the legth you provided to as the real length of the string. so you guys passed incorrected value as the length, caused more characters after a null-terminating character also being painted out.

Haut de page
#28
Vieux 15/01/2010, 10h27
Lefreut
-
Avatar de Lefreut
Team CustomXP.net
Date d'inscription : août 2003
Messages : 5 816
Lefreut est déconnecté
Hi,

Citation:
Envoyé par fire_rabbit Voir le message
Hi,
I'm a C++ coder and i want to know whether the TT would be updated some day since the releasing of the windows 7.
I may suggest you something about the TT' developing: One is about the moving of a window. The TT seems using MoveWindow or SetWindowPos to move the 'cliented'-main window when user drag the title of the window by mouse. however it shows asynchronized moving. I suggest you to use BeginDeferWindowPos-DeferWindowPos-EndDeferWindowPos instead of other APIs to moving glass-rectangle and its clipped main window. Although it may let you write more code in there. But, because the glass-rectangle must be moved by DeferWindowPos not by system directly in this method, the mouse-click-and-drag must also be emulated by loging the mouse-clicked coordinate => set mouse capture => move => release capture when a WM_RBUTTONUP was recieved.
The other is ... All right, i forgot now, i will tell you later if i remembered.
I already use DeferWindowPos

Citation:
Envoyé par fire_rabbit Voir le message
The other thing is, when used the Asian languaged XP (like Chinese ver.), The title-text on the window's title-bar could be draw corrupted if the title string contains the local-language characters. I don't know how this bug comes out. I guess that you have used the GDI api to draw text string to a per-pixel-alpha bitmap(trsnf from PNG). Most of them do not check the null-terminating character for ending string, they always use the legth you provided to as the real length of the string. so you guys passed incorrected value as the length, caused more characters after a null-terminating character also being painted out.
I don't know how to reproduce this bug because I only have French and English XP. If you have an idea, I can try to fix this bug.

Haut de page
#29
Vieux 17/01/2010, 20h27
bones
-
Basic
Date d'inscription : janvier 2010
Messages : 1
bones est déconnecté
I am just wondering how in the world to get my true true transparency to work for xp

Haut de page
#30
Vieux 17/01/2010, 21h03
Lefreut
-
Avatar de Lefreut
Team CustomXP.net
Date d'inscription : août 2003
Messages : 5 816
Lefreut est déconnecté
Citation:
Envoyé par bones Voir le message
I am just wondering how in the world to get my true true transparency to work for xp
If you don't explain your problem, I can't help you

Haut de page
#31
Vieux 19/01/2010, 03h18
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
Your site can't be uploaded pictures...
Many of asian language string contains two or more bytes per character in multi-byte character set, but always keeps ONE word per character in Unicode character set. The details about how to pass the title characters aren't known by me but i'm sure that one more character after the null-terminating character be painted out(as a little rectangle) each the original string contains one chinese character. I suggested that u call _tcslen to get the final length of the string to draw anyway (which can always be right).
A new thing i like to tell you is that the TT serves the applications' names by obtaining their title-strings for Exclude Manager. Unfortunately the same application may take different title string during the initializing of the main-window (For example, the Spy++ that is brought by VisualStudio Team System). One of the solution is storing the applications' path rather than their window-name (But keeping the Exclude Manager unchanged looked like).

Haut de page
#32
Vieux 21/01/2010, 21h48
Lefreut
-
Avatar de Lefreut
Team CustomXP.net
Date d'inscription : août 2003
Messages : 5 816
Lefreut est déconnecté
Citation:
Envoyé par fire_rabbit Voir le message
A new thing i like to tell you is that the TT serves the applications' names by obtaining their title-strings for Exclude Manager. Unfortunately the same application may take different title string during the initializing of the main-window (For example, the Spy++ that is brought by VisualStudio Team System). One of the solution is storing the applications' path rather than their window-name (But keeping the Exclude Manager unchanged looked like).
Exclude Manager does not use title string. The exclusion is based on the exe name. The problem is that exclusion added by the Exclude Manager use both exe name and class name. You can manually edit the exclude.dat (or in include.dat) to add an exclude that work with only the exe name (or only the class name).

Haut de page
#33
Vieux 22/01/2010, 19h07
bug firefox 3.6
rhahgleuhargh
-
Basic
Date d'inscription : septembre 2009
Messages : 25
rhahgleuhargh est déconnecté
'lut,
Un petit bug à signaler entre TT 1.3 et la nouvelle mouture de Firefox, la 3.6 : le programme n'est pas skinné, malgré redémarrage de TT après l'installation de Firefox. Cela fonctionnait parfaitement avec Firefox 3.5.7.
Des idées ? (eh oui, quand on y goute, on ne peut plus se passer de TT...)
Merci d'avance !

EDIT : bug vérifié sur mes 3 ordinateurs (XP SP3)...
Dernière modification par rhahgleuhargh ; 22/01/2010 à 19h46.

Haut de page
#34
Vieux 23/01/2010, 14h29
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
Got it. So i can delete the ' c="anything" ' to reject the applications anyway. Thanks!

Something i found may be treated as a bug or not. I noticed that only the title be blured by TT. The bottom and left & right of the window keeps no blured effect. I like to activate all sides with blur. Is it lower the performance too mush? I hope not.

When a window stay beyond anothers, It seems that any layered windows will be cut by blured title when they appeared 'under' it. I also hope that way is just for keeping the machine running fast and taking memory not so mush but not a bug of TT.

Haut de page
#35
Vieux 24/01/2010, 10h41
adilupul
-
Basic
Date d'inscription : janvier 2010
Messages : 7
adilupul est déconnecté
Can you help me please?
I have waited a long time for TT to support x64 windows, but it adds transparent borders only to 64 applications. the 32 applications remain with the xp theme border.
For example windows explorer 64 bit has transparent border while mozilla 32 bit does not. it also does not appear in the exclude manager window

Haut de page
#36
Vieux 24/01/2010, 10h44
adilupul
-
Basic
Date d'inscription : janvier 2010
Messages : 7
adilupul est déconnecté
Or if i can't make 32bit applications get the border then how could i run TT v1.3 and 1.2 at the same time?

Haut de page
#37
Vieux 24/01/2010, 19h54
migmeil
-
Basic
Date d'inscription : janvier 2010
Messages : 5
migmeil est déconnecté
As rhahgleuhargh says anyone has any solution for firefox 3.6 and that TT does not work in firefox skin, I tried to edit the include.dat but still I can not work as play, greetings and if anyone has the answer to me can answer, my mail is migmeil@gmail.com

Haut de page
#38
Vieux 27/01/2010, 02h56
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
Citation:
Envoyé par migmeil Voir le message
As rhahgleuhargh says anyone has any solution for firefox 3.6 and that TT does not work in firefox skin, I tried to edit the include.dat but still I can not work as play, greetings and if anyone has the answer to me can answer, my mail is migmeil@gmail.com
The 32-bits applications are not working natively when running in a 64-bits windows OS, It is a little hard to access their resource from the other process(application), at least differ to a 64-bits application.

When a 32-bits app works on a 32-bits OS, it is managed by OS directly, just like a 64bits app working on 64bits OS. However, If a 32-bits app works on a 64-bits OS, it is managed by wow32. the wow32 is a 64-bits process that deserves all the essential translations between 64-bit OS and 32-bit process. If the TT can hack into a 32-bit window(under 64-bits OS), it must pass through wow at least.
Dernière modification par fire_rabbit ; 27/01/2010 à 03h08.

Haut de page
#39
Vieux 31/01/2010, 09h10
adilupul
-
Basic
Date d'inscription : janvier 2010
Messages : 7
adilupul est déconnecté
I know. that's why i'm trying to run both x64 and x32 true transparency at the same time.
I managed to do this one time and it was great. but after reboot won'n work anymore.

Haut de page
#40
Vieux 04/02/2010, 06h46
fire_rabbit
-
Basic
Date d'inscription : janvier 2010
Messages : 19
fire_rabbit est déconnecté
Will the TT be updated in 2010? I still wait for the new version of this shiny stuff.

Haut de page
Discussion fermée
Utilisateurs regardant la discussion actuelle : 1 (0 membre(s) et 1 invité(s))
 
Outils de la discussion Rechercher
Rechercher:

Recherche avancée
Modes d'affichage



Navigation rapide
Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages
Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non

Règles du forum

Powered by vBulletin® Version 3.8.11 - Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Version française #21 par l'association vBulletin francophone - CNIL N°834125