Question/Sugggestion

Is it possible to beable to switch the themes of (windowblinds,cursorxp,iconpackenger,objectdock and possbily desktop x) with a single click of a button.So i mean you set up the theme then save it and do that to other sets of themes you like so you have a gallery of preset themes...Its a good idea so has it been done or is it even possible?
4,553 views 22 replies
Reply #1 Top
Are you describing something like ThemeManager?

Or something like paxx's or tiggz' wallpaper changers?
https://www.wincustomize.com/skins.asp?Library=34&skinid=154
https://www.wincustomize.com/skins.asp?Library=34&skinid=383

Or tiggz' skinchanger:
https://www.wincustomize.com/skins.asp?Library=34&skinid=235

The nice thing about those is that they apply to one app. Suites have lots of options unless you are going to force the user to use ALL of the apps. And what if they don't have all the apps installed.

Good idea, could be hard to implement.


Posted via WinCustomize Browser/Stardock Central
Reply #2 Top
I thought it could work the way a 'Startup' folder works and you just drag all the files you want and apply the certain theme with one click...
Reply #3 Top
Create your own suites with theme manager
Reply #4 Top
I have downloaded theme manager and when I apply a suit the windowblinds, widgets and object dock do not change...
Reply #5 Top
What suite? Some of the older ones are funked up with the current version of TM.
And jsut to be sure, you have WB, DX, and OB installed, right?
Reply #6 Top
try setting up you desktop with what you want 1st. get it the way you want it.
then save it using theme manager.
Reply #7 Top
I'm not sure, but I don't think Object Dock is Theme Manager aware. I'm not sure about widgets either. You could approach this from the DesktopX side where each Desktop is a "complete" package. Then you would have to "code" each desktop to taste and save it. I think in the end you'll still have to apply Object Dock themes as a separate mouse click(s)
Reply #8 Top
Yes I have WB, DX, and OD installed but they dont work, i understand the OD not working but when i save my desktop, change skins then load the one i saved the WB does not change...
Reply #9 Top
...im not gonna bother with this thememanager stuff...I guess my new little project is to figure out how to open several programs with a single shortcut...
Reply #10 Top
So how can you create an object that can do such a thing?
Reply #11 Top
So how can you create an object that can do such a thing?


YOu can always create a batch file that runs a particular *.wba, *.dxpack, DX *.exe, etc and have teh object call that batch file. (when I say batch, I mean *.com)


Posted via WinCustomize Browser/Stardock Central
Reply #13 Top
I'm an idiot.

Why not just script it out?

Create an object and new script.

Paste something like the following betwennthe open and close subs:

Sub Object_OnLButtonDown(x, y)

'Create the shell object
Set WshShell = CreateObject("WScript.Shell")

'Apply skin
WshShell.Run "C:\Progra~1\Stardock\Object~1\Window~1\airframe\airframe.uis"' C:\Program Files\Stardock\Object Desktop\WindowBlinds\Airframe\airframe.uis"

'Apply widget
WshShell.Run "C:\Progra~1\Stardock\Object~1\DesktopX\Widgets\Illuminati.exe"

End Sub


You need to edit for your paths and skins.
The only downside is I still have to click the button to apply the skin. Maybe soemone else can assist. I also associated the uis file to WB instead of the default SkinStudio on my PC.



Posted via WinCustomize Browser/Stardock Central
Reply #15 Top
What is the significance of these-'Progra~1,Window~1,Object~1'why not use 'Program Files,Object Desktop and Windowblinds' or does it really matter?
Reply #16 Top
Short file names always work. Long do not always work.
I like being sure.


Posted via WinCustomize Browser/Stardock Central
Reply #17 Top
...when i put in my paths it says there is a script error on line 11
Reply #18 Top
What is on line 11?

Or just post your whjole script


Posted via WinCustomize Browser/Stardock Central
Reply #19 Top
'Called when the script is executed
Sub Object_OnScriptEnter

End Sub
Sub Object_OnLButtonDown(x, y)

'Create the shell object
Set WshShell = CreateObject("WScript.Shell")

'Apply skin
WshShell.Run "C:\Documents and Settings\Shawn\My Documents\Skins\GT3 OS.wba"

'Apply widget
WshShell.Run "C:\Progra~1\CursorXP\Themes\GT3.CurXPTheme"

End Sub
'Called when the script is terminated
Sub Object_OnScriptExit

End Sub
Reply #20 Top
I would use the short names in your path.
c:\docume~1\etc . . .


Posted via WinCustomize Browser/Stardock Central
Reply #21 Top
'Called when the script is executed
Sub Object_OnScriptEnter

End Sub
Sub Object_OnLButtonDown(x, y)

'Create the shell object
Set WshShell = CreateObject("WScript.Shell")

'Apply skin
WshShell.Run "C:\Docume~1\Shawn\MyDocu~1\Skins\GT3OS.wba"

'Apply widget
WshShell.Run "C:\Progra~1\CursorXP\Themes\GT3.CurXPTheme"

End Sub
'Called when the script is terminated
Sub Object_OnScriptExit

End Sub


Still doesnt work
Reply #22 Top
Try: c:\mydocu~1\Skins\GT3OS.wba

Posted via WinCustomize Browser/Stardock Central