Bookmark Functionality

I have an idea for Adobe Reader that I got while reading a document with MicroSoft Reader. I know that I am able to select a word within the document and insert a bookmark on the page where the word was selected so that I am able to go back to that part of the document and start reading again.
The idea that I got was to include this function in a future version of the Adobe Reader program. Let me include two examples below.
You have purchased an ebook (any particular subject) and you open the document with Adobe Reader and begin reading it. You look at the bottom of the window in the status bar and see that the document is 450 pgs. You read about 100 pages and get too tired to read any more. What do you do? With the versions that are out now you have to close the document, exit the software and come back later to try and findthe spot that you stopped reading at so you that you can continue reading from there.
You have purchased an .lit file (any particular subject) and you open the book with Microsoft Reader and begin reading it. You can look at the bottom of the page and see how many pages there are in this book (450). You can only read 100 of the pages as you get too tired to read any further. You select a word, bookmark it, close MicroSoft Reader, and go to bed. You come back later, open MicroSoft Reader, open the book, go to the bookmarked page and start reading where you left off.
I know that some pdf files are more than 100 pages long, but I don't have experience with an ebook. Some of those could be several hundred pages long and the first example could happen. If Adobe Reader had a bookmarking function, it would be as easy as using Microsoft Reader, so that you could return easily to the page that you stopped on and start reading again.
If anyone else thinks that this is a good idea, go on and add your opinion to this page and maybe it will be added at some point in the future.

I found some of the comments to your original post quite interesting.  I recently downloaded Adobe Reader X mainly for reading educational PDFs in an online investing class I'm taking.  Many of the PDF's are in excess of 200 pages.   Oftentimes, if not all the time, I can't read the entire document in one sitting, and I often come across areas I need to "bookmark," especially since there are quizzes along the way.
Like some of the posts here, I find "bookmarking" essential for "readers," especially those who read voluminous documents (I would hope most do, if only occasionally).  While Adobe Reader is only for "reading," I would think the act of "reading" includes making notes along the way, and "sticking" a bookmark on a page as a reminder to go back for a concept or to re-read something that may not be as clear as it could be during the first reading.  That said, just being able to return to the last page read, when the document is re-opened, falls well short of what I would think is a "reader" requirement.
Granted, this fine application is "free," and I do appreciate it, and I cope with the time-consuming effort of finding areas I wish to re-read.  I have a paid-for PDF reader as well, but I have to pay separately to have it installed on every computer I use to take my classes, so, financially, I'm relegated to Adobe Reader X, whereas cost, or lack thereof, is the compelling factor.
Be that as it may, while I know I haven't used "every" PDF reader available, the few that I have used do have bookmarking functionality, save Adobe Reader.  Furthermore, while I'm far from being a Programmer of software applications, I would think there were other additions incorporated in Adobe Reader that were more complex than bookmarking, I suppose.
So, while Adobe Reader is only a "reading" application, it's difficult for me to understand a complelling reason as to why that functionality hasn't been incorporated in the application several versions beforehand for those who take the act of reading to its limits.
With all due respect to all, I'm just saying ...
AyeSail

