Closed GoogleCodeExporter closed 8 years ago
Only Smart Albums that you create yourself are considered smart albums by
iPhoto. "Last Import" is marked as "Special Roll", "Last Month" is "Special
Month", and Flagged is "Shelf". You can change Phoshare yourself if you want a
quick way to export your "Last Import". Around line 763, the code looks like
this:
if options.smarts:
self.process_albums(data.masteralbum.albums, ["Smart"], "",
options.smarts, excludes, options)
Change it to say say
"Smart", "Special Roll"
instead of just
"Smart"
and your export command should export the Last Import album:
if options.smarts:
self.process_albums(data.masteralbum.albums, ["Smart", "Special Roll"], "",
options.smarts, excludes, options)
Original comment by tsporkert
on 11 Sep 2010 at 4:14
Thanks for the pointers. I'll check the code. It would be good to update the
scripting information page. It's a little misleading as it refers to the
special rolls.
Original comment by fb657...@skynet.be
on 12 Sep 2010 at 5:17
Tested in Phoshare 1.5.2
Original comment by tsporkert
on 11 Oct 2012 at 6:23
Original issue reported on code.google.com by
fb657...@skynet.be
on 11 Sep 2010 at 12:11