joelmontgomery1 Posted December 1, 2010 Report Share Posted December 1, 2010 Hi! I just start use XWD - awesome app But i have 2 problem, not seriouse but unpleasant:1. Container plugin cann't launch 64-bit application links (launch direct or with .bat files work)2. Container plugin show extension for all files I dont have 64bit, so i dont know about the first problem,but as for the file extensions, yeah if that could be changed that'd be nice. Like, I have an applications stack and they all show up like "Address Book.lnk Photoshop.lnk Flash.lnk iTunes.lnk" etc Link to comment
idumees Posted December 2, 2010 Report Share Posted December 2, 2010 Link I hope that XWDock got this feature. Link to comment
GreenLizard Posted December 3, 2010 Report Share Posted December 3, 2010 ------------------------------------- The gmail plugin only checks for unread email.. No other features yet on gmail plugin.. That's it!! Really?? So the "Check Inbox Now" is only for checking unread mail?? Sorry I thought it would open a tab in my browser rather than going in to GMail myself... Link to comment
joelmontgomery1 Posted December 3, 2010 Report Share Posted December 3, 2010 I was wondering if the gmail checker could be changed so we can specify a program to be opened when we click "check inbox" because i use Mozilla Firefox for my email, and the current check inbox button does nothing as far as i can tell. Perhaps add a function for it to open either a webpage or a program? Link to comment
ZMDQ Posted December 5, 2010 Report Share Posted December 5, 2010 1. Container plugin cann't launch 64-bit application links (launch direct or with .bat files work) Some usefull (i hope) script for fix it even for execute files with spaces in name and path: @echo offcd C:\Program Files\Your Program Folderstart "" "Your Program Name.exe"exit After you can cretae shortcut to .bat file, change icon and launch it from container Link to comment
joelmontgomery1 Posted December 5, 2010 Report Share Posted December 5, 2010 so... does anyone have the same problem as me? xwd causing 100% cpu usage, and its happening more often now... Link to comment
BOBAH13 Posted December 7, 2010 Author Report Share Posted December 7, 2010 so... does anyone have the same problem as me? xwd causing 100% cpu usage, and its happening more often now...What system do you use? When does it happen? What were you doing when it started? and so on... Link to comment
joelmontgomery1 Posted December 7, 2010 Report Share Posted December 7, 2010 What system do you use? When does it happen? What were you doing when it started? and so on...ill give you my specs:Windows Vista 32bitIntel Core 2 Duo 2.2ghzNvidia 8600gt2gb DDR2 RAM298gb HDWell originally it would just happen if i just left the computer runnning for a while, which i do most of the time, but recently it has started to happen more often. whenever i open programs, run a program from the dock, thats usually what triggers it to go to 100% usage i think. only started hapening in the past 2 weeks or so, ive got the most recent version of the dock and all. Link to comment
kjub6 Posted December 9, 2010 Report Share Posted December 9, 2010 (edited) this program is grate ... I have another project for you one that is not on already (Rocketdock,Objectdock,RKlauncher...)look at this />http://vimeo.com/13560319its originally made for FireFox ... window management/>http://insentient.net/ ... is for PC ... maybe you could developed it further more and embed functions that were mentioned in video-grouping/manual or automatic..in this way you can also simulate a virtual desktop scene .. there are grate possibilities I dont know how the codes are but look at similar project .../>http://sourceforge.net/projects/smallwindows/those codes are freegood luck guys Edited December 9, 2010 by kjub6 Link to comment
GreenLizard Posted December 10, 2010 Report Share Posted December 10, 2010 I was wondering if the gmail checker could be changed so we can specify a program to be opened when we click "check inbox" because i use Mozilla Firefox for my email, and the current check inbox button does nothing as far as i can tell. Perhaps add a function for it to open either a webpage or a program? Agree. Link to comment
BOBAH13 Posted December 11, 2010 Author Report Share Posted December 11, 2010 Agree. Right now I've given to developers C# support, anyone can spend some time to develop own C#/WPF (for example) plugin, like I've added by default, with all features and simply great design. I think make a such apps with WPF is easy than it can be. Link to comment
我就是� Posted December 18, 2010 Report Share Posted December 18, 2010 nice job Link to comment
joelmontgomery1 Posted December 22, 2010 Report Share Posted December 22, 2010 I was wondering if you could give us an option to remove file extensions in the container plugin. And maybe give the new container plugin the same look as the old one had, i still use the old one because i prefer the look of it Link to comment
illusionmist Posted December 26, 2010 Report Share Posted December 26, 2010 Hey, I'm thinking about maybe adding a blacklist function for running apps since it's showing some programs that should be hidden, eg Firefox's plugin-container.exe, Synaptic TouchPad Enhancements, etc. Link to comment
joelmontgomery1 Posted December 26, 2010 Report Share Posted December 26, 2010 yeah for me it shows thing like objectbar, desktop window manager and others and it really needs a blacklist Link to comment
thatguy009 Posted December 27, 2010 Report Share Posted December 27, 2010 Hey, I'm thinking about maybe adding a blacklist function for running apps since it's showing some programs that should be hidden, eg Firefox's plugin-container.exe, Synaptic TouchPad Enhancements, etc.Thanks that would be very appreciated, since it shows background running apps for me and can clutter up the dock. Link to comment
vhanla Posted January 6, 2011 Report Share Posted January 6, 2011 This is a code-snippet in Delphi that enumerates windows. function EnumWindowsFunc(wHandle:THandle; List:TStringList):boolean; stdcall;varcaption: array[0..256]of char;dwStyle,dwexStyle: longint;begin dwStyle:=GetWindowLongPtr(wHandle,GWL_STYLE); dwexStyle:=GetWindowLongPtr(wHandle,GWL_EXSTYLE); if (dwStyle and WS_VISIBLE = WS_VISIBLE) and (GetWindowText(wHandle,caption,sizeof(caption)-1)<>0) and (GetParent(wHandle)=0) and (whandle<>application.Handle){exclude me} then begin if (dwexStyle and WS_EX_APPWINDOW=WS_EX_APPWINDOW) and (GetWindow(wHandle,GW_OWNER)=whandle) then List.Add(caption) else if (dwexStyle and WS_EX_TOOLWINDOW =0 ) and (GetWindow(wHandle,GW_OWNER)=0) then List.Add(caption); end; result:=true;end; I guess TaskSwitchXP has something similar in its source code http://www.ntwind.com/software/taskswitchxp/download.html Maybe it can be implemented on XWindowsDock so it can list only those apps that are shown in the taskbar. Because, XWindowsDock list those apps that lays, for example, in systray. Or those that aren't shown in the taskbar, like : - Windows Desktop Gadgets - Switcher (a macosx expose clone for Windows Vista/7) - Win+Tab sometimes is listed too (Windows Manager) BTW: I'm still trying to port my old docklets Link to comment
sharkurban Posted January 9, 2011 Report Share Posted January 9, 2011 Awesome Job, really good Link to comment
RenanLazarotto Posted February 5, 2011 Report Share Posted February 5, 2011 When we will have a new update?Oh, there will be an option to convert XWD 5.6 skins to 2.0 format? Link to comment
sam3000 Posted February 7, 2011 Report Share Posted February 7, 2011 Where i can find docklets and plugins for 2.0.3 version?I need clock and maybe zoom... Link to comment
Nikola Posted February 24, 2011 Report Share Posted February 24, 2011 Bobah can you add option to exclude specific programs from dock? Link to comment
artrias Posted March 2, 2011 Report Share Posted March 2, 2011 Hey, I've only been here for a little while but what if the docks icons were integrated to control itunes, set status in skype, and a lot of other integrations? just throwing my 2 cents in. it would be an awesome idea if someone just integrated itunes into it through a plugin! By the way LOVE THIS DOCK! THE MOST AWESOMENESS OF AWESOME DOCKS OUT THERE! Link to comment
psycodelic Posted March 4, 2011 Report Share Posted March 4, 2011 When is going to be the next update ? Link to comment
joelmontgomery1 Posted March 4, 2011 Report Share Posted March 4, 2011 When is going to be the next update ?I guess its pretty clear that this project has been abandoned. I hate to say that as I love this dock and I wish he would start work on it again, but unfortunately there hasn't been an update since last year so i assume there wont be another one Link to comment
btb42693 Posted March 4, 2011 Report Share Posted March 4, 2011 I guess its pretty clear that this project has been abandoned. I hate to say that as I love this dock and I wish he would start work on it again, but unfortunately there hasn't been an update since last year so i assume there wont be another oneIt hasn't been abandoned, but rather put on the back burner. Remember the 5.6->2.0 transition? That was longer than a year.... Link to comment
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now