Chronological order in a video carpet using ubumenu?

Dalmazzo's icon

Hi all!
I’m working in a application that records videos, this videos are just comments that the visitors left talking about the exposition. It’s simple but I have some problems with the menu section. I need to put the last 10 videos recorded in a menu, and I have something using 10 small jit.pwindow and calling the carpet using ubumenu, when you click the window it calls the video in the big screen. But i don`t find the way to organize the menu from the last video recorded to the first videos recorded; in chronological order; ubumenu is organizing only by alphabetical order
I need some help using ubumenu or a different way to organize my video carpet automatically.
Thanks a lot for the help
Greetings
David

Rob Ramirez's icon

store the video names in a coll, in the order they are created.
then when you're done recording iterate through the coll in the proper order (either front to back or back to front) and populate the menu in that order using the "append" message.

actually, i don't see why you can't just populate the menu from the beginning that way. it shouldn't resort if you're using the append message.

Dalmazzo's icon

Hi,
Thanks, working with coll its possible to organize the data. When you use append in coll object you are instead using "insert" message? coll doesn't seem to work with append message.
Thanks for the help
David