How to add a editable section to a book

Hello,
I'm working on a guide for a book and in this guide there is going to be a section in which the reader will be able to write down their experiences with whatever is related to the content. The best way to describe it is as a section where notes are to be taken by the reader. Is iBooks Author capable of doing this?

Books made  with iBA, when  viewed on iPad already have a Notes facility.
Tap on the iPad screen to open the top menu bar, third icon from left opens the  Notes and will tell you how to use.
Your readers will be able to  add a note and create study cards.
Check this....  https://discussions.apple.com/thread/5567848?tstart=0

Similar Messages

  • How to add my own pdf into "Kobo Books"?

    Anyone knows how to add my own PDFs into "Kobo Books"?
    The "Adobe Reader" in playbook doesn't have bookmark function.

    Because the Adobe Reader pre-installed in Playbook doesn't have Bookmark function, while kobo has it.

  • How to make a editable section non editable?

    When I created my sample site in DW4, I made my template with editable/non editable section. My footer I made editable, now I would like to add a few links on the footer (contact me, about me, etc). I  did place an image,background color in the footer.
    Should or can I convert the footer of my template to non editable so that I do the above and have the change made to all pages in the form of a libary item, or is there another way to do this efficently?
    As always thanks in advance.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>jimmucklinphotography</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    body,td,th {
    color: #000;
    a:link {
    color: #333;
    text-decoration: none;
    a:visited {
    color: #900;
    text-decoration: none;
    a:active {
    color: #F30;
    text-decoration: none;
    a:hover {
    text-decoration: underline;
    -->
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body text="#000000" link="#000000" vlink="#333333">
    <table width="960" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td><img src="images/banner2.jpg" width="960" height="75" /></a><img src="images/banner1.jpg" width="960" height="50" /></td>
      </tr>
    </table>
    <table width="960" border="0" cellspacing="0" cellpadding="3">
      <tr bgcolor="#00FFFF">
        <td bgcolor="#CCCCCC"><strong><a href="index.html">Home</a> || <a href="html/weddings/weddings.html">Weddings</a> || <a href="html/seniors.html">Seniors</a> || <a href="html/services/otherservices.html">Other Services </a>|| <a href="html/gallery.html">Gallery</a> || <a href="html/printsprices.html">Prints and Prices </a>|<a href="html/events.html">| Events ||</a></strong></td>
      </tr>
    </table>
    <table width="960" border="0" cellspacing="0" cellpadding="3">
      <tr bgcolor="#00FFFF">
        <td bgcolor="#CCCCCC"><!-- InstanceBeginEditable name="sub" --><!-- InstanceEndEditable --></td>
      </tr>
    </table>
    <table width="960" border="0" cellspacing="0" cellpadding="40">
      <tr>
        <td><!-- InstanceBeginEditable name="content" -->Index page<!-- InstanceEndEditable --></td>
      </tr>
    </table>
    <table width="960" border="0" cellspacing="0" cellpadding="1">
      <tr>
        <td align="center"><!-- InstanceBeginEditable name="footer" --><img src="images/footer2.jpg" width="960" height="45" /><!-- InstanceEndEditable --><br /> </td>
      </tr>
    </table>
    </body>
    <!-- InstanceEnd --></html>

    When I created my sample site in DW4
    Just to avoid confusion, the version of DW you are using is NOT DW4, it's DWCS4.  DW4 was released in 1998 and superseded by DMX (6.0).
    Should or can I convert the footer of my template to non editable so that I do the above and have the change made to all pages in the form of a libary item, or is there another way to do this efficently?
    Placing a Library item in that footer editable region would certainly give you the flexibility you are seeking, but there is a more efficient way to do this.  That way would be to use a server-side include.  The disadvantage of using a Library item is that after making any changes to it, you must upload every affected page to the server again (since, as with Templates, only local files are affected by these changes).  On the other hand, the disadvantage of using server-side includes is that you must change your filenaming system site-wide.  If your site is not too large (say <20 pages), and if you are not so experienced with server stuff, then Library items may be your best method.

  • How to add an editable checkbox to an alv grid

    Hi..
    I need to add an editable checkbox to a alv grid.
    I wouls appreciatet it if anyone could provide some sample code.
    The standard example  BCALV_EDIT_05 is an oops example... I need a simple example
    Please help
    thanks
    Karen

    hi
    after you pass a field as checkbox in fieldcat
    then in layout populate edit
    ex wa_layout-edit = 'X'.
    try the following code
    REPORT  ZALV5.
    TYPE-POOLS: slis.
    tables: mara.
    DATA: begin of it_mara OCCURS 0,
          matnr like mara-matnr,
          mbrsh like mara-mbrsh,
          matkl like mara-matkl,
          meins like mara-meins,
          ersda like mara-ersda,
          ernam like mara-ernam,
          W_CHK type c ,
         END OF it_mara.
    *data: it_mara like  mara occurs 0 with header line.
    data:it_feildtab type slis_t_fieldcat_alv,
         wa_fieldcat type slis_fieldcat_alv.
    *DATA: i_private TYPE slis_data_caller_exit,
    data:     i_selfield TYPE slis_selfield,
          W_exit(1) TYPE c.
    PARAMETERS: p_title TYPE sy-title default 'ALV'.
    START-OF-SELECTION.
      SELECT matnr mbrsh matkl meins  ersda ernam FROM mara
        INTO corresponding fields of  table it_mara.
    wa_fieldcat-col_pos   = '1'.
    wa_fieldcat-fieldname = 'W_CHK'.
    *wa_FIELDCAT-KEY = 'X'.
    *wa_fieldcat-tabname   = 'IT_MARA'.
    *wa_fieldcat-seltext_s = 'units of measure'.
    wa_fieldcat-checkbox = 'X'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    CLEAR wa_fieldcat.
    wa_fieldcat-col_pos   = '2'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-fieldname = 'MATNR'.
    wa_fieldcat-key = 'X'.
    wa_fieldcat-hotspot = 'X'.
    wa_fieldcat-seltext_s = 'no'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '3'.
    wa_fieldcat-fieldname = 'MBRSH'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-seltext_s = 'Ind.sec'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '4'.
    wa_fieldcat-fieldname = 'MATKL'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-seltext_s = 'Description'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
    wa_fieldcat-col_pos   = '5'.
    wa_fieldcat-fieldname = 'MEINS'.
    *wa_FIELDCAT-KEY = 'X'.
    wa_fieldcat-tabname   = 'IT_MARA'.
    wa_fieldcat-edit      = 'X'.
    wa_fieldcat-seltext_s = 'units of measure'.
    APPEND wa_fieldcat TO it_feildtab.
    CLEAR wa_fieldcat .
      CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
           EXPORTING
                i_title                 = p_title
                i_selection             = 'X'
                i_zebra                 = 'X'
               I_SCREEN_START_COLUMN   = 0
               I_SCREEN_START_LINE     = 0
                I_SCREEN_END_COLUMN     = 0
               I_SCREEN_END_LINE       = 0
                i_checkbox_fieldname    = 'W_CHK'
              I_LINEMARK_FIELDNAME    =
              I_SCROLL_TO_SEL_LINE    = 'X'
                i_tabname               = 'IT_MARA'
              i_structure_name        = 'IT_MARA'
               IT_FIELDCAT             = it_feildtab
              IT_EXCLUDING            =
              I_CALLBACK_PROGRAM      =
              I_CALLBACK_USER_COMMAND =
               IS_PRIVATE             = I_PRIVATE
         IMPORTING
                es_selfield             = i_selfield
                e_exit                  = w_exit
           TABLES
                t_outtab                = it_mara
           EXCEPTIONS
                program_error           = 1
                OTHERS                  = 2.
      IF sy-subrc <> 0.
       MESSAGE i000(0k) WITH sy-subrc.
      ENDIF.
      LOOP AT it_mara WHERE W_CHK = 'X'.
        WRITE: /  it_mara-ersda, it_mara-ernam.
      ENDLOOP.
    reward if helpful
    prasanth

  • Unable to add re-edited photos to a book.

    I uploaded a folder of photos to ibook and found the book quite easy to assemble.
    I then decided to re-edit 2 photos. I went back into the original folder to do so, and re-loaded the whole folder to iphoto.
    The 2 re-edited photos don't appear - I have tried to do allI can think of, but they still dont appear.
    When I deletd them from the folder in ibook, they also were deleted from the book - but I cant find any facility to add photos to the iphoto folder.
    Must have missed something & I hope my explanation isn't too confusing.
    These are 'informal' wedding photos I am doing as a wedding present for a friend's daughter so I need to finish ASAP.
    Hope you can help,
    many thanks.

    awimaging:
    Try dragging the photos onto the book icon in the left hand pane.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How to add products to sections dynamically

    Hi,
    I was curious to know if there is any means by which we can control the display of products added to a section.
    Our requirement is, based on certain inputs from customer, we need to show relevant products to customer (Guided selling).
    I was planning to add all products to a section and then based on some inputs from customer, control the products displayed to customer. I have used customizable layout for the section and included a new jsp for middle1 part. This additional JSP is used to capture the inputs from customer.
    I checked iStore api and could not find any methods under Section class to set visibility flag or add new products dynamically.
    Please suggest any alternatives that you may have used for such a case.
    Thanks
    Muttu

    Guided selling can be implemented using Oracle Configurator. You need to implement Oracle Configurator and integrate with iStore to provide it to end customers.

  • Activity in PCUI : how to add display/edit button?

    Hi Gurus,
    I am new to BSP and Portal. We are using EP 5.0 for activity management. We have a requirement where the activity once saved (in create mode) should be made display only. Currently it stays in edit mode and if the user doesn't back out from there, no one else can use that activity.
    I was wondering if there is an option to make this as display only once the activity is saved.
    Also, when I do the activity search and select an entry from the search result, it is by default in edit mode. Is there a way I can make this display only and add a button to change it to edit mode?
    This is SAP delivered BSP application CRMD_BUS000126 for activities. I would like to know if the standard application provides an option to have a Change/display button. I looked in the blueprint tables and don't see any events for display or change. Only create, save and print are the buttons currently available in the OIC2 search result area.
    Also, once the activity is saved, I would like to make it display only similar to SAPGUI, so that the user doesn't have to back out of the screen for others to be able to use it.
    I was thinking above requirement should have been a standard one and SAP should have something for this out of the box. If not, please let me know the steps. We need this functionality added pretty quick, so any help you can provide me on this would be greatly appreciated.
    Thanks,
    Chandrika

    Dear Chandrika,
      Unfortunately the functionalities expected by you were not available in the standard PCUI.We checked with SAP and they informed us to raise a development request for the same.
      Read only mode is controlled by the PCUI framework so with every PCUI application not just with activities.
    But you have achieve this by adding code for locking in the READ method of Class CL_CRM_BSP_AM_HEADFM_1O.
    Thanks and Regards,
    Abdul Raheem S

  • How to add or edit scripted patterns?

    I like me a bit of scripting so 'scripted patterns' sounds exciting. Can't figure out where the scripts are stored though?

    And applications/Adobe Photoshop CS6/Presets/Deco on a Mac (since you did not state your platform in the first message )

  • How to add front end material to your book?

    Hello,
    I have added all the chapters to my book and now I want to add the Title Page, Dedication, Acknowledgements, and Introduction pages before Chapter 1.
    I thought these would be seperate sections at the same level as chapters, but everytime I add a section it inserts into chapter 1. Do I create a "Front End Material" chapter and then insert the sections? ("Front End Material" sounds so wrong for a chapter name)
    Could someone please let me know the proper way to handle this. I also have a bibliography which I am also assuming is a seperate chapter at the end.
    Thanks,
    Rhek

    Would you happen to know if there is a "formal" name for "front end" material?
    Thanks,
    Rhek
    'Front Matter'. At least in English
    Other cultures like to put an index in the front, as one example, so 'front' becomes a relative term.
    Some like everything on the same level, so there is no 'front'. And still others like to bury the details in minutiae, leaving it to the reader to decode, often to the extent that they are left to come up with their own structure...or not.

  • How to add a description to an iphoto book

    I used the description box in iphoto and labeled my picture.  i would like to keep the description and show it when I add it to my iBook that I want to publish. Can you tell me how to do this

    is this what you are looking for , if not let me know

  • How to add email addresses to my address book?

    I want to add important email addresses to my address book but I do not know how to do this. How can I do this?

    Wow. Do you really have Firefox 3.0b5? It's ancient. You should update Firefox by downloading the current version from http://mozilla.org/firefox and running the installer.
    Firefox doesn't have an address book - it's a Web browser. You'll need to visit the support site for whatever e-mail application you are using. If it's Mozilla Thunderbird, visit http://support.mozillamessaging.com/

  • How to add a new font to font Book

    I need to import a new font into font book for use. The font I have downloaded appears as a blank file (I don't know if I am explaining this correcly). When I try to locate this file thorugh the finder in appears greyed out and I can't select it. I have right clicked on it and specified that it be opened with font book; however, I cannot ever view it within font book. Perhaps it is not a valid file foramt for mac. Here's is a screenshot as the file appears on my desktop:
    http://i20.photobucket.com/albums/b250/cshenderson/Picture1.png
    Please help me get this resolved. How can I be able to use this font?

    mahongue, sorry to interrupt here ...
    Last September you posted a problem you were having with your connection speed. I'm having a similar issue, and wondered if/how you managed to fix the problem.
    (Sorry to hijack this discussion, but I couldn't find your email address in your profile.)
    15-inch PowerBook G4 (Jan. 2005)   Mac OS X (10.4.5)  

  • How to add number to excel sheet work book cell?

    I am trying to create an excel sheet dynamically. I am able to create and populate the data as well.
    But in one of the cell I have to add 1.0 value. Since I have added this as a new Label(...), after opening the excel sheet I can see an icon in the cell with message as "Number in this cell is formed as a text".
    SO I have changed Label to Number while adding to cell.
    I am using the format as "#.#". Othen than 1.0 everything I can see in the cell as x.y format. Like 1.2, 5.7 etc...
    But for 1.0 I can see as "1." only.
    Is there any way to write 1.0 to cell as a number.
    I am using jxl.jar for excel.

    I have jxl supported api.
    It supports formating the numbers.
    It has NumberFormat class to support formating.
    NumberFormat format = new Numberformat("#.#");
    WritableCellFormat cellFormat = new WritableCellFormat(format);
    excelSheet.addCell(new Number(1, 0, 1.0, cellFormat);
    Api for Number : Number(int column, int row, double value, Cellformat ft);
    If I add other than 1.0, data is displayed properly in the sheet.
    1.2, 4.5, 3.567 --> 3.6 etc...

  • Which font and how to add a chinese font into font book that can be used in CS6 programs

    I am wondering which chinese fonts are useable for Mac OS X. Which to buy and how to use. Should I use Font Pack or other programs to get the font to be used. Any advice is useful. Thank you

    Are you planning on using the Chinese language in Illustrator?  Or, do you just want a Chinese looking font, but using the English language?  I use Font Agent Pro for font management.  It allows you to install the font, view it and print a sample.  You can look for Chinese looking fonts online ( i.e., myfonts.com ).  As far as Chinese fonts themselves, I have no clue.

  • How do I submit edited pdf to i-books?

    My office at work has created a very useful public domain guidebook called "The Performance Improvement Guide". I have the edited 1.77 MB pdf and would like to see it available on i-books for free. I've attempted to figure the submission process out myself and have determined that I need some help moving forward. Can someone describe the process or even be willing to submitt this book for me? I'm happy to learn and do it myself if someone can guide me. The pdf is posted on our office website at  http://www.uscg.mil/hq/cg095/cg09541/docs/5th%20edition%20PIG.pdf

    Here are some things you could try:
    [email protected]
    [email protected]
    Global Phone Support
    We have expanded English-language publisher phone support. To make contacting the iBookstore support even easier, new local phone numbers are now available for Australia, France, Germany, Italy, Netherlands, Spain, and the U.K. Support is available Monday to Friday, from 7 a.m. to 5 p.m. (PT).
    Country     Phone Number
    Australia     1300 307 504
    Note that this is a low tariff number.
    France     0805 540 117
    Germany     0800 664 5307
    Italy     800 915 902
    Netherlands     0800 0201 578
    Spain     900 812 687
    U.K.     0800 975 0615
    U.S.     +1 (877) 206-2092

Maybe you are looking for

  • Mailboxes missing

    I'm using OS X 10.7.5 Lion on a a MacBook from 2009. Everything was fine until just today. In Mail, all my custom mailboxes, where I have sorted and saved emails, have disappeared, and I can't seem to find them. I have been using Time Machine to back

  • Can't restore Windows 7 file backup in Windows 8.1

    Hi There, This seems to be quite a stupid issue to have but here we go...  before installing Windows 8.1 onto my laptop I took a backup of my user files using the Windows 7 backup tool which created me an array of zip files, with a catlog file and a

  • Reading from a Dual-Layer Disc

    Hey y'all -- I am trying to rip some video files from the VIDEO_TS folder of a dual-layered DVD-Video (I have rights to the material) using OSEX, DVDBackup, Mac the Ripper, MPEG Streamclip, and just drag-and-drop. None of these solutions are allowing

  • PDF forms on Mac machines

    From perusing this forum it appears that PDFs created with FormsCentral will not work correctly using the native Mac viewer. Is there any way to design a PDF form which forces the Mac to open it in Adobe Reader? My users are not very tech savvy and w

  • PS CS6 10bit with Quadro K4000 and 30" Dell U3011.  My experiences...

    Hello everyone.  I had searched quite extensively when looking into a solution for my color banding on an ancient Apple 30" cinema display which was on it's last leg.  That search led me to 10bit and it's surprisingly obscure implementation in PS.  A