Books Google Book Search
Ralph Nusser, Sogetes FileMaker-Services
http://www.sogetes.com
Lookup book information by ISBN
Description:
/*===============================================================
SYNTAX:
_ISBN_Google_Book_Search ( pISBN ; pDestination )
AUTHOR:
Ralph Nusser, Sogetes Computer-Services, 17-FEB-2010
www.sogetes.com
DESCRIPTION:
Lookup book information at Google book search
EXAMPLE:
Book http://books.google.com/books?vid=ISBN{ISBN Number}
Example: http://books.google.com/books?vid=ISBN0470429003
Front cover http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=frontcover
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=frontcover
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=frontcover#v=onepage&q=&f=false
Title page http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=titlepage
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=titlepage
Copyright page http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=copyright
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=copyright
Table of contents http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=toc
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=toc
Index http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=index
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=index
Back cover http://books.google.com/books?vid=ISBN{ISBN Number}&printsec=backcover
Example: http://books.google.com/books?vid=ISBN0470429003&printsec=backcover
SOURCE:
http://code.google.com/intl/de-DE/apis/books/docs/static-links.html
===============================================================*/
Let ([
a = "http://books.google.com/books?vid=ISBN";
b = Filter ( pISBN; "0123456789X");
c = Case ( PatternCount ( pDestination; "cover"); "&printsec=frontcover#v=onepage&q=&f=false";
PatternCount ( pDestination; "title"); "&printsec=titlepage";
PatternCount ( pDestination; "right"); "&printsec=copyright";
PatternCount ( pDestination; "content"); "&printsec=toc";
PatternCount ( pDestination; "toc"); "&printsec=toc";
PatternCount ( pDestination; "index"); "&printsec=index";
PatternCount ( pDestination; "back"); "&printsec=backcover";"");
$url = a & b & c
];
$url
)
Note: these examples are not guaranteed or supported
by BrianDunning.com. Please contact the individual developer with any questions
or problems.
This
is my Web Viewer Example and I want to edit it
digg this page | del.icio.us this page
Newest Web Viewer Examples:
Web Viewer Example Authors:
Link to all of your own Web Viewer Examples on this site with the following URL:
http://www.briandunning.com/filemaker-web-viewer/results.php?author=Your
Name Here