mit diesem script kannst du den aktiven tisch aus dem stack verschieben und wieder zurück in den stack schieben.
wenn du einen CR account hast, suche mal nach "Belok - Introduction to Mass Tabling". da spielt er 40 tische mit diesem script.
Home::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 108, 0
return
This is the name of the key you assign to this shift.
This is the horizontal shift by # of pixels.
This is the vertical shift by the # of pixels.
Full Script is below:
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SetTitleMatchMode, 2
Home::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 108, 0
return
PgUp::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 880, 0
return
End::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 108, 470
return
PgDn::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 880, 470
return
Insert::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 1900, 235
return