| |||||||
| Improvement Suggestions You have an idea how MediaPortal could be improved? Post it in here. |
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Portal Member Join Date: Sep 2004 Location: Seattle, WA
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
| Can the slide show feature for pictures do the following? Travers a directory for sub directories. I arrange photos in groups and sub groups and would like to be able to show all photos in a parent group. Can a random feature be added that generates a list of images for a slide show then optionally randomises the array changing the display order Thanks |
| | |
| | #2 (permalink) | ||
| Super Moderator Join Date: Apr 2004 Location: Leipzig, Germany Age: 33
Posts: 2,241
Thanks: 31
Thanked 53 Times in 39 Posts
Country: | Hi, Quote:
Quote:
![]() Flip. | ||
| | |
| | #3 (permalink) |
| Portal Member Join Date: Sep 2004 Location: Seattle, WA
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
| I use this code quite often in my apps.. Just fill the ArrayList al with the images then optionally pass to the rand routine. Use al and an index pointer to keep track of current image. //----------------------- using System.Collections; private ArrayList al = new ArrayList(); private int indx = 0; Random r =new Random(); indx = r.Next(al.Count); RandomizeArrayList(al,r); private static void RandomizeArrayList(ArrayList arrayList, Random random) { if(arrayList == null) { return; } int count = arrayList.Count; for(int i=0;i<count;i++) { Object tmp = arrayList[i]; arrayList.RemoveAt(i); arrayList.Insert(random.Next(count), tmp); } } |
| | |
| | #4 (permalink) |
| Guest
Posts: n/a
| The randomisation has been just added this week for the My music section. But not the ability to select a "root dirctory" and traverse sub-directory's... the randomisation play all the database Anyway, will be happy when all those fuctions will be available for pictures, videos and music (not needed for news, mail and recipies ) hummm maybe recipies ![]() Seb |
|
| | #5 (permalink) | |
| Guest
Posts: n/a
| Quote:
So on the frame, I just have the builtin XP random slideshow running for now. To me, nothing is more boring than a picture slide show that goes in order. It's like scrolling through images on a digital camera, very dry and boring. I haven't seen any mention of random image slideshow feature being a priority for a future release. Personally, I am shocked that the very first MP 0.0.0.1 (or whatever) release didn't have random image slideshow. Actually, it's open source, so I guess I should take a look and see if I can help that out. | |
|
![]() |
| Bookmarks |
| Tags |
| features, show, slide |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Typing in a search for a show? Am I missing something? | ASiDiE | Improvement Suggestions | 10 | 2006-12-16 21:00 |
| MyTV: Recordings do not show up in Timer-View as Finished | The_Stig | 0.2.0.0 Final and SVN Builds | 3 | 2006-11-27 20:48 |
| Timeshift does not turn off resulting in huge file sizes | broadband412 | The old Bugreport Forum | 18 | 2006-06-16 08:47 |
| 2 Bugs when recording a show that's actually running | Ralph | Fixed 0.2 RC4 Bugs | 6 | 2006-06-14 19:14 |
| Recordings should show up when they start and not after. | ASiDiE | Improvement Suggestions | 11 | 2006-02-22 12:04 |