AlpineSoft Support Forums

Forum List => General Discussion => Topic started by: Steve Crook on June 28, 2021, 08:12:15 PM

Title: Cleanup Audio Tab - Horizontal Scrolling
Post by: Steve Crook on June 28, 2021, 08:12:15 PM
Is there an assigned keyboard key that'll let me move the horizontal scroll thumb to move along the recording? Did have a look through help and couldn't see anything. If there isn't one, it would be useful (to me at least).
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Paul Sanders (AlpineSoft) on June 28, 2021, 08:34:37 PM
Hi,

The left and right arrow keys should do it.
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Steve Crook on June 29, 2021, 10:34:15 AM
Somehow I sent the post without the important bit, that I want to move a 'page' at a time. Perhaps ctrl + arrow key or something.
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Paul Sanders (AlpineSoft) on June 29, 2021, 06:43:33 PM
Sorry, that's not supported.  We will make a note of your request.
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Steve Crook on September 15, 2021, 08:33:13 PM
FWIW I've fund a workaround using something called AutoHotkey (https://www.autohotkey.com/). I started using it because I wanted to disable the capslock key before I did physical damage to my keyboard. It's been useful for all sorts of other things since...

It can send windows messages to the cleanup display to have it horizontal scroll a page at a time when ctrl + < > are pressed. Like this:


; Page right - Press Ctrl+>
^>::
ControlGetFocus, FocusedControl, A
SendMessage, 0x114, 3, 0, %FocusedControl%, A  ; 0x114 is WM_HSCROLL 3 PG_RIGHT, 2 PG_LEFT

return  ;

; Page left - Press Ctrl+<
^<::
ControlGetFocus, FocusedControl, A
SendMessage, 0x114, 2, 0, %FocusedControl%, A  ; 0x114 is WM_HSCROLL 3 PG_RIGHT, 2 PG_LEFT


Neat I thought. I still have to click on the window to ensure it's the one with focus to start, though I'm fairly sure I could write more script to sort that out too...
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Paul Sanders (AlpineSoft) on September 16, 2021, 09:05:58 AM
OK, glad you have a workaround.  I do agree with you that this should be built into VinylStudio, it's on the list (somewhere).
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Paul Sanders (AlpineSoft) on October 23, 2021, 12:44:51 PM
Hello again,

We have implemented this in the latest Beta.  Download links are here:

https://www.alpinesoft.co.uk/forum/index.php?topic=2567.0
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Steve Crook on October 26, 2021, 11:39:38 AM
Just tried it. Really nice, thanks.
Title: Re: Cleanup Audio Tab - Horizontal Scrolling
Post by: Paul Sanders (AlpineSoft) on October 26, 2021, 06:35:15 PM
Cool, thank you.