ZBrushCentral

Right click context menu

<BLOCKQUOTE>quote:</font><HR> you can have certain windows open to a certain size, and on a certain desktop… so every time you open it it is where you want it… <HR></BLOCKQUOTE>
can this open the recent files also. Just opening the app is not enough.

Someday this won’t be an issue, since well all have Magenetic Ram. In the works by IBM, it allows you to save things to ram, without constant power to keep it in ram. Thus you can turn off and on your pc and nothing changes. :smiley:

Oh, BTW, thanks for the XP PowerTools link.

well, If you have certain number of programs open for certain tasks you can always make a batch file, or place them in your startup folder…

batch file would be better, because you can execute it any time…I usualy leave my start folder blank…

as far as recent opened applications and files, I am not sure… I will go and look around, maby there is a way to do it in blackbox, or perhaps a free running application… the only way I know of now would to be to make a shortcut with a commandline switch for the program to open the document/file in what ever application my shortcut called…there might be some DOS switch for “open last edited/opened document”…

Wish hibernate worked on this system,

it is funny, in Linux it works fine, just windows has a problem with it…

it is definately a feature I want working tho… I am gonna go do some reading…

be back later…

once again thanks, Polaris30 for pointing out the Xp powertools. I decided to be a guine pig and test out the Nvidia multi-desktop and the powertool version and some of the other powertools.

IMO, the windows powertool version of multi-desktops is the better of the 2. Built-in hot keys and multi-desktop preview set it apart. I’d also suggest anyone to tryout some of other the powertools that suit them.

Cool deal!

Glad you like them :slight_smile:

THere is one powertool I suggest everyone to check out, that is Tweak UI…

It lets you disable/ delete unwanted features… can realy streamline your system somewhat safely…

I love not haveing to have recycle bin on desktop… I dont get nag screens anymore for delete file… it just delete’s it :slight_smile: there is a bunch of cool fixes in there :slight_smile:

This Virtual desktop can almost be used as a task bar replacement…
http://virt-dimension.sourceforge.net/

it shows all 4 windows and all the programs running in them , you see the same Icons that are usualy in the taskbar, this is why I say you can somewhat replace taskbar… it also lets you drag windows between desktops.
it also adds a bunch of Unix like functions to the windows, stay ontop, shade, and view on all desktops…

there is also a function called Send window to: this sends window to whatever desktop you choose… Just like Linux KDE or IceWM…

you get to the enhanced functions from the Icon on the windows Titlebar…think it dose transpaent window also :slight_smile:

PLus user defined Hotkeys 8)

i’m cool with the powertool version of the multi-desktop. 1 thing about it, is that it’s seamless. all your programs are still in your taskbar. Basicly what this multi-desktop does is keep track of what is maximized in each desktop. This way there is no need to move apps to another desktop, just maximize it. and the hotkeys are great, since they use the never conflicted start button. Start+(1,2,3,4) for the desktops, and start+v for a 4-way split screen of all your desktops. You can also have the 5 buttons on your taskbar, but the hotkeys are simple enough.

Are you continuing to use X-Keys? Can you share your Legend-Template?

Thanks.

Greg

Something that very few people actually utilize in Windows is the Taskbar.
I am one of those few people.
It is way more powerful and effective than it looks.
But a must, is the Computer toolbar.
It is the quickest way to browse through your whole pc in a matter of seconds.
Then just let the Taskbar auto-Hide when not in use.
So that way you can stretch the Taskbar out and utilize half your screen if want, and when your done it just hides and stays out of the way.

“By the way, thats a custom created wallpaper done in Maya” :smiley:

Im pretty late regarding this thread, but have you tried autohotkey?

Ive posted my personal startup script below for reference, just some small examples what you can do with it:

-you can assign shortcuts to individual folders, which i mapped to middlemousebutton.

-you can do autolookup of marked words in a english dictionary via shortcut

-you can make the script automatically replace full words for your shortcut of choice, e.g. write “ty” which will automatically replaced by “thank you” or whatever.

This is just the tip of the iceberg of what you can do with it. and its free.


