After FlipBook Creator has finished publishing the FlipBook for FlipViewer BV, the files inside the FlipBook could be HTMLs embedding images if your source files are PDF documents and/or images. Thus, in order for your readers to be able to perform keyword search on the FlipBook for FlipViewer BV, you need to prepare a folder of text files.
To prepare a folder of text files (if your source files are PDF documents) :
1. Open a PDF document in Adobe Acrobat.
2. Choose File > Save As and select Text (Accessible) (*.txt) at the Save as Type. Save the text file in a folder inside your FlipBook resource folder. The filename of the text file should be in the format of "<html_filename>_text.txt".
3. Repeat steps 1 and 2 for each PDF document in your source file list.
4. Specify the local absolute URL of this text file folder in the XML file, i.e. "<Project Name>_def.xml" created by FlipBook Creator in the FlipBook resource folder. This local absolute URL is the location where your text file folder will be hosted in your Web Server.
For example the system folder of your PHP package is hosted at: “/var/www/html/fvb115/System/”. (See Deploy FlipViewer BV's PHP Package for details of how to deploy PHP package.) If you are not deploying FlipViewer BV's PHP package on your Web Server, you have to get this path from your ID issuer.
At the “text_file_folder” path, you need to add “../../../../../” to return to the root level, before putting the actual path of the text file folder.
Example: <item name = "text_files_folder" content="../../../../../home/esystems/book/MyFlipBookABC_1024_opf_files/sample_text_files_folder"/>
<?xml version = "1.0" encoding = "UTF-8"?> <package unique-identifier="unspecified"> <BV_enabled version = "1.0.0"> <book_settings> <item name ="htmlload_delay" content = "4000ms"/> <item name="print_mode" content ="intuitive"/> <item name = "flippingimageload_percent" content="10"/> <item name = "text_files_folder" content="../../../../../home/esystems/book/MyFlipBookABC_1024_opf_files/sample_text_files_folder"/> </book_settings> <flippingimage left_url_default = "" right_url_default = ""/> </BV_enabled> </package> |