Yz Dock Shortcuts: how-to
#62
Posted 20 August 2003 - 05:09 AM
oops sorry,
i just tried it though on y'z .8.3 and it worked:
Link to - C:\Documents and Settings\realitybath\Application Data\Microsoft\Internet Explorer\Quick Launch\Show Desktop.scf
and it worked with or without this added too
Work Folder - C:\Documents and Settings\realitybath\Application Data\Microsoft\Internet Explorer\Quick Launch\
maybe you have a different version of y'z?
I'm sure someone else 'll know... good luck.
i just tried it though on y'z .8.3 and it worked:
Link to - C:\Documents and Settings\realitybath\Application Data\Microsoft\Internet Explorer\Quick Launch\Show Desktop.scf
and it worked with or without this added too
Work Folder - C:\Documents and Settings\realitybath\Application Data\Microsoft\Internet Explorer\Quick Launch\
maybe you have a different version of y'z?
I'm sure someone else 'll know... good luck.
#65
Posted 08 February 2004 - 11:18 PM
damn this... first of all..
1.where i can find option to make start Yzdock with Windows ?
I put Yzdock.exe in c:\winxp\system32\grouppolicy\bla..bla..bla..is it correct place?
2.can I put Menu start on Dock so I can unfold it and see all shortcuts in start Menu?
probably not
3.when i use icq, miranda etc. I cant see when my friends answer me as it used to show me on windows taskbar at the bottom (i dont wanna use this task bar anymore)
well...every application that is on taskbar is unreachable from yzdock...how can i make it maximized again?...object dock always displayed this stuff...
im reading now sticky topics...but you can help me anyway
1.where i can find option to make start Yzdock with Windows ?
I put Yzdock.exe in c:\winxp\system32\grouppolicy\bla..bla..bla..is it correct place?
2.can I put Menu start on Dock so I can unfold it and see all shortcuts in start Menu?
probably not
3.when i use icq, miranda etc. I cant see when my friends answer me as it used to show me on windows taskbar at the bottom (i dont wanna use this task bar anymore)
well...every application that is on taskbar is unreachable from yzdock...how can i make it maximized again?...object dock always displayed this stuff...
im reading now sticky topics...but you can help me anyway
#66
Posted 08 February 2004 - 11:37 PM
Quote
Originally posted by latzky@Feb 8 2004, 05:18 PM
damn this... first of all..
1.where i can find option to make start Yzdock with Windows ?
I put Yzdock.exe in c:\winxp\system32\grouppolicy\bla..bla..bla..is it correct place?
2.can I put Menu start on Dock so I can unfold it and see all shortcuts in start Menu?
probably not
3.when i use icq, miranda etc. I cant see when my friends answer me as it used to show me on windows taskbar at the bottom (i dont wanna use this task bar anymore)
well...every application that is on taskbar is unreachable from yzdock...how can i make it maximized again?...object dock always displayed this stuff...
im reading now sticky topics...but you can help me anyway
damn this... first of all..
1.where i can find option to make start Yzdock with Windows ?
I put Yzdock.exe in c:\winxp\system32\grouppolicy\bla..bla..bla..is it correct place?
2.can I put Menu start on Dock so I can unfold it and see all shortcuts in start Menu?
probably not
3.when i use icq, miranda etc. I cant see when my friends answer me as it used to show me on windows taskbar at the bottom (i dont wanna use this task bar anymore)
well...every application that is on taskbar is unreachable from yzdock...how can i make it maximized again?...object dock always displayed this stuff...
im reading now sticky topics...but you can help me anyway
1. put it in the startup folder you see in the start menu.
taskbar properties > start menu > customize > add > continue the wizard and add y'z dock to the startup folder.
2. there's a start menu docklet.
3. there's a tasks docklet.
#68
Posted 23 February 2004 - 04:20 PM
Quote
Originally posted by frankenfeet@Feb 23 2004, 10:01 AM
Is there a way to link an icon on the dock to "start". I'd like to get rid of the task bar altogether. Maybe a way, when you click on the Y'z icon it brings up the start menu from the dock? TIA
Is there a way to link an icon on the dock to "start". I'd like to get rid of the task bar altogether. Maybe a way, when you click on the Y'z icon it brings up the start menu from the dock? TIA
start menu docklet: http://dockex.com/
#71
Posted 20 May 2004 - 08:15 PM
hi everyone!
i'm a new user of y'z dock and i was wondering if there is a way of adding a shortcut or something that allows me to connect/disconnect a dial-up internet connection...
some kind of icon that shows the connection status and also allows me to dsconnect with a click or something like that...
another cool thing to add to the dock would be some sort of task monitor... so that instead of using a docklet such as taskmenu for example, the open tasks would appear on the dock.
is this doable? could anyone here help me out?
thanx!
Bogdan
i'm a new user of y'z dock and i was wondering if there is a way of adding a shortcut or something that allows me to connect/disconnect a dial-up internet connection...
some kind of icon that shows the connection status and also allows me to dsconnect with a click or something like that...
another cool thing to add to the dock would be some sort of task monitor... so that instead of using a docklet such as taskmenu for example, the open tasks would appear on the dock.
is this doable? could anyone here help me out?
thanx!
Bogdan
#74
Posted 02 October 2004 - 05:16 PM
Dial-up Networking shortcut:
Eject CD Drives:
Paste this code into notepad and rename it eject.vbs. You can edit the file to choose which drive to open. Then get a nice "eject" icon and you'll be set. I had to use this recently. I disabled the eject buttons on my drive so my 1 yr old son wouldn't open them, and I just open them from my dock.
C:WINDOWSsystem32rasphone.exe "name of connection"
Eject CD Drives:
Paste this code into notepad and rename it eject.vbs. You can edit the file to choose which drive to open. Then get a nice "eject" icon and you'll be set. I had to use this recently. I disabled the eject buttons on my drive so my 1 yr old son wouldn't open them, and I just open them from my dock.
const Drive = "0" 'Edit this variable to change the corresponding drive
'Option Explicit
On Error Resume Next
Dim WshShell, chkOpen, RegEntry, RegCheck, ErrNum, wmp, cdroms
Set WshShell = WScript.CreateObject("WScript.Shell")
Set wmp = CreateObject("WMPlayer.OCX.7")
Set cdroms = wmp.cdromCollection
RegEntry = "HKCUSoftwareCDTray"
RegCheck = WSHShell.RegRead (RegEntry)
ErrNum = Err.Number
if ErrNum <> 0 then
WshShell.RegWrite "HKCUSoftwareCDTray", 0 ,"REG_DWORD"
WshShell.RegWrite "HKCUSoftwareCDTrayOpenClose", "1"
End If
chkOpen = WshShell.RegRead ("HKCUSoftwareCDTrayOpenClose")
If chkOpen = "1" Then
If cdroms.Count >= 1 then
cdroms.Item(Drive).Eject
End If
WshShell.RegWrite "HKCUSoftwareCDTrayOpenClose", "0"
Else
If cdroms.Count >= 1 then
cdroms.Item(Drive).Eject
cdroms.Item(Drive).Eject
WshShell.RegWrite "HKCUSoftwareCDTrayOpenClose", "1"
End If
End If
WshShell.Run "Taskkill.exe /F /IM WScript.exe", 0, TRUE
Set WshShell = vbnull
Set wmp = vbnull
Set cdroms = vbnull
#75
Posted 05 December 2004 - 02:59 AM
sixfortyfive said:
Eject CD Drives:
Paste this code into notepad and rename it eject.vbs. You can edit the file to choose which drive to open. Then get a nice "eject" icon and you'll be set. I had to use this recently. I disabled the eject buttons on my drive so my 1 yr old son wouldn't open them, and I just open them from my dock.
Paste this code into notepad and rename it eject.vbs. You can edit the file to choose which drive to open. Then get a nice "eject" icon and you'll be set. I had to use this recently. I disabled the eject buttons on my drive so my 1 yr old son wouldn't open them, and I just open them from my dock.
i like this! i have 2 drives i'd like to control so i'm gonna do eject1.vbs and eject2.vbs. the thing is, there's a lot of 1's and 0's in the script and i'm not sure exactly what to change to, well, you see what i'm asking...
#78
Posted 13 May 2005 - 10:03 PM
Apologies for bringing up an 'lets say older thread' where the app is no longer supported, but I just got a cool surprise today...I have always been a huge fan of YzDock0.83 and how nice and smooth all its animations are and very light on the resources, but when installed XP SP2 some 4-5 months ago, it immediately caused the Dock to have all kind of issues, so I switched to ObjectDock..
I have tried RKLauncher and it is going to be a 'rockin app' once it gets out of its initial stages, and today I thought, "You know MS has had a bunch of performance/security patches via WUv6, and I wonder..."
Yes installed YzDock today and it is once again running beautifully smooth with absolutely no issues that it dispalyed when XP SP2 wa initially installed!
My question is:
Is there a way to NOT have it show labels...? As I got use to having the 'dock icons' being shown without labels, and am used to this nice, clean look...I remeber where 'ThreeDrives' had posted something regarding this, but I have done a bunch of searches and to no avail...
Thanks..
I have tried RKLauncher and it is going to be a 'rockin app' once it gets out of its initial stages, and today I thought, "You know MS has had a bunch of performance/security patches via WUv6, and I wonder..."
Yes installed YzDock today and it is once again running beautifully smooth with absolutely no issues that it dispalyed when XP SP2 wa initially installed!
My question is:
Is there a way to NOT have it show labels...? As I got use to having the 'dock icons' being shown without labels, and am used to this nice, clean look...I remeber where 'ThreeDrives' had posted something regarding this, but I have done a bunch of searches and to no avail...
Thanks..
#80
Posted 14 May 2005 - 02:50 PM
Yes, thanks Ivan as I posted a new thread (really wasn't needed-sorry), but I didn't think that members were still active/looking in this 'real old thread'...lol
http://www.aqua-soft...ead.php?t=25507
http://www.aqua-soft...ead.php?t=25507








Sign In »
Register Now!
Help


MultiQuote