View Single Post
Old 11-22-2017, 11:27 AM   #1238
Mr. PC
Human being with feelings
 
Mr. PC's Avatar
 
Join Date: Apr 2010
Location: Cloud 37
Posts: 1,071
Default

Quote:
Originally Posted by reddiesel41264 View Post
I want to know :-)

Copy this text into notepad and save the file as a .ahk, then download the program AutoHotKey and open the file with AutoHotkey. When in notation view, press either ctrl-alt-F or ctrl-alt-G and it will full-screen the notation.

Code:
; Borderless full screen CTRL+ALT+F
^!f::
WinGetTitle, currentWindow, A
IfWinExist %currentWindow%
{
    WinSet, Style, ^0xC00000 ; hides the title bar
    WinMove, , , 0, 0, 1920, 1080
}
return
 
; Borderless full screen CTRL+ALT+G
; Some games don't work with the above script, so there's an alternative
^!g::
WinGetTitle, currentWindow, A
IfWinExist %currentWindow%
{
   WinSet, Style, -0x400000 ; hides the dialog frame
   WinSet, Style, -0x40000 ; hides the sizebox/thickframe
   WinSet, Style, -0x800000 ; hides the thin-line border
   WinSet, Style, -0xC00000 ; hides the title bar
   WinMove, , , 0, 0, 1920, 1080 ; moves the entire window to 0,0 i.e. upper left corner.
}   
return
I wish I could bundle that function into my ReaNote action list... but I guess impossible without Auto-Hotkey. (Note, there was a discussion before about using Auto-Hotkey for full-screen, the script didn't work with notation, but the above script does).
__________________
AlbertMcKay.com
SoundCloud BandCamp
ReaNote Hotkeys to make Reaper notation easy/fast
Mr. PC is offline   Reply With Quote