SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Studio
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV Studio Discussion related to the SageTV Studio application produced by SageTV. Questions, issues, problems, suggestions, etc. relating to the Studio software application should be posted here.

Reply
 
Thread Tools Search this Thread Display Modes
  #21  
Old 07-15-2008, 12:19 AM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Note: as of the v6.4.5.3 STV Update, the info in the previous post was changed so that gCustomSTVInitParams is sent as it is received instead of being turned into another array. The Java function now would take a series of typed parameters instead of a single array.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #22  
Old 07-19-2008, 07:21 AM
mickp's Avatar
mickp mickp is offline
Sage Aficionado
 
Join Date: Oct 2006
Posts: 468
I'd realy like to be able to put a link in my mc menu to the "Detailed Setup", "Video / Audio", "Audio renderer" option/dialog from the default stv which would return to SageMC once the selection is made or backed out of. Does this new feature allow for an easy way to do this or would it be better to try to hack this setting dialog into sagemc?

Mick.
Reply With Quote
  #23  
Old 07-19-2008, 09:52 AM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Quote:
Originally Posted by mickp View Post
I'd realy like to be able to put a link in my mc menu to the "Detailed Setup", "Video / Audio", "Audio renderer" option/dialog from the default stv which would return to SageMC once the selection is made or backed out of. Does this new feature allow for an easy way to do this or would it be better to try to hack this setting dialog into sagemc?
This system doesn't allow jumping to a specific dialog, but it could jump directly to the Detailed Settings menu, where you could choose that setting.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #24  
Old 02-03-2009, 08:54 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Obviously I'm a bit late with this suggestion for 6.5, but at some point you might want to add the capability to jump to a stock menu by widget symbol (e.g. "BASE-44367") instead of by widget name (e.g. "Setup Menu"). Presumably this is exactly the kind of widget-addressing problem that symbols are meant to solve.

Perhaps the simplest approach is to first look up FindWidgetBySymbol(gTargetMenuName). If that fails, then do what you do now to look it up by widget name. That way it's backward-compatible with existing code, but allows new code to use the speedier and more future-proof symbol lookup.
__________________
-- Greg
Reply With Quote
  #25  
Old 02-03-2009, 10:05 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Thanks for the suggestion Greg. That obviously never occurred to me & it would certainly help find the correct widget. I've added it to my to-do list.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #26  
Old 02-09-2009, 03:27 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Update: I've implemented the quoted suggestion, so you'll be able to test it in the next update... whenever that happens to be.

Oh, and if the symbol is not for a menu widget, it will skip it.

Quote:
Originally Posted by GKusnick View Post
Perhaps the simplest approach is to first look up FindWidgetBySymbol(gTargetMenuName). If that fails, then do what you do now to look it up by widget name. That way it's backward-compatible with existing code, but allows new code to use the speedier and more future-proof symbol lookup.
- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #27  
Old 02-10-2009, 01:23 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Great, thanks!
__________________
-- Greg
Reply With Quote
  #28  
Old 06-20-2009, 05:48 PM
Crashless's Avatar
Crashless Crashless is offline
Sage Icon
 
Join Date: Oct 2003
Location: Los Angeles, CA
Posts: 1,224
I'm trying this out, and I'm able to successfully load the default STV, but it goes to the main menu of the Default STV.

Then upon return, it's failing to go back to the specified menu. I feel like I'm missing something obvious.

Thoughts? Code attached.
Attached Images
File Type: jpg setup code.jpg (49.1 KB, 523 views)
__________________
Give the Meekell STV a try!
Reply With Quote
  #29  
Old 06-20-2009, 06:50 PM
razrsharpe razrsharpe is offline
Sage Icon
 
Join Date: Sep 2008
Location: Boston, MA
Posts: 2,111
Quote:
Originally Posted by Crashless View Post
I'm trying this out, and I'm able to successfully load the default STV, but it goes to the main menu of the Default STV.

Then upon return, it's failing to go back to the specified menu. I feel like I'm missing something obvious.

Thoughts? Code attached.
take a look at the sagemc code. It does exactly what you are trying to do and you should be able to copy it

