Greetings,
The Sublime Text 2 issue tracker regarding transparency had a comment that got me here.
As this is only for windows, i decided to try it but with no luck as it was supposedly made using win7. I still had a look into the code and checked a few functions to see if win xp could handle them and it seems it could according to msdn.microsoft.com.
Anyway, after a quick check, i found that the function GetDesktopWindow() doesn't take any arguments so i updated SublimeTrans.py to reflect that :
Before :
Line 78 : LHDesktop = GetDesktopWindow(None)
After :
Line 78 : LHDesktop = GetDesktopWindow()
For anyone wanting to try it out, just open SublimeTrans.py in SublimeText and edit the corresponding line then save. It will reload the file so you can test it right away without having to close anything.
Enjoy, it works on Windows xp now.
Greetings,
The Sublime Text 2 issue tracker regarding transparency had a comment that got me here.
As this is only for windows, i decided to try it but with no luck as it was supposedly made using win7. I still had a look into the code and checked a few functions to see if win xp could handle them and it seems it could according to msdn.microsoft.com.
Anyway, after a quick check, i found that the function GetDesktopWindow() doesn't take any arguments so i updated SublimeTrans.py to reflect that :
Before :
Line 78 : LHDesktop = GetDesktopWindow(None)
After :
Line 78 : LHDesktop = GetDesktopWindow()
For anyone wanting to try it out, just open SublimeTrans.py in SublimeText and edit the corresponding line then save. It will reload the file so you can test it right away without having to close anything.
Enjoy, it works on Windows xp now.