Examples...
Here are some examples that show you what functions are being used.
- 1. Inside the Yewknee Skin- Example Screenshot
- Functions Used:
displayAlbums();
displayButtons();
displayPhoto();
- 2. Simple Gallery Thumbnails / Photos- Examples
- Functions Used:
• thumbnails page
callThumbnails('s',4);
displayAlbums();
displayButtons("thumbnails");
• photospage
displayButtons();
displayPhoto();
displayAlbumDetails();
3. Displaying all photos in your photostream - Example
- Functions Used:
callSearch('s',0,500);
displaySearch();
- 4. Displaying your photostream with Next/Back pages- Example
- Functions Used:
callSearch('s',0,20);
displayButtons("search");
displaySearch();
- 5. Search Using tags - Example
- Functions Used:
callSearch('s',0,500);
displayTags();
displayButtons("search");
displaySearch();
- 6. Same as #5, but uses STOP to not auto search - Example
- Functions Used:
callSearch('s',1,500);
displayTags();
displayButtons("search");
displaySearch();
-
-
-
|