Note: In Windows Explorer, if “View > Toolbars > Address Bar” is
; not enabled, the menu will not be shown if the hotkey chosen below
; has a tilde. If it does have a tilde, the menu will be shown
; but the favorite will be opened in a new Explorer window rather
; than switching the active Explorer window to that folder.
; CONFIG: CHOOSE YOUR HOTKEY
; If your mouse has more than 3 buttons, you could try using
; XButton1 (the 4th) or XButton2 (the 5th) instead of MButton.
; You could also use a modified mouse button (such as ^MButton) or
; a keyboard hotkey. In the case of MButton, the tilde (~) prefix
; is used so that MButton’s normal functionality is not lost when
; you click in other window types, such as a browser. The presence
; of a tilde tells the script to avoid showing the menu for
; unsupported window types. In other words, if there is no tilde,
; the hotkey will always display the menu; and upon selecting a
; favorite while an unsupported window type is active, a new
; Explorer window will be opened to display the contents of that
; folder.
f_Hotkey = ~MButton
; CONFIG: CHOOSE YOUR FAVORITES
; Update the special commented section below to list your favorite
; folders. Specify the name of the menu item first, followed by a
; semicolon, followed by the name of the actual path of the favorite.
; Use a blank line to create a separator line.
/*
ITEMS IN FAVORITES MENU <-- Do not change this string.
samples ; F:\samples
artwork ; C:\Dokumente und Einstellungen\satin\Eigene Dateien\artwork
zbrush ; C:\Programme\Pixologic\ZBrush2
*/

