This site has moved.
Creates an Album with the given name in Picasa.
Arguments:
Advanced Arguments*:
Return Values:
Type
Album
Description
newly created album
Examples:
var album = PicasaApp.createAlbum('My new album', {visibility: 'unlisted', description: 'This is my new album'});
Logger.log(album.getTitle());
Returns all the Photos that contain the specified query string in your gallery.
Arguments:
Return Values:
Type
Photo[]
Description
any photo with title, caption or tag matching the search query
Examples:
PicasaApp.search('DC0000023')[0].deletePhoto();
Returns all the Albums in Picasa.
Return Values:
Type
Album[]
Description
the Albums in Picasa
Examples:
var albums = PicasaApp.getAlbums();
for(i in albums){
Logger.log(albums[i].getTitle());
}
Returns the Album at the given id.
Arguments:
Name
id
Type
String
Description
the album id
Return Values:
Type
Album
Description
the Album at the given id
Examples:
var album = PicasaApp.getAlbumById('5623554255222794561');
Logger.log(album.getTitle());