How can you find out what number comment you are on within the comments list?

Hi everyone,
I have looked around but I cannot seem to find an answer to what seems a very simple request.
I have a PDF with over a hundred comments on it and I am making (slow) progress through the comments list. I would like to estimate how long this job will take me to complete by looking at the time I have spent on the job and a which comment number I am at (e.g. I am currently at comment 60 of 120 - half way through).
I cannot seem to find a way to do this without manually counting the number of comments I have been through already - which seems a watse of my time.
Is there an easy way to do this? I am sure I am missing something simple here.
Thanks in advance,
twordz

Sorry, I guess I mis-spoke. I thought that it will be numbered sequentially
for the entire document, but I guess it's per page.
The problem with numbering comments is that their internal order does not
necessarily correspond to their physical location in the file. The internal
order is based on the order in which they were created. Having said that,
it is possible to generate a summary of the comments with sequential
numbers for the entire file (not just page by page), but it would require a
custom-made script.

Similar Messages

  • HT201303 How can I find out what my security answers are? I am trying to purchase an app on a new device and it won't let me without answering and I have totally forgotten

    How can I find out what my security answers are? I am trying to purchase an app on a new device and it won't let me without answering and I have totally forgotten

    Welcome to the Apple Community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.

  • How can I find out what extensions (not plugins) are currently installed using JavaScript?

    I am creating a JavaScript module which detects if a Firefox extension is installed in the client's browser.
    I can check if a Firefox plugin is installed by querying navigator.plugins object, but I can't figure out how to do this for extensions.

    You can't check for extensions that are installed.<br />
    Plugins can be detected via navigator.plugins as you posted, but you can't detect extensions for privacy and security reasons.
    *https://developer.mozilla.org/en/docs/DOM/window.navigator
    It the past it was possible to check for images added by an extension, but that access was blocked.
    * http://blog.mozilla.com/security/2007/11/16/jar-protocol-xss-security-issues/
    * http://blog.mozilla.com/security/2008/01/22/chrome-protocol-directory-traversal/
    * http://blog.mozilla.com/security/2008/01/29/status-update-for-chrome-protocol-directory-traversal-issue/

  • How can I find out what my password that set up for the administrator user on my Mac book pro

    Hello I am trying to upgrade my flash player and it is asking me to put my password but for the life of me I can fIgure out what it is I have checked the two I always use and no luck

    Read this

  • Changing Domain Administrator Password : How can I find out what all servers / services are currently using this?

    Good morning all,
    I took over as IT director for the school district in my town about 2 years ago, and we've had some techs come and go, all of which have had the domain administrator password (not my call, but my fault for not changing it by now).  I am about to change
    it, but before doing so I want to know how I can make sure what all this will break so I can quickly change the cached/saved password on whatever supporting services use this user/pass.
    Can anyone help here?
    Thank you!

    Hello,
    In my point of view if I were in this situation I would Change the domain administrator password. By
    Resetting the domain administrators all the services which use domain administrator as their logon user, will lose their functionality. I had this experience and I did change the domain administrator password with no problem. However do not
    forget to have a account lockout tool or script for locating the place where the account was locked out.
    But to keep it short most of the time. lockout problems are arise from mapped drives, credential manager and saved RDP sessions and etc.
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

  • How can I find out what objects are in a datafile???

    My database is 8.1.7...
    I have a tablespace with multiple datafiles. How can I find out what objects are in a specific datafile???
    Thanks in advance...

    DBA_SEGMENTS
    DBA_SEGMENTS describes the storage allocated for all segments in the database.
    Related View
    USER_SEGMENTS describes the storage allocated for the segments owned by the current user's objects. This view does not display the OWNER, HEADER_FILE, HEADER_BLOCK, or RELATIVE_FNO columns.
    Column Datatype NULL Description
    OWNER
    VARCHAR2(30)
    Username of the segment owner
    SEGMENT_NAME
    VARCHAR2(81)
    Name, if any, of the segment
    PARTITION_NAME
    VARCHAR2(30)
    Object Partition Name (Set to NULL for non-partitioned objects)
    SEGMENT_TYPE
    VARCHAR2(17)
    Type of segment: INDEX PARTITION, TABLE PARTITION, TABLE, CLUSTER, INDEX, ROLLBACK, DEFERRED ROLLBACK, TEMPORARY, CACHE, LOBSEGMENT and LOBINDEX
    TABLESPACE_NAME
    VARCHAR2(30)
    Name of the tablespace containing the segment
    HEADER_FILE
    NUMBER
    ID of the file containing the segment header
    HEADER_BLOCK
    NUMBER
    ID of the block containing the segment header
    BYTES
    NUMBER
    Size in bytes, of the segment
    BLOCKS
    NUMBER
    Size, in Oracle blocks, of the segment
    EXTENTS
    NUMBER
    Number of extents allocated to the segment
    INITIAL_EXTENT
    NUMBER
    Size in bytes requested for the initial extent of the segment at create time. (Oracle rounds the extent size to multiples of 5 blocks if the requested size is greater than 5 blocks.)
    NEXT_EXTENT
    NUMBER
    Size in bytes of the next extent to be allocated to the segment
    MIN_EXTENTS
    NUMBER
    Minimum number of extents allowed in the segment
    MAX_EXTENTS
    NUMBER
    Maximum number of extents allowed in the segment
    PCT_INCREASE
    NUMBER
    Percent by which to increase the size of the next extent to be allocated
    FREELISTS
    NUMBER
    Number of process freelists allocated to this segment
    FREELIST_GROUPS
    NUMBER
    Number of freelist groups allocated to this segment
    RELATIVE_FNO
    NUMBER
    Relative file number of the segment header
    BUFFER_POOL
    VARCHAR2(7)
    Default buffer pool for the object
    This view with this another viwe can help you to identify where the object is:
    DBA_DATA_FILES
    DBA_DATA_FILES describes database files.
    Column Datatype NULL Description
    FILE_NAME
    VARCHAR2(513)
    Name of the database file
    FILE_ID
    NUMBER
    NOT NULL
    File identifier number of the database file
    TABLESPACE_NAME
    VARCHAR2(30)
    NOT NULL
    Name of the tablespace to which the file belongs
    BYTES
    NUMBER
    Size of the file in bytes
    BLOCKS
    NUMBER
    NOT NULL
    Size of the file in Oracle blocks
    STATUS
    VARCHAR2(9)
    File status: AVAILABLE or INVALID (INVALID means that the file number is not in use, for example, a file in a tablespace that was dropped)
    RELATIVE_FNO
    NUMBER
    Relative file number
    AUTOEXTENSIBLE
    VARCHAR2(3)
    Autoextensible indicator
    MAXBYTES
    NUMBER
    Maximum file size in bytes
    MAXBLOCKS
    NUMBER
    Maximum file size in blocks
    INCREMENT_BY
    NUMBER
    Autoextension increment
    USER_BYTES
    NUMBER
    Corresponding number of bytes
    USER_BLOCKS
    NUMBER
    Number of blocks which can be used by the data
    Joel Pérez
    http://otn.oracle.com/experts

  • I have two iPhones on my iTunes account. How can I find out what apps go to which phone?

    I have two iPhones on my iTunes account. How can I find out what apps go to which phone?

    I don't believe that there is a way to do that.  I would sugest using automatic downloads to keep your apps synced across both phones.  You might also want to note that just about any app you have ever download will be available for free download via icloud.
    Wish I could be more help.

  • How can I find out what apple IDs are tied to an email address

    We are trying to set up FaceTime and got the verification error on the email address.  We went in to the Apple ID account and when we verify the email address, it tells us that it's tied to another AppleID.  My daughter has 3 other AppleIDs and we've checked each one of them and the email address is not tied to any of them.
    How can we find out what apple ID is tied to this email address?
    We have used the "Forgot my Apple ID" function and used all 3 of the different email addresses she's used on the accounts and when we access the one that says there's a duplicate, it takes us to the account and it's the one with the email address that I noted above.
    Any thougts or help?
    Thanks!

    Itunes limit includes computers. 
    http://www.ilounge.com/index.php/articles/comments/managing-devices-in-your-itun es-store-account/

  • I am trying to add my sons email address to our family apple id but it says that it already associated with another apple id. How can i find out what the apple id is and take his email address off that one?

    I am trying to add my sons email address to our family apple id but it says that it already associated with another apple id. How can i find out what the apple id is and take his email address off that one?

    You may be able to find your Apple ID at Look up your old and forgotten Apple ID

  • How can I find out what calendars are in my .mac account?

    A simple question, but I am struggling with the answer.
    I have used ical since it first came out and have found it brilliant and very easy to use and access both from the office and also from home. However because I have used it for so long I have had various changes in staff. I am keen to find out if there are any 'other' calendars created by anyone who has/had access to ical via my .mac account.
    The calendars must be stored somewhere online? How can I find out what calendars I am hosting?

    Hello, chunnyb. 
    Thank you for visiting Apple Support Communities. 
    Here are the steps on how to view your purchase history in iTunes. 
    iTunes Store: See your purchase history and web order numbers
    http://support.apple.com/kb/ht2727
    If you need to report and issue with a purchase, see the article below. 
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Cheers,
    Jason H. 

  • HT5622 I think my granddaughter bought a $3.99 app after I put the password in for a free app.  How can I find out what she purchased?  Can I get credit for it?  I just got an email from my credit card confirming the purchase.

    I think my granddaughter bought a $3.99 app after I put the password in for a free app.  I just got an email from my credit card confirming the purchase.  How can I find out what she purchased?  Can I get credit for it? 

    The password is good for 15 minutes to make purchases. You should receive a receipt in 24 to 48 hours for the purchases. There is a link to Report an issue. You could use that to start a conversation with iTunes Support about a refund.
    Apple considers all sales final. But has been known to offer a one time refund. So the question is, do you want to use your one time refund on this purchase or one more expensive in the future?

  • After burning a successful DVD in iDVD out of FCPX, how can I see the settings it used?   So I finally burned a DVD out of a Apple Pro Res file into iDVD in PAL format. My question now is how can I find out what the exact burn properties were so that I ca

    After burning a successful DVD in iDVD out of FCPX, how can I see the settings it used?
    So I finally burned a DVD out of a Apple Pro Res file into iDVD in PAL format. My question now is how can I find out what the exact burn properties were so that I can apply the same burn properties to a project in Compressor 4?
    Is it possible to see what iDVD did?

    I don't know any way you can interrogate iDVD to reveal settings to the extent that you can in a Compressor project. What you could do is open up the show's VOB in MPEG STreamclip, go to File and Reveal Stream Information; that will at least give you some rudimentary info like average bit rate. Perhaps someone, with more iDVD experience, can chime in here.
    The broader question is why use Compressor at all if your current workflow is doing the job to your satisfaction?
    The value of Compressor is that it gives you control over the many parameters that affect size quality.  and playability. The Compressor presets can give you a starting point for DVD delivery, Web, etc. From those presets, people typically experiment by adjusting the parameters until they get the desired results for their specific show. It's a little bit science and a little bit art. After experimenting, you may be able to get slightly better quality for the project you've successfully burned in iDVD by using Compressor and something likeToast…or maybe not.
    Good luck.
    Russ

  • I have an iPhone 4S that is a replacement of a defective 4s and it shows over 3Gb of data backed up in the cloud from my old 4s. How can I find out what is in this backup? It is preventing me from backing up my new 4s to the cloud due to the amt of data.

    I have an iPhone 4S that is a replacement of a defective 4s. When I activated the newer phone, I believe I transferred over everything except pictures (had multiple failures trying to backup and restore). Now the phone shows over 3Gb of data backed up in the cloud from my old 4s. How can I find out what is in this backup? It is preventing me from backing up my new 4s to the cloud due to the amt of data. It may be duplicated info that I don't need or I may want to archive the backup or parts of it like pictures.

    You can not access the backup directly.
    Did you restore your replacement from this backup?
    If so then you already have everything in the backup on your device.
    If not, you can wipe the device and restore from this backup:
    Settings > General > Reset > Erase All Content & Settings
    What is it you are worried about losing that isn't already on your current device?

  • My hard drive is full, i'm being told i have 284.03 GB of other.  How can I find out what these files are so i can delete them?

    My Mac is telling me that my hard drive is almost full, i have used 7.65 GB for Audio. 16.58 GB for Movies, 9.89 GB for photos, 788.6 MB for Apps and 284.03 GB for Other.  how can i find out what "other" is so I can delete it?  I hope someone can help me.

    If OS X is reporting you need to remove some items you obviously have a more severe issue.
    To fix your issue is likely too complicated and lengthy to go into all of it here as it sounds like a OS X issue, it will require the services of person very familiar and experienced with Mac's to first recover your data and then restore OS X back to a functional state which may or may not require new hardware/software installed.
    If your under warranty or AppleCare, take it in for service.
    You can also hire the services of a local Mac computer support technician experienced in these matters.
    Have them look at your Wifi, RAM amount, extra storage and computer backup proceedures in the process.
    Good Luck.

  • Are not the right ones for the icloud account. How can I find out what these are?

    I have downloaded icloud onto my PC. When I try to access my account I am told that although my Apple ID and password are correct they are not the right ones for the icloud account.How can I find out what these are?

    Christine Helen wrote:
    I can't find any way of creating an icloud ID. I only have a PC. no Mac product except an iPod classic.
    Oh, then you can't unless you know someone with a Mac you could use for a moment or 2. (Like at the Apple Store)

  • I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance

    I had water damage to my iphone5 when I was deployed w/ the military overseas. How can I find out what saved to icloud and how to see where my photos are. I don't know when it was able to back up as wi fi was pretty sketchy. please advise. thx in advance
    My iphone is toast, I know I checked on icloud and see my emails from the day before it happened. Can I see when and what my phone backed up through itunes or icloud?
    Please please help i am lost.

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

