Comments from colleague (using iPad app) showing not when sent me

A colleague said comments (reminder) to PDF using the Adobe Reader app for iPad. He also drew on the PDF notes. When he sent me the file, I could see the image of the comments but could not click to see content. When I click the comments toolbar, it indicates "No comment in this document." Show the notes that have been drawn with a pen. I tried to visualize this file with Acrobat Pro DC on a PC and using the Adobe Reader app on an iPad. It's the same problem on both platforms. Is it possible for me to see these comments? Or my colleague send the file in a way that allows me to view comments?

I've attached a screenshot of what it looks like to see the image of comment, but the toolbar tells me that there is no comment in the document. There's probably 75 to 100 comments overall, and I just want to be able to read the content within each of them.

No idea or help that you can offer would be much appreciated!

Thank you!

Nicolai

Comments not appearing.png

It is a comment 'flattened' in the PDF file.  In Acrobat, it could have been made using the tool controls upstream, save as optimized, or via the method JS "this.flattenPages ()";.  One of these processes basically destroyed the annotation and there is content, leaving only this is a graphic representation.

Tags: Acrobat

Similar Questions

  • XPS 13 - Wake from sleep using USB works, but not when lid closed?

    I mainly use my XPS 13 as a desktop replacement - I have the lid closed; monitor and a keyboard, a mouse connected (both wireless).

    I finally managed to get to wake up from its sleep by moving the mouse by activating 'allow this device to wake the computer from sleep mode' in the device (Win 7 64 bit) Manager, but it does nothing when the lid is closed, which is 99% of the time because I am using a monitor. I have to open the lid and use the power button.

    Does anyone have an idea on how to get this working, or not at all?

    It works fine on my other laptop Dell I bought at the same time (Inspiron 15). One is connected to a TV as a "Media Server", if the lid is also closed all the time, but he wakes up from his sleep when I move the mouse USB wireless.

    OK, it's now solved!

    The A08 BIOS update allows this, BUT the strange thing is that sometimes the option ' USB wake sleep ' is not available after a BIOS flash.

    This time, it was and now I can wake up the laptop from sleep, even with the mouse Wireless USB via a hub!

    Yay!

  • CC Apps showing not installed on Mac OSX 10.8.4

    "Can't seem to find a solution for this - when you view the CreativeCloud menu under applications, it says ' you have not yet installed applications" they appeared a couple of weeks, but now the shows not installed. I installed the new MAA and restarted the creative cloud, no change. What I noticed is that some applications updated using AAM instead of the CC. I would rather not download the entire suite again to make this work - any help here?

    Try the following steps.

    Mac OS X 10.7 and later versions:

  • A data source using an app does not not to start

    I'm adopting the tutorial: https://developer.blackberry.com/cascades/documentation/device_platform/data_access/using_data_sourc... at my request. The only difference is that my app is based on the tabs. Following however to add lines in my file qml, makes the application crashes the gray screen with BB10 logo.

        Tab {
            title: "edit list"
            imageSource: "asset:///images/note.png"
            content: Page {
                titleBar: TitleBar {
                    title: "editing list: " + workingOnList
                    visibility: ChromeVisibility.Visible
                }
                Container {
                    id: view
                    ListView {
                        layout: StackListLayout {
                        }
                        preferredWidth: 640.0
                        // Associate the list view with the data model that's defined in the
                        // attachedObjects list
                        dataModel: dataModel
    
                        listItemComponents: [
                            ListItemComponent {
                                type: "item"
    
                                // Use a standard list item to display the data in the model
                                StandardListItem {
                                    title: ListItemData.category_name
                                }
                            } // end of ListItemComponent
                        ]
                    }
    
                    attachedObjects: [
                        GroupDataModel {
                            id: dataModel
                        },
                        DataSource {
                            id: dataSource
    
                            // Load the data from an SQL database, based on a specific query
                            source: "database.db"
                            query: "select * from categories"
    
                            onDataLoaded: {
                                // After the data is loaded, insert it into the data model
                                dataModel.insertList(data);
                            }
                        } // end of DataSource
                    ]
    
                    onCreationCompleted: {
                        // After the root Page is created, direct the data source to start
                        // loading data
                        dataSource.load();
                    }
                }
            }
        }
    

    The only differences are: code is pasted in the {} instead of {Page} tab, and of course, the name of the database, the columns are changed.

    I added bb.data 1.0 import statement in the file .qml, the .pro file was also changed according to the tutorial. Path to the database file is correct.

    You have an idea, why this is happening?

    Another issue related to the data source:

    my main.qml file:

        Page {
            id: mainScreen
            titleBar: TitleBar {
                title: "your lists"
                visibility: ChromeVisibility.Visible
            }
            Container {
                ListView {
                    id: allListsView
                    objectName: "allLists"
    
                    layout: StackListLayout {
                        headerMode: ListHeaderMode.Sticky
                    }
    
                    dataModel: allListsModel
    
                    listItemComponents: [
                        ListItemComponent {
                            type: "item"
    
                            StandardListItem {
                                title: ListItemData.list_name
                            }
                        },
                        ListItemComponent {
                            type: "header"
                            Header {
                                title: ListItemData
                            }
                        }
                    ]
                    onTriggered: {
                        select(indexPath);
                        var page = listPage.createObject();
                        nav.push(page);
                    }
                }
    
                attachedObjects: [
                    ComponentDefinition {
                        id: listPage
                        source: "listPreview.qml"
                    },
                    GroupDataModel {
                        id: allListsModel
                        grouping: ItemGrouping.ByFirstChar
                        sortingKeys: ["list_name"]
                    },
                    DataSource {
                        id: allListsSource
    
                        source: "database.db"
                        query: "select * from lists"
    
                        onDataLoaded: {
                            allListsModel.insertList(data);
                        }
                    }
                ]
    
                onCreationCompleted: {
                    allListsSource.load();
                }
            }
    

    New screen grows without any problem after clicking on list items. But when I add the following lines to listPreview.qml, application stucks selection list item and nothing happens.

    Page {
    
        content: ListView {
            id: myListView
    
            dataModel: dataModel
    
            listItemComponents: [
                ListItemComponent {
                    type: "item"
    
                    StandardListItem {
                        title: ListItemData.article_name
                    }
                }
            ]
        }
    
        attachedObjects: [
            GroupDataModel {
                id: dataModel
            },
            DataSource {
                id: dataSource
    
                source: "database.db"
                query: "select * from articles"
    
                onDataLoaded: {
                    dataModel.insertList(data);
                }
            }
        ]
    
        onCreationCompleted: {
            dataSource.load();
        }
    }
    

    It looks like I can not query the DB for the second time commenting on the DataSource {...} of listPreview.qml pushed the new app screen without any problems.

    EDIT:

    a simple solution: I forgot to add the statement import bb.data 1.0 in listPreview.qml

  • Page tiles showing not when you use Adobe Muse and webmarketing accommodation

    Hello

    I created a muse site that has good page titles display in the browser when you use the bases web hosting. But I need the same site contains a blog now so changed hosting to web marketing, this has as consequence the pages not showing their page titles in the browser

    Does anyone know why this is, or what I can do about it?

    Thanks for any info

    concerning

    Martin

    The page title does not change with the change of site map, unless it is done manually, or if it is updated the file is downloaded from Muse.

    Please check the titles added to the page if they exist or not, there is always the same question, enter the url of the site.

    Thank you

    Sanjit

  • Can we recover data from Ethernet using VShield App package?

    Hello

    I read the Vshield App flow analysis feature gives you the following ability: "ability to observe between the virtual machines network activity to help."

    define and refine firewall strategies, identify Botnets and secure

    business process through detailed reports of application traffic. »

    My question is whether it has also some API that can really give me the data in packets sent on the network? (Something that VSafe-Net API used to give)

    Thanks in advance.

    The feature is designed to display header/debit information, not the information payload.

    The vShield API are designed to feature parity with access based on the interface (vshield Manager, vCenter plugin). The flow control feature offers for each stream header information - sessions, packets, bytes. The content of the application is displayed and categoried (UDP, TCP inbound/outbound; name app/protocol;) IP address). I have attached a screenshot from a screen of laboratory test to give you an idea, but this isn't an exhaustive list.

    Does that answer your question? If this isn't the case, please provide details and I can get you more information.

  • image shows not when you use the element type image display

    Hi all

    My table has a blob column containing images

    However, they are not displayed

    I have a type of image screen called P6_DISPLAY_IMAGE, its source is a db column called PRODUCT_IMAGE

    I think I did everything correctly

    Please take a look at apex.oracle.com:

    workspace: martijnke

    login/password: demo/demo

    application: 78396 test voor Bernd

    page: 6 (just click on the products in the menu bar and click on the first column)

    as you can see, the display of the image (bottom) remains empty

    any help would be appreciated

    KR

    Martin

    Martijnke wrote:

    My table has a blob column containing images

    However, they are not displayed

    I have a type of image screen called P6_DISPLAY_IMAGE, its source is a db column called PRODUCT_IMAGE

    I think I did everything correctly

    Please take a look at apex.oracle.com:

    workspace: martijnke

    login/password: demo/demo

    application: 78396 test voor Bernd

    page: 6 (just click on the products in the menu bar and click on the first column)

    as you can see, the display of the image (bottom) remains empty

    Thanks for making the effort to demonstrate the problem.

    It seems to be nothing more complicated than missing data. Run this query showed that there is no data in the BLOB column for all rows:

    select product_id, product_name, dbms_lob.getlength(product_image) from apa$nf_products
    

    I downloaded an image of the product of the belt and it seems to work fine.

  • The revel on my iPhone and iPad app is not accessible. Needs, update but will not update. Message is Try Again. Should I remove each device and reinstall? I would lose all the photos?

    WWhat can be done when Revel app on iPhone and iPad will not update? Delete apps and reinstall? Photos will be lost?

    Please see the post below updates on the issue of the revel facilities:

    Problem installing Adobe Revel 2.3.2

  • iPad App do not restart on the first slide

    Has anyone else encountered this problem with an app for iPad:

    I start the app and scroll to different slides.

    I then shut down the application complete by using the procedure on an iPad.

    When that I raise the the app, it loads in the last slide, I was instead of the initial launch slide.

    Suggestions would be greatly appreciated.

    This is how works the Viewer. He always remembers the last position that you were in.

    Neil

  • iBooks on the ipad app does not

    I can't get my iBook icons. Featured, Top Charts, NY Times, etc. in my ipad mini 3 for the service.  Nothing but blank screens.  Running IOS 9.3.3 and ibooks 4.8.  I did a hard reset of my ipad but without success.

    Any ideas on how to fix?

    Unfortunately there is not at this stage.

    You can send feedback to Apple about it here:

    http://www.Apple.com/feedback/ibooks_ios.html

  • Adding exchange account from microsoft using native thunderbird (do not use ExQuilla)

    I was wondering if there is a way to use microsoft exchange for email server (my University recently passed). So far, I've been using Exquilla, but my license has expired. For this reason I am temporarily using outlook (eww!)... but I prefer highly Thunderbird so I would go back. Is it possible to use thunderbird to communicate with the server without an addon like Exquilla? If this is not the case, is it a possible feature for future releases?

    If enabled on the server, you can use standard protocols POP, IMAP and SMTP.

  • iPad app will not update

    There is an Adobe Revel app update that I tried to put updated twice and get the error message 'cannot be updated at this time. " Is there a problem or should I just keep trying.

    Thank you

    CIndy

    Please see the post below updates on the issue of the revel facilities:

    Problem installing Adobe Revel 2.3.2

  • I just got a new hard drive and restored from Time Machine - CS4 apps will not open. How to reinstall or upgrade the license?

    How to reinstall or upgrade my license?

    We still all drives, box and documents

    Thank you for the presentation of reports. I am pleased that you are facing up and running.

    Guinot

  • I get error messages when I try to visit some Web sites you use Mozilla Firefox, but not when I use other browsers

    About two days ago, I noticed that when I tried to access some websites using Firefox, I always got this error message. "The connection was reset". Initially, I thought it was a problem with my ISP before noticing that the network was fine on my phone and the iPad. I tried and then open the same links which brought up the error message on the TorBrowser and it worked perfectly.

    Basically, the only site that works right now on my Firefox browser is Google but if I do a Google search and then click on any link that appears so I get the same error message, "the connection was reset". I can also connect to my gmail account, but I can't access any other Web site including Feedly, Tumblr, Twitter, Yahoo, Wordpress, Blogspot, even though they work fine on my other browser.

    I have cleared my cache and cookies, wiped out all browsing history, but the problem persists then I uninstalled Mozilla Firefox and reinstalled. The problem is still there. I checked the proxy settings, I went through all the solutions on this page https://support.mozilla.org/en-US/kb/firefox-cant-load-websites-other-browsers-can?esab=a & as = aaq and still nothing. I'm not sure what the problem is here, but any solution will be appreciated. I have used Firefox for years and I'm really not comfortable using a different browser.

    I use a Macbook OS X Version 10.9.4 and the last Firefox 32.0.1

    Create a new profile as a test to see if your profile is the source of the problems.

    See creating a profile:

    If the new profile works then you can transfer files from a profile already used in the new profile, but be careful not to copy files corrupted to avoid transporting on the problem

    Profile backup and restore

  • App works not when you deploy with 0.9.4

    Hi guys. I had created originally from my application using the 0.9.3 sdk and had no problems. I submitted my app and it was approved, but now I'm trying to re - submit with 0.9.4 and I even can't deploy on the Simulator. I get this error message:

    Deployment failed: send request to launch...
    Info: Action: launch
    Info: Launch of PocketPhotoOrg.debug.testaG90b09yZy5kZWJ1ZyAgICA...
    result::failed
    Info: done

    Also, I get this error message when I run it on the desktop:

    VerifyError: Error #1014: class qnx.pps:PSChannel could not be found.

    to test2 / ___test2_MobileApplication1_creationComplete () [/ users/AP_Photography/Documents/Adobe Flash Builder Burrito Preview/test2/src/test2.mxml:6]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent() [E:\dev\hero_private_beta\frameworks\projects\framework\src\mx\core\UIComponent.as:12977]
    to mx.core::UIComponent / set initialized() [E:\dev\hero_private_beta\frameworks\projects\framework\src\mx\core\UIComponent.as:1757]
    at mx.managers::LayoutManager/doPhasedInstantiation() [E:\dev\hero_private_beta\frameworks\projects\framework\src\mx\managers\LayoutManager.as:819]
    at mx.managers::LayoutManager/doPhasedInstantiationCallback() [E:\dev\hero_private_beta\frameworks\projects\framework\src\mx\managers\LayoutManager.as:1157]

    Could someone tell me why this is happening? I already had 3 approved applications. It's the first time I met this problem and all my other apps went well with 0.9.4 signature and all.

    Try to uninstall previous app and install from scratch. If you try to deploy your signed application which you did with 0.9.3 to 0.9.4 sim does launch?

Maybe you are looking for