; END OF CONFIGURATION SECTION
; Do not make changes below this point unless you want to change
; the basic functionality of the script.
#SingleInstance ; Needed since the hotkey is dynamically created.
Hotkey, %f_Hotkey%, f_DisplayMenu
StringLeft, f_HotkeyFirstChar, f_Hotkey, 1
if f_HotkeyFirstChar = ~ ; Show menu only for certain window types.
f_AlwaysShowMenu = n
else
f_AlwaysShowMenu = y
; Used to reliably determine whether script is compiled:
SplitPath, A_ScriptName, f_FileExt
if f_FileExt = Exe ; Read the menu items from an external file.
f_FavoritesFile = %A_ScriptDir%\Favorites.ini
else ; Read the menu items directly from this script file.
f_FavoritesFile = %A_ScriptFullPath%
;----Read the configuration file.
f_AtStartingPos = n
f_MenuItemCount = 0
Loop, Read, %f_FavoritesFile%
{
if f_FileExt <> Exe
{
; Since the menu items are being read directly from this
; script, skip over all lines until the starting line is
; arrived at.
if f_AtStartingPos = n
{
IfInString, A_LoopReadLine, ITEMS IN FAVORITES MENU
f_AtStartingPos = y
continue ; Start a new loop iteration.
}
; Otherwise, the closing comment symbol marks the end of the list.
if A_LoopReadLine = */
break ; terminate the loop
}
; Menu separator lines must also be counted to be compatible
; with A_ThisMenuItemPos:
f_MenuItemCount++
if A_LoopReadLine = ; Blank indicates a separator line.
Menu, Favorites, Add
else
{
StringSplit, f_line, A_LoopReadLine, `;
f_line1 = %f_line1% ; Trim leading and trailing spaces.
f_line2 = %f_line2% ; Trim leading and trailing spaces.
; Resolve any references to variables within either field, and
; create a new array element containing the path of this favorite:
Transform, f_path%f_MenuItemCount%, deref, %f_line2%
Transform, f_line1, deref, %f_line1%
Menu, Favorites, Add, %f_line1%, f_OpenFavorite
}
}
return ;----End of auto-execute section.

;----Open the selected favorite
f_OpenFavorite:
; Fetch the array element that corresponds to the selected menu item:
StringTrimLeft, f_path, f_path%A_ThisMenuItemPos%, 0
if f_path =
return
if f_class = #32770 ; It’s a dialog.
{
if f_Edit1Pos <> ; And it has an Edit1 control.
{
; Activate the window so that if the user is middle-clicking
; outside the dialog, subsequent clicks will also work:
WinActivate ahk_id %f_window_id%
; Retrieve any filename that might already be in the field so
; that it can be restored after the switch to the new folder:
ControlGetText, f_text, Edit1, ahk_id %f_window_id%
ControlSetText, Edit1, %f_path%, ahk_id %f_window_id%
ControlSend, Edit1, {Enter}, ahk_id %f_window_id%
Sleep, 100 ; It needs extra time on some dialogs or in some cases.
ControlSetText, Edit1, %f_text%, ahk_id %f_window_id%
return
}
; else fall through to the bottom of the subroutine to take standard action.
}
else if f_class in ExploreWClass,CabinetWClass ; In Explorer, switch folders.
{
if f_Edit1Pos <> ; And it has an Edit1 control.
{
ControlSetText, Edit1, %f_path%, ahk_id %f_window_id%
; Tekl reported the following: “If I want to change to Folder L:\folder
; then the addressbar shows http://www.L:\folder.com. To solve this,
; I added a {right} before {Enter}”:
ControlSend, Edit1, {Right}{Enter}, ahk_id %f_window_id%
return
}
; else fall through to the bottom of the subroutine to take standard action.
}
else if f_class = ConsoleWindowClass ; In a console window, CD to that directory
{
WinActivate, ahk_id %f_window_id% ; Because sometimes the mclick deactivates it.
SetKeyDelay, 0 ; This will be in effect only for the duration of this thread.
IfInString, f_path, : ; It contains a drive letter
{
StringLeft, f_path_drive, f_path, 1
Send %f_path_drive%:{enter}
}
Send, cd %f_path%{Enter}
return
}
; Since the above didn’t return, one of the following is true:
; 1) It’s an unsupported window type but f_AlwaysShowMenu is y (yes).
; 2) It’s a supported type but it lacks an Edit1 control to facilitate the custom
; action, so instead do the default action below.
Run, Explorer %f_path% ; Might work on more systems without double quotes.
return

;----Display the menu
f_DisplayMenu:
; These first few variables are set here and used by f_OpenFavorite:
WinGet, f_window_id, ID, A
WinGetClass, f_class, ahk_id %f_window_id%
if f_class in #32770,ExploreWClass,CabinetWClass ; Dialog or Explorer.
ControlGetPos, f_Edit1Pos, Edit1, ahk_id %f_window_id%
if f_AlwaysShowMenu = n ; The menu should be shown only selectively.
{
if f_class in #32770,ExploreWClass,CabinetWClass ; Dialog or Explorer.
{
if f_Edit1Pos = ; The control doesn’t exist, so don’t display the menu
return
}
else if f_class <> ConsoleWindowClass
return ; Since it’s some other window type, don’t display menu.
}
; Otherwise, the menu should be presented for this type of window:
Menu, Favorites, show
return
; ---------------------------------------------------------------------
; Name: Autohotkey-Skript zum Artikel aus c’t 03/05
; Author: Wolfgang Reszel für c’t
; Datum: 5.12.2004
;
; Language: german
; Platform: tested with XP
;
; Beschreibung: (german)
; ---------------------------------------------------------------------
; Das im Artikel erarbeitete Skript
; ---------------------------------------------------------------------
; Starte alle 300 ms die Unterroutine SkriptAktualisierung
; sorgt dafür, dass das Skript beim Speichern automatisch neu geladen wird
; SetTimer,SkriptAktualisierung,300
; Starte alle 300 ms die FileZilla-Überwachung
; SetTimer, Überwachung, 300
; Return ; – hier endet der Auto-Execute-Bereich -----------------------

; ---------------------------------------------------------------------
; – Tastaturkürzel: --------------------------------------------------
; ---------------------------------------------------------------------
#i:small_orange_diamond:Run, iexplore.exe ; Win+I
#g:small_orange_diamond:Run, http://www.google.de ; Win+G
!1:small_orange_diamond: Send, „{Alt} ; Alt+1
!2:small_orange_diamond: Send, “{Alt} ; Alt+2
!.:small_orange_diamond: Send, •{Alt} ; Alt+.
<^>!.:small_orange_diamond:Send, •{Alt} ; AltGr+.
#WheelUp:small_orange_diamond: SoundSet, +1 ; Win+Mausrad vorwärts: Lauter
#WheelDown:small_orange_diamond:SoundSet, -1 ; Win+Mausrad rückwärts: Leiser
#Numpad0:small_orange_diamond: SoundSet, +1, , mute ; Win+0: Ton an/aus
; Belegt die Akzenttaste mit Akzent-Grave
SC00D:small_orange_diamond:Send, {ASC 096} ; ´
; Belegt Alt+Akzent mit dem normalen Akzentzeichen
!SC00D:small_orange_diamond:Send, ´ ; Alt+´
; Laufendes Skript in einem Texteditor öffnen
#F9:small_orange_diamond:Run, notepad.exe %A_ScriptFullPath% ; Win+F9
; ---------------------------------------------------------------------
; – Hotstrings -------------------------------------------------------
; ---------------------------------------------------------------------
:small_orange_diamond:lsp:small_orange_diamond:Leistungserstellungsprozess{Enter}{Enter}
; ---------------------------------------------------------------------
; – komplexere Kürzel ------------------------------------------------
; ---------------------------------------------------------------------
; Win+a: Leo-Übersetzung des markierten Worts
#a:small_orange_diamond:
; Zwischenablage sichern
tmp = %clipboard%
; Strg+C simulieren
; (=Auswahl in Zwischenablage)
Send, ^c
; Den Inhalt der Zwischenablage
; in die Variable word speichern
word = %clipboard%
; Den alten Inhalt der
; Zwischenabl. wiederherstellen
clipboard = %tmp%
; Die Übersetzung des markierten
; Worts über dict.leo.org im
; Standardbrowser anzeigen
Run, http://dict.leo.org/?search=%word%&searchLoc=-1&relink=on&spellToler=std&sectHdr=on&tableBorder=1&cmpType=relaxed&lang=de
Return