Posts: 64
Joined: Apr 2018
Reputation:
3
Hi can this add-on give me
the recently added from a particular playlist.
e.g. if i have a folder called 1080p
i also have a smart playlist for 1080p
I want a widget to display the recently added only within the 1080p
Where the default shows recently added from 2160p, 1080p, 720p folders
If so is there any chance of an instruction how to do it?
I've watched the you tubes, have the add-on and tbh im struggling to understand the addon (but i don't doubt its a powerful tool)
Posts: 709
Joined: Apr 2009
Reputation:
14
2021-12-31, 01:22
(This post was last modified: 2021-12-31, 15:33 by Kokonutcreme.)
Hi
Is there a way to edit widget groups and remove a path entry or to delete an entire widget group to start again? I don't see a delete option in context menu for either an existing path or a widget group.
Thanks
EDIT: it’s ok worked it out
Posts: 1,078
Joined: Oct 2018
Reputation:
112
That message isn't from AutoWidget... I'm not really sure why you'd be seeing that.
Are you launching IAGL games from an AutoWidget you created? Do you have any AutoWidgets? Your screenshot appears to be using Estuary, so I'm guessing that you don't. I'm that case, AutoWidget should have nothing to do with this.
Posts: 152
Joined: Jan 2017
Reputation:
19
I have recently got back into playing with Autowidgets as I trying to mod Aeon Nox Silvio skin to integrate better with it. As others have pointed out there are some limitations with what can be linked as a shortcut within Autowidget - Favourites being the example most often used although I would prefer being able to have a shortcut to File Manager (seems not possible). I do hope that DrInfernoo can manage in some future version to allow these sort of shortcuts.
I have had some success with having as a sub-menu item a refresh a specific widget. The solution as suggested by Drinfernoo many months ago is to select "Custom Item" in the manage sub menu/change action section of the menu customizer and then insert RunPlugin("plugin://plugin/program.autowidget/?mode=refresh&id=[insert Autowidget ID]"). However, there is a slightly better solution if you are using the Aeon Nox Silvio skin (or its many modded versions) instead insert
RunPlugin("plugin://plugin/program.autowidget/?mode=refresh&id=$INFO[Container(container_id).ListItem.Property(autoID)]")
where the container ID is in the format 8011[id_no] for widget 1 or 8021[id_no] for widget 2 and the id number is simply the position of the main menu to which the widget relates so if the widget is attached to the first item on the main menu the container_ID is 80111 (for widget 1) or 80211 (for widget 2).
The reason that is a better solution is that the Autowidget ID may change - for example if you add a new item to the Autowidget Group. If you coded the sub menu refresh button to the Autowidget ID then when that ID changes it breaks the sub-menu refresh command, whereas by coding the way I suggest it does not break. That however does not help you if you change the order of the main menu, but hopefully you do not do that often.
It should be possible to code the custom item sub menu action in a way that even works when the main menu order is swapped around. Something like Container(8011$SKINSHORTCUTS[id]) works in widgets but not in the sub menu. I haven't managed to find the right combination to work but maybe someone else will have more luck than me.