Old 07-27-2017, 02:57 PM   #1
deeb
Human being with feelings
 
deeb's Avatar
 
Join Date: Feb 2017
Posts: 4,820
Default how to back to front a running script Gui??

usually when i see this message i just want it to come back to front, any way to do it?
I am on 13 screen , .. i don't have space left
Attached Images
File Type: png Screen Shot 2017-07-27 at 22.30.43.png (30.7 KB, 408 views)
deeb is offline   Reply With Quote
Old 08-02-2017, 10:30 AM   #2
Ulf3000
Human being with feelings
 
Join Date: May 2016
Posts: 369
Default

i made myself a small autohotkey script which brings back small windows from behind the midi editor

for vsts and other smaller reaper windows
-----------------------------
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

WinGet, Array, List, ahk_class #32770
Loop, %Array%
WinActivate, % "ahk_id " . Array%A_Index%
return


for lua scripts
-----------------------

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

WinGet, Array, List, ahk_class Lua_LICE_gfx_standalone
Loop, %Array%
WinActivate, % "ahk_id " . Array%A_Index%
return
Ulf3000 is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 02:14 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.