I just did this a couple days ago to link to the system messages window before mike was able to patch sagemc and was able to get it working pretty easily
__________________
Server 2003 r2 32bit, SageTV9 (finally!)
2x Dual HDHR (OTA), 1x HD-PVR (Comcast), 1x HDHR-3CC via SageDCT (Comcast)
2x HD300, 1x SageClient (Win10 Test/Development)
Check out TVExplorer

Last edited by razrsharpe; 06-20-2009 at 06:55 PM.
Reply With Quote
  #30  
Old 06-20-2009, 07:47 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by Crashless View Post
I'm trying this out, and I'm able to successfully load the default STV, but it goes to the main menu of the Default STV.

Then upon return, it's failing to go back to the specified menu. I feel like I'm missing something obvious.
gTargetMenuName specifies the name of the menu in the stock STV that you want to jump to. You've specified "Settings", but there is no stock menu by that name, so it goes to the stock Main Menu.

On return to your custom STV, it will load your Main Menu. If you want to jump to some other menu in your STV on reload, it's up to you to put code in your Main Menu's BeforeMenuLoad hook to accomplish that.
__________________
-- Greg
Reply With Quote
  #31  
Old 06-20-2009, 11:19 PM
Crashless's Avatar
Crashless Crashless is offline
Sage Icon
 
Join Date: Oct 2003
Location: Los Angeles, CA
Posts: 1,224
Quote:
Originally Posted by GKusnick View Post
gTargetMenuName specifies the name of the menu in the stock STV that you want to jump to. You've specified "Settings", but there is no stock menu by that name, so it goes to the stock Main Menu.

On return to your custom STV, it will load your Main Menu. If you want to jump to some other menu in your STV on reload, it's up to you to put code in your Main Menu's BeforeMenuLoad hook to accomplish that.
Doh! Mis-read how that variable worked. I thought it meant it would RETURN to that screen after finishing - not GO TO that screen in the default STV.

I really should have stepped through the SageMC code one more step before messing with it on my own. I saw the "Default STV Menu" reference and my memory flashed to this thread, thinking "SageMC hasn't been updated" and I went trodding off the cliff.

Ah well - thanks for the pointers - the world makes sense again.
__________________
Give the Meekell STV a try!
Reply With Quote
  #32  
Old 10-17-2009, 09:23 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
I have another wish for this mechanism. Suppose I want to use the stock STV for video browsing, but then revert to my custom STV for media playback. It would be handy to have a gReloadCustomSTVOnPlayback variable that I could set so that the next time the MediaPlayer OSD menu is loaded, it returns to the custom STV instead. (Obviously it's then up to me to dispatch to my own MediaPlayer menu as needed on reload.)

This should amount to no more than a couple of widgets in the OSD menu's AfterMenuLoad hook. (As an experiment I tried doing it in BeforeMenuLoad, but apparently that's not a good time to call LoadSTVFile(). It did load the new STV, but the menu that got displayed was the old STV's OSD menu instead of the new STV's Main Menu.)

Thanks.
__________________
-- Greg
Reply With Quote
  #33  
Old 10-22-2009, 01:41 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Quote:
Originally Posted by GKusnick View Post
It would be handy to have a gReloadCustomSTVOnPlayback variable that I could set so that the next time the MediaPlayer OSD menu is loaded, it returns to the custom STV instead.
The STV v6.6.2.19 (2009102001) update includes this request, so this is now part of the instructions in the first post of this thread:


If gReloadCustomSTVOnPlayback has been set to true, then the default STV will reload the custom STV after entering the playback menu.

This note was also added to the first post:

Note: These global variables are cleared before reloading the custom STV. If the custom STV needs to do anything specific when it is reloaded, it should set its own custom global variables before loading the default STV.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #34  
Old 10-22-2009, 01:49 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Thanks, Andy.
__________________
-- Greg
Reply With Quote
  #35  
Old 12-03-2010, 12:57 PM
bialio's Avatar
bialio bialio is offline
SageTVaholic
 
Join Date: May 2007
Location: Frisco, TX
Posts: 3,445
Is all of this in place and unchanged in V7?
__________________
PHOENIX 3 is here!
Server : Linux V9, Clients : Win10 and Nvidia Shield Android Miniclient
Reply With Quote
  #36  
