Originally Posted by robertw
Musocity,

I see from your video, that tab 5 shows some layouts!

Q 1) By layouts, does that mean that I can place the windows where I want them and save them as layouts to recall when I need them?

Robert smile
Yes you can make any layout you like.
I made that skin some years ago, it may have been under pipeline user name, may have to update it for the new buttons added since.

[Linked Image - Only viewable when logged in]

You set it in the script to open a window then resize and position it:

Code
Layout1:
#NoEnv
#SingleInstance Force

;SetTitleMatchMode, 2 


IfWinExist, ahk_class TAudioEditFloat
{
	Winactivate, ahk_class TAudioEditFloat
	Sleep, 100
    WinMove, ahk_class TAudioEditFloat,, 0, 790, 1920, 280
}
	
IfWinNotExist, ahk_class TAudioEditFloat
{
    Winactivate, ahk_class TBandWindow 
	WinMenuSelectItem, ahk_class TBandWindow, , Window, Audio Edit, Moveable Audio Edit Window
    Sleep, 100
	WinMove, ahk_class TAudioEditFloat,, 0, 790, 1920, 280
}

Winactivate, ahk_class TBandWindow 
Sleep, 100
WinMove, ahk_class TBandWindow,, 0, 0, 1440, 800


IfWinExist, ahk_class TxForm, Mixer
{
	Winactivate, Mixer
	Sleep, 100
    WinMove, Mixer,, 1425, 0, 500, 800

}

IfWinNotExist, Mixer
{
	Winactivate, ahk_class TBandWindow 
	WinMenuSelectItem, ahk_class TBandWindow, , Window, Floating Mixer Window
	Winactivate, Mixer
	Sleep, 500
    WinMove, Mixer,, 1425, 0, 500, 800

}
return