Is there a command that I can send to an R4 that tells it to open a page and forget it for the back button? (The PageFlipForget function if you program the flip in TPD4)
It's kind of a pain, but I have been overriding the built-in back button functionality, and assigning it a regular button channel ... then doing all my "back" functionality in code. That lets me go to an active source page, for example, after adjusting surround modes without relying on the "previous" page function, which might not take me where I want anyway.
When your code handles the page flips, the back button built-in functionality with "forget" won't work. You want the "forget" feature in cases where there are several sub-pages on a control, but you want the back button to go to the main control page, not just the last sub-page. This is common on small-screen devices like an R4 where you have to spread the controls out on a lot of pages.
When your code handles the page flips, the back button built-in functionality with "forget" won't work. You want the "forget" feature in cases where there are several sub-pages on a control, but you want the back button to go to the main control page, not just the last sub-page. This is common on small-screen devices like an R4 where you have to spread the controls out on a lot of pages.
Safe to assume no one ever found any command via code for a page flip forget on an R4, right?
I could use one too and would rather not use a popup, but may have to.
Comments
When your code handles the page flips, the back button built-in functionality with "forget" won't work. You want the "forget" feature in cases where there are several sub-pages on a control, but you want the back button to go to the main control page, not just the last sub-page. This is common on small-screen devices like an R4 where you have to spread the controls out on a lot of pages.
Cool, didn't think of it that way
I could use one too and would rather not use a popup, but may have to.