Page 1 of 1
Question about sorting
Posted: Fri May 07, 2010 9:04 pm
by sparky
Hi folks, I've just started using wild, and so far so good, but I'm having a bit of trouble getting around the library. I want to avoid as many button presses as possible with my remote, so I'm trying to figure out how to seperate my movies from my tv shows. At the moment, they're all under "all movies" (which is the only one that will show thumbnails), so it makes it a little confusing when I have 200 episodes mixed in with movies. I could use collections, but thats a lot of menu navigation.
Anyone have any suggestions on how to sort these out? Thanks!
(ps: streaming from win7 to a wdtv live)
Re: Question about sorting
Posted: Sat May 08, 2010 7:43 am
by Eugene
Hi,
sparky wrote:I've just started using wild, and so far so good, but I'm having a bit of trouble getting around the library. I want to avoid as many button presses as possible with my remote, so I'm trying to figure out how to seperate my movies from my tv shows. At the moment, they're all under "all movies" (which is the only one that will show thumbnails), so it makes it a little confusing when I have 200 episodes mixed in with movies. I could use collections, but thats a lot of menu navigation.
Anyone have any suggestions on how to sort these out? Thanks!
(ps: streaming from win7 to a wdtv live)
You can create a root folder "TV Shows" and link it to the collections folder TV Shows (if exists)
On the right mouse button in the folder tree - Structure of media resources - On the right mouse button - Add folder - TV Shows - Type - Dynamic (script) - button Script - Expression
Code: Select all
var
SourceFolder: TWmsScriptMediaItem;
begin
SourceFolder := WmsFindMediaFolder(mfVideoCollectionsItemID, 'TV Shows');
if SourceFolder <> nil then
WmsDatabaseLinkFolder(SourceFolder.ItemID, FolderItem.ItemID)
end.
OK-OK-Close-Renew
Re: Question about sorting
Posted: Wed May 19, 2010 7:39 pm
by Swisher
Hi,
I have created the script as above, now there is a new root folder called TV Shows.
How to use it now, how do i get my shows in there??
Thanks for ur help.
Re: Question about sorting
Posted: Thu May 20, 2010 7:25 am
by Eugene
Hi,
Swisher wrote:
I have created the script as above, now there is a new root folder called TV Shows.
How to use it now, how do i get my shows in there??
http://www.wildmediaserver.com/forum/vi ... 2135#p2135