feature request for filmstrip:
Rather than show a fixed number of images in the filmstrip, I'd like to show the number of images that fit the width of the page. When the thumbnails are narrow it would show many, and when wide, it would show a few?
Thanks...
Orie
There's no way to reliably check what resolution a user is browsing with, so this can not be done easily. I don't think this will make it into the core code, but you're wlecome to post a hack.
Joachim
My thought was not to base it on the viewer's resolution, but simply on a set, configured, width.
Orie
That wouldn't be easy to do. You'd basically have to fetch one image from the database, actually look at the thumbnail and calculate it's width, add it to a variable that would total up all thumbnail widths, then compare that against your configured width. Repeat as necessary. Could be up to 10 queries. Or you'd have to fetch a bunch of images from the database as an array, then loop thru that array and do the total/compare actions. If the Width of the table for file display, which I assume you'd use for a comparison, is set to a percentage, this wouldn't work at all.
That's a lot of coding and testing. I agree with Joachim, this isn't something likely to go into code code, but knock yourself out and code a hack!