Maybe you are looking for

  • TS3274 Can't get video record to work

    I cannot seem to switch the camera to take a video.  It got stuck on video once, but I shut the IPad off and when I turned it back on it was back on photo.  There has got to be a way to switch between taking photos and videos!  Help!  I am new at all

  • [svn:fx-trunk] 11899: Cleaning up some FIXMEs assigned to me in the code:

    Revision: 11899 Revision: 11899 Author:   [email protected] Date:     2009-11-17 10:24:33 -0800 (Tue, 17 Nov 2009) Log Message: Cleaning up some FIXMEs assigned to me in the code: In UIMC, we now call invalidateParentSizeAndDL() on setting explicitM

  • Wsdl that references xsd's

    Hello experts, My wsdl has reference to a xsd. The problem is, when I try to import the wsdl, I do not see the entire request structure which is required while doing the mapping. I have both the wsdl and xsdu2019s in the same folder. I did go through

  • Electromechanical Engineer Looking for Interesting LabView telecomute work.

    I am mainly looking for telecommuting work.  Quick program development, debugging/consulting. If you have a quick problem that you can't figure out or need an extra set of hands send me an email: [email protected] I have 10 years of experience in dat

  • Template Workbooks Analyzer 3.5

    Hello experts, Can anyone tell me how to make a template from one query as a model for all other queries in Bex Analyzer version 3.5? Is this possible? If so, how? Is there any documentation that can help me? What I want is a possibility to have a te