Release script.embuary.info - get TMDb data - the little ExtendedInfo brother - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300) +---- Thread: Release script.embuary.info - get TMDb data - the little ExtendedInfo brother (/showthread.php?tid=346034) |
RE: script.embuary.info - the little ExtendedInfo brother - beatmasterrs - 2019-08-17 (2019-08-17, 13:22)sualfred Wrote: I've added a small and optional context menu addon to use the script in any skin. It's already availalbe in my repo and has been submitted to the Kodi repo. Should be available soon to everyone. Works very well! Maybe you can add something to override the onback function like in extendedinfo? snippet:
so if onback, i can set focus to a controllist f.e. then it would be perfect for me RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-17 Nope. Onback is used to call the dialog history/previous dialog. Edit: Err.. wait. What exactly should happen if you trigger onback? Changing the focus without closing or what exactly? RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-17 Ah, sorry, it's already late. Please try the latest GitHub commit. Examples:
RE: script.embuary.info - the little ExtendedInfo brother - jurialmunkey - 2019-08-17 (2019-08-17, 22:29)sualfred Wrote: Nope. Onback is used to call the dialog history/previous dialog. Phil added a function for me in extended info where you could set an onback property for a specific container. If the property was set and that container focused, then the script would do the action in the property rather than close the dialog. It is mostly used so that you can send focus back to the top list or row of buttons on back rather than close the window. EDIT: I see you've just added it RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-17 Yeah, thanks. My brain is just not working as it should on midnight so it took a few minutes until I understood the request RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-17 Nice, so my onback actions from the lists will now be honoured and focus will go back my main buttons instead of closing the dialog? RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-18 Yes, but the onback commands from your lists will still be ignored but you can add them in the header of the dialogs via onload as setproperty for all containers where you want to have your own onback command. RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-18 Understood, thanks. RE: script.embuary.info - the little ExtendedInfo brother - beatmasterrs - 2019-08-18 works like a charm, thanks a lot RE: script.embuary.info - the little ExtendedInfo brother - mikeSiLVO - 2019-08-19 Hi @sualfred Getting a repeatable error on a specific movie in my library all the others I have checked work fine. Not sure what is so special about this one I am using:
Here is full LOG. Error report:
Thanks EDIT: Found another movie Same traceback but different position. Code: UnicodeEncodeError: 'ascii' codec can't encode character u'\xbd' in position 30: ordinal not in range(128) Quick search on Google led me HERE. Don't know if that helps but I do see str on line 401 in tmdb_utils. I also have no idea what I am talking about... RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-19 Thanks, should be fixed on my repo. @mikeSiLVO Could you please confirm? RE: script.embuary.info - the little ExtendedInfo brother - mikeSiLVO - 2019-08-19 Sorry, but I am still getting the same error.
RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-19 Found the issue. Gimme a few. @mikeSiLVO solved RE: script.embuary.info - the little ExtendedInfo brother - mikeSiLVO - 2019-08-20 (2019-08-19, 09:39)sualfred Wrote: Found the issue. Gimme a few. Yep! Thanks RE: script.embuary.info - the little ExtendedInfo brother - User 405025 - 2019-08-26 (2019-08-17, 13:22)sualfred Wrote: I've added a small and optional context menu addon to use the script in any skin. It's already availalbe in my repo and has been submitted to the Kodi repo. Should be available soon to everyone. Sorry for beeing late, and just to get you right - with this i dont need to set the propertys for the items via a hidden button and also dont need to put button+action in dialogcontextmenu.xml (like it was in early release) ?? |