Similar Messages

  • Issue with Bookmark functionality (using java script) in WAD.

    Hi,
    I am working on a WAD report and instead of using the default bookmark functionality within WAD, i use a java code to get the bookmark url in a new window.
    But the problem is the java code is not working consistently at all times.
    Issue1: If i click on the bookmark button on the report for the first time, it will open up a new window with the bookmark link. But if i close that new bookmark url window and again click on the bookmark button, a new window is opened which displays the template corresponding to the bookmarkk generated earlier (the report in its executed form), instaed of the bookmark url.
    Can anyone help me to correct this issue. At any time i click the bookmark button i want to get the bookmark url opened in the new window, instead of the template.
    Issue2: The bookmark is not at all working at particular times. It will show error message at the bottom the page. What I am  thinking is, this is because of the misalignment of the java code when you sava the WAD report. The java code is so sensitive that it gets realigned each time you save the WAD report. But sometimes even without making any changes also it is not working.
    If anyone has any suggestion or inputs for solving these issues pleese help ASAP. The java code i used is given below.
    function createBookmark()
    var bwUrl="<SAP_BW_URL CMD='BOOKMARK'>";
    child1=window.open(bwUrl,'win1','width=1,height=1,alwaysLowered=0');
    window.focus();
    //Ensure that BW completed generation of the bookmark url.
    now = new Date();
    startTime = now.getTime();
    delayTime = 3000;
    //Set timeout to 3 seconds
    waitTime = startTime;
    //check if the bookmark url is ready and timeout after the specified time (delayTime).
    while (waitTime<(startTime+delayTime))
    now = new Date();
    waitTime = now.getTime();
    //BW identifies a bookmark using BOOKMARK_ID. The presence of this string
    //in the url is used to identify creation of the bookmark. If bookmark
    //is created on the server, proceed to the next step.
    if (child1.location.href.indexOf("BOOKMARK_ID") >0) 
    break;
    bookmark_url = escape(child1.location.href);
    bookmark_url = bookmark_url.replace(/%3A/g, ":");
    bookmark_url = bookmark_url.replace(/%3F/g, "?");
    bookmark_url = bookmark_url.replace(/%26/g, "&");
    bookmark_url = bookmark_url.replace(/%3D/g, "=");
    var base_url = window.location+"";
    var base_index = base_url.indexOf("?");
    base_index = base_index + 1;
    var book_link = base_url.substring(0,base_index);
    if (book_link.indexOf("sapdbi")!=-1)
    book_link = "http://dep.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sapqbia1")!=-1)
    book_link = "http://qep.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sapqbia2")!=-1)
    book_link = "http://qep.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sappbia1")!=-1)
    book_link = "https://portal.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sappbia2")!=-1)
    book_link = "https://portal.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sapqbi")!=-1)
    book_link = "http://qep.xxx.com/sso/index.jsp?target=BW&";
    if (book_link.indexOf("sappbi")!=-1)
    book_link = "https://portal.xxx.com/sso/index.jsp?target=BW&";
    var book_index = bookmark_url.indexOf("?");
    book_index =   book_index +   1; 
    var book_length = bookmark_url.length;
    var temp_link= bookmark_url.substring(book_index,book_length);
    portal_bwUrl = book_link+temp_link;
    child1.close();
    // The below two lines are not necessary, it is left for reference.
    // https://portal.xxx.com/sso/index.jsp?target=BW&SAP-               //LANGUAGE=EN&language=EN&cmd=LDOC&TEMPLATE_ID=IPUWT_FRAME
    bookmark_window=window.open("",'_blank','width=1000px,height=30px,status=0');
    bookmark_window.moveTo(50,500);
    var body_tag = '<body leftmargin=3 topmargin=3 bgcolor=#cad4e3 class=&amp;SAPBEXTbsBdyEdg&amp;>';
    var body_text ='<p><font face=Arial size=2>
    This bookmark can be copied and pasted to Internet Explorer-Favourites, mail or other documents:
    </p>';
    bookmark_window.document.write('<title name="SAP_BW_TITLE_!IID_171">Bookmark</title>',body_text, body_tag, portal_bwUrl, '</body>');
    Thanks in Advance.

    Hi Danny
    Thanks for the update
    Hi Danny
      Thanks for the update.
      I can't find any code in the attachment.Its a Web Page.
      Rightclick on webpage and View Source
      Then i can find Code.
      Still it is not working
    Issues: Which object i have to replace with the URL in the code
    Value = 'Weekly'
    or
    fun(WEEKLY REPORT)
    and
    when i paste that code in the XHTML tab of template and tried to save it,The scripted is changed
    Please update how to proceed
    Thanks

  • After upgrade from 3.6.28 to 12.0 I lost bookmark functionality

    OS is Windows XP 64-bit SP2. Upgrade from version 3.6.28 to version 12.0 doesn't work properly because I lost bookmark functionality. Bookmark menu is there, but no bookmark entries.
    - I tried to add a bookmark (visit a page, then 'bookmark this page'), but that doesn't work: no error message, but nothing is bookmarked
    - I tried to restore bookmarks from previous Firefox (yes i previously made backup), but that doesn't work either. I tried that in 2 ways:
    1) Show all bookmarks -> Import and Backup -> Restore -> Choose file -> bookmarks-2012-05-06.json;
    I get error message 'Unable to process the backup file'.
    2) Import and Backup -> Import bookmarks from HTML -> bookmarks.html;
    I get no error message, but nothing is imported.
    - I tried to rename places.sqlite to places.sqlite.old and start Firefox. Didn't help.
    - I tried to uninstall Firefox and make clean installation (didn't keep old settings), but that didn't help either. Bookmarks don't work.
    - In the past year I tried to upgrade Firefox 3.6.xx to previous versions (i think they were 4.x, 9.x, 10.x), but I ran into the same problem, so I reverted to 3.6.xx. Problem this time is that 3.6 is no longer supported, so upgrade is not optional.
    Thanks in advance for your help.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can also try to repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Help needed for creating a bookmark function

    Hi there,
    I am creating an application which in a kind of way gives the user the possibilty to make the same things as he reads an ebook written in html as if he would read a normal book. He highlights some lines, he makes some bookmarks and he can take some notes. All the changes he makes are saved in a database
    I finished the highlighting function and now want to make the bookmark function. What I imagined is sth like the acrobat reader's bookmark manager so I will put it on the left side of a splitpane. The user will be able to add or delete a bookmark in the html ebook with a name of the bookmark and the link and these bookmarks will be saved in the database.
    Do you have any suggestions how I can solve this? Which api should I read/use, do you know some examples? How I can make bookbarks in some parts of the pages and not only the whole pages. I mean the the page will load after the press of the bookmark to go to a certain place in that page and not in the begging. In general some ideas how I have to work?
    Thanks

    It's a swing. I can send you the application if you want but it's 10 classes to post it here.

  • Bookmark function not working at all; lost all bookmarks and can't recover

    I have lost all bookmark function, all bookmarks, and have tried all of the suggested tips for recovering them. I found the "profile" file within Help->Troubleshooting Info.->Application Basics-> but there's no information about what to do with it once you find it. It's an application apparently. I have quit everything running, restarted, etc. Nothing is working. Please help.

    hadimassa wrote:
    Check data transfer settings as described on page 33 of the English manual.
    http://europe.nokia.com/support/product-support/nokia-6600-fold/guides
    Thanks I've checked out the manual.
    Under the "Data Transfer" menu there are two options "Server sync" and "PC synchronisation".
    Neither are mentioned at all in the user guide!
    I assume it's the latter I'm interested in, and all it does is give an option for a user name and password.
    I've set a user name and password, but I'm not sure what they're for, there seems to be no option in PC Suite to put them in.
    Any other guidance much appreciated!

  • Does Flash Paper support the PDF Bookmark functionality inside SWF?

       Does Flash Paper support the PDF Bookmark functionality inside SWF?

    I don't think you will be to happy with this, but I think it
    does not come with the Web Premium CS3 for the Mac:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16582#flashpaper

  • Sqldev 4 EA2: Bookmark functionality

    The bookmark functionality from earlier versions seems to have disappeared.
    Am I right ?

    It WAS missing. Bookmarks are back for the next EA.
    Open procedure. Click on line. CTRL-SHIFT-5 sets 'Bookmark 5.' Go down a few lines, hit CTRL-5. Takes you back to bookmark 5.

  • WinHelp 2000 Bookmark functionality

    I also posted this yesterday under General Discussion.
    We deliver WinHelp 2000 output to our programming team, then
    they load it up to the server. As part of the testing process, they
    created bookmarks to topics. When we delivered the next version of
    the help project, the bookmarks were apparently cleared after it
    was uploaded to the server and it overwrote the previous version.
    Can we "fix" it so that the bookmarks are NOT cleared?
    The RoboHelp for Word help file states that bookmarks are
    stored in either the WinHelp.BMK or WinHlp32.BMK in \Windows, but
    when I tried to search for it after I bookmarked a few topics in a
    standalone WinHelp 2000 output, I couldn't find the .BMK file.
    Is there any way to disable and hide the Bookmark
    functionality from WinHelp 2000 outputs?
    Thanks,
    Jim

    Jim -
    Bookmarks go the way of the Annotations with each new
    generation of the Winhelp file. sorry.
    You can usually find the .bkm files in the applications/help
    directory of your particular OS.
    I can't seem to disable that particular menu element. Must
    be a WH2000 dll issue.
    Usually, this would work, in the Startup macros:
    RegisterRoutine("USER", "EnableMenuItem", "uuu")
    RegisterRoutine("USER", "GetSubMenu", "u=uu")
    RegisterRoutine("USER", "GetMenu", "u=u")
    RegisterRoutine("USER", "GetActiveWindow", "u=")
    EnableMenuItem(GetSubMenu (GetMenu (GetActiveWindow()), 2),
    0, 1027)
    but it doesn't. I was wondering, would removing the entire
    menu row do?
    RegisterRoutine(`user32',`GetMenu',`U=U')
    RegisterRoutine(`user32',`GetActiveWindow',`U=')
    RegisterRoutine(`user32',`DeleteMenu',`U=U')
    RegisterRoutine(`user32',`SetMenu',`Uu')
    DeleteMenu(GetMenu(GetActiveWindow()))
    SetMenu(GetActiveWindow(),0)

  • WAD bookmark functionality

    Hi ,
    We have created custom query using query designer.
    Created WAD application calling created query. Added additional buttons. Export to excel, bookmark,filters etc.
    How bookmark functionality work?
    user expectation : after entering input values in selection screen, he/she will result . After pressing bookmark button they can bookmark it. Next time when they access bookmarked query. it should populate automatically values in selection scree.
    as per my knowledge. : users should use variant for selection screen. bookmark for out columns.
    Which expectation correct?
    Actual today issue is : based on first case everything working except if there is default variable.
    Please comment on this.

    Hi ,
    Book mark will actually save the current link to the book mark of the browser. This way when the user executes the link they end up in the variable screen again.
    The only option is to use the variants available int eh variable screen. the suers can input values the first time , save it as variant and then can re use it the next time.
    Regards.
    Shafi.

  • I just upgraded on May 11 and find I cannot open a fold for bookmarks. I research and bookmarks are my lively hood. How can I return the bookmark functionality?

    MS 7 and long time user of Firefox so this is the recent upgrade of May 11. Unlike the prior bookmark functionality, I cannot indicate I want to bookmark a link and designate a new folder for a new topic in two to three clicks. This is critical to what I do for a living. How can I return the prior format and be sure bookmarks are backed up automatically. Does going back to the older and more functional tool bar restore this? And why does clicking the bookmarks toolbar show getting started, most visited and the printer icon? Getting started takes one to a new user set of instructions. But there are no functional operations in the tool bar? I am not going to go thru a lot of commands, this should be a automatic as before.

    '' the bookmark facility is not functional in 29 ... Bookmark puts all bookmarks there into "recently bookmarked" ''
    It does not.
    It works much the same as the old system does. Or at least it should do and does do for me.
    * Carefully reads the following article so you are certain what should be happening '''[[How to use bookmarks to save and organize your favorite websites ]]'''
    # From an unbookmarked page click the bookmarks star.
    #* That results in the bookmark being added, and yes initially it is just as an unsorted bookmark. (No doubt that is where most people put most bookmarks)
    # IMPORTANT click the star a second time. (But not so rapidly it counts as a doubleclick)
    #* You now have the options you had in the old version of Firefox <br /> Create new folders <br /> Save to a recently used folder <br /> Show all bookmark folders - and expand nested folders
    If your bookmarks are not working possibly the file is corrupted in which case see
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox#Damaged_Places_database
    I am hoping it is just that you are doubleclicking the star too quickly.

  • Can't find the Organize Bookmarks function since upgrading to 4

    Just upgraded to Firefox 4 and find there is no "Organize Bookmarks" function under "Bookmarks" anymore.

    Thanks a bunch TonyE. Simple enough.
    I would have never guessed that it was where the organize function was.

  • Firefox Bookmark Library's new bookmark function creates a pop-up that is wider than my monitor

    The new bookmark function listed under the organize option of Bookmark Library for Firefox (versions 28 and 29) creates a pop-up that is wider than my monitor. I have to slide the pop-up to the left in order to get to the buttons on the right side.

    Hi bob46,
    The Firefox bookmark function, the bookmark button opens a menu to view bookmarks. However this is version 29 not 28. Can you please show a screenshot of this? [[How do I create a screenshot of my problem?]]
    Looking forward to your reply.

  • Double click Bookmarks button to open the Library window directly ("Show All Bookmarks" function)

    I have a number of folders in bookmarks, and I edit it frequently by clicking "Show All Bookmarks" and opening a Library.
    Previously, after clicking Bookmarks button, "Show All Bookmarks" appeared on top of the list, and now it's at the bottom.
    Please, add double click function on Bookmarks button so that it opens Library window directly.

    See also:
    *[[/questions/997080]] Is it possible to move "show all bookmarks" in the bookmark-menu to the top?

  • Lost the file, edit, back/forward, bookmarks functions. would like to change our home page (which downloaded without our knowledge) but can not do it without these functions.

    somehow allot was downloaded as our home page and we do not want it. we lost our firefox toolbar with the file, edit, back/forward, bookmarks, tools function at the top. This happened as we tried to get rid of allot home page. can not figure out how to get back our original firefox page. Help

    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * [https://support.mozilla.com/kb/How+to+set+the+home+page]
    *http://www.alot.com/toolbar/
    *http://www.alot.com/faq

  • Compatibility of use between IE8 & FF4 bookmarks functions. I need to make the bookmark functions behave exactly as they do in IE8.

    I would like to install FF4 on my wife's computer but she's not big on change. How can I make all the imported IE bookmarks appear as they do when you click on IE Favorites without having to go to sub-menus? Moreover when you add a new bookmark scrounging around to find the location to save the new bookmark is also a non-starter.
    I know I could probably use the sidebar function but that just takes up screen real estate.
    I am posting this from my laptop so the info about the installed plug-ins does not pertain to my wife's computer.

    Thank you for trying the new Firefox. I'm sorry that you’re unhappy with the new design.
    I understand your frustration and surprise at the removal of these features but I can't undo these changes. I'm just a support volunteer and I do not work for Mozilla. But you can send any feedback about these changes to http://input.mozilla.org/feedback. Firefox developers collect data submitted through there then present it at the weekly Firefox meeting
    I recommend you try to adjust to 29 and see if you can't make it work for you before you downgrade to a less secure and soon outdated version of Firefox.
    Here are a few suggestions for restoring the old design. I hope you’ll find one that works for you:
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ Classic Theme Restorer] to bring back the old design. Learn more here: [[How to make the new Firefox look like the old Firefox]]
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/the-addon-bar/ Add-on Bar Restored] to bring back the add-on bar. Learn more here: [[What happened to the Add-on Bar?]]

Maybe you are looking for