More > JRiver Media Center 33 for Windows

Simple(?) Feature request - Navigating in Theater view

<< < (2/2)

marko:

--- Quote from: Moe on September 03, 2024, 09:15:29 am ---@Marko, would you mind sharing your AutoHotKey script?  I mapped the - and = keys to skip forward and backwards and it works, but I do see the previous screen for a split second, it is not instantaneous. This is the script I came up with:


--- Code: ---#IfWinActive ahk_exe Media Center 33.exe
    -::
        Send, {Backspace}
        Send, {Left}
        Send, {Enter}
    return

    =::
        Send, {Backspace}
        Send, {Right}
        Send, {Enter}
    return
#IfWinActive
--- End code ---

I am a little surprised this didn't get more attention.  With page up and page down changing that screen it seems like the core functionality already exists.  Seems like it would be a very simple and very useful thing to add, but what do I know.

--- End quote ---
My AHK scripts simply contain...

--- Code: ---#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.
Sendinput {BS}
Sendinput {Up}
Sendinput {Enter}
--- End code ---

The attached archive contains the scripts for next file up, and next file down, as well as their generated exe files.

These assume that the theater view list is in 'list' view. Thumbnails views are more tricky, especially if you have it set to go back after the left edge of the screen. If you need that, it shouldn't be too hard to edit the script as per your needs.

Hope that helps,
-marko.

Matt:
I'm wondering if page up and page down when viewing an item zoomed in should just jump one item instead of a page of items?  Seems better to me, but feedback appreciated.

lepa:

--- Quote from: Matt on September 03, 2024, 01:37:17 pm ---I'm wondering if page up and page down when viewing an item zoomed in should just jump one item instead of a page of items?  Seems better to me, but feedback appreciated.

--- End quote ---
At first thought jumping a page in the group when item is zoomed doesn't seem useful so maybe we could try like this?

Just bear in mind that page up / down changes behaviour when you come down from the roller. At that position it starts to go page up/down of opened item's "info" rows

JimH:

--- Quote from: Matt on September 03, 2024, 01:37:17 pm ---I'm wondering if page up and page down when viewing an item zoomed in should just jump one item instead of a page of items?  Seems better to me, but feedback appreciated.

--- End quote ---
I agree.

Moe:

--- Quote from: Matt on September 03, 2024, 01:37:17 pm ---I'm wondering if page up and page down when viewing an item zoomed in should just jump one item instead of a page of items?  Seems better to me, but feedback appreciated.

--- End quote ---

This would be great for me, the behavior now isn't very useful in my opinion.  Just make sure to take into account what Lepa said.

Navigation

[0] Message Index

[*] Previous page

Go to full version