Old 12-03-2010, 01:12 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by bialio View Post
Is all of this in place and unchanged in V7?
As I recall there have been a few bug fixes and tweaks to the rules by which it decides when to return to the custom STV v. the stock Main Menu. But yes, this machinery is still present and functional (if not exactly "unchanged").
__________________
-- Greg
Reply With Quote
  #37  
Old 12-07-2010, 01:06 PM
bialio's Avatar
bialio bialio is offline
SageTVaholic
 
Join Date: May 2007
Location: Frisco, TX
Posts: 3,445
Hey Opus,

In V7 I've set up two entry points for the default UI from our Phoenix STV - one going to Detailed Setup, the other to Configure Video Sources

"Detailed Setup" and
"Setup Wizard - Summary Page" respectively

When navigating away from these pages (using left key) they both end up back at the V7 Main Menu.

Other links that I've set up, like to Music / Pictures / Online areas of the default STV, behave differently on LEFT event - they reload Phoenix.

I am supposing that in one case it's 'BACK' and others it's a hard coded link to 'Main Menu', athough I haven't dug through the default STV code to verify this.

Is this something I'll need an STVi (ie UI Mod) for the default UI in order to get the Detailed Menu and Video Sources to reload the custom STV on Left instead of going to the V7 Main Menu?

btl.
__________________
PHOENIX 3 is here!
Server : Linux V9, Clients : Win10 and Nvidia Shield Android Miniclient
Reply With Quote
  #38  
Old 12-07-2010, 01:52 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
I think "Detailed Setup" & "Online Services Menu" should function the same, as far as using the Left arrow. Submenus in the online services area use Back, so maybe that's what you are using.

Returning to the custom STV when Back is used & there are no more menus to back to is fairly new.

The custom STV support has been convoluted enough for a while now that I'm not sure why Left on those menus is jumping directly to the Main Menu vs. using Home to do so. Maybe it was to allow getting to the Main Menu _somehow_, because using Home or the Main Menu button in Detailed Setup would probably return to the cusotm STV if you've got that option enabled.


Greg: Are you using this Left vs. Home difference on Detailed Setup/etc, or was this an oversight on my part? I don't want to assume I made a mistake & change something only to find I need to change it back.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #39  
Old 12-07-2010, 02:22 PM
GKusnick's Avatar
GKusnick GKusnick is offline
SageTVaholic
 
Join Date: Dec 2005
Posts: 5,083
Quote:
Originally Posted by Opus4 View Post
Greg: Are you using this Left vs. Home difference on Detailed Setup/etc, or was this an oversight on my part? I don't want to assume I made a mistake & change something only to find I need to change it back.
I can confirm that Detailed Setup and Online Services behave differently than other screens in that Left arrow returns to the stock Main Menu instead of the custom STV. But I don't depend on that difference, so if you want to change them to be more consistent, I don't have a problem with that.

My main concern, which I believe we resolved back in September, was that if I jump from a custom STV to the stock Main Menu, and then navigate into a menu from there, then Left should take me back out to the stock Main Menu where I came from rather than jumping all the way back to the custom STV. This does seem to be working now as I expect it to, so no change is needed there.
__________________
-- Greg
Reply With Quote
  #40  
Old 12-08-2010, 06:12 AM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
OK, then I will probably update the default STV to change the way it is jumping to the Main Menu in these cases. This will affect using Left on some menus such that it will issue the Home command, causing a return to the custom STV if you've set the option to return on use of Home. Currently it simply jumps directly to the Main Menu in some places.


BTW: The use of the Back command was one of the items changed in previous discussions with Greg. Now, if there is no more menu history, then using the Back command will return to the custom STV. Note that Left functions as Back only on some menus, so there can be a difference between using Left vs. Back. If you want to go to the previous menu, use Back. If you intend to go to the parent menu, use Left.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
How To: Add custom online video feed definitions (default STV; v7.0+) Opus4 SageTV v7 Customizations 14 04-18-2015 07:06 AM
How To: Add custom online video feed definitions (default STV; v6.4+) Opus4 SageTV Customizations 69 08-15-2010 10:13 AM
How To: Add custom online video feed definitions (default STV; v6.3.10) Opus4 SageTV Customizations 34 06-04-2008 08:11 PM
Custom STV: My ShowLogos STV working in Linux laurenglenn SageTV Linux 0 02-19-2006 05:49 PM


All times are GMT -6. The time now is 11:16 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.