Comment bubble suddenly huge

I am not sure why, but when I open a PDF with comments, the comments bubble is enormous—at least twice, possibly 3 times, the size it was yesterday. Attached is a sample. This happens for all PDFs now. I can't remember changing any settings. Can anyone help me get them back to the smaller size? On PDFs with multiple comments on the same page, they overlap and it is hard to read.
I am using Adobe Acrobat X v10.1.7 on MacBook Pro OSX v10.8.4.
Thanks

Double-tap the screen with 3 fingers. You've got zoom turned on.
Turn it off permanently in Settings > General > Accessibility

Similar Messages

  • Report template 101 - Comment Bubbles (used during creating SQL Report)

    Hi,
    There is a Report template type - Comment Bubbles [ Theme - 24, 25, 26 ]
    Has anyone ever tried using this template while creating SQL Report.
    OR if anyone knows how to use this and what should be the syntax of SQL query for using this template.
    Thanks,
    Deepak

    Hi Deepak.
    I assume you're running APEX 4.2
    There is a packaged application included with 4.2 which is called "Customer Tracker"
    On page 50 you find a rewgion where these comment bubles are used ( unlock the application to view the source ).
    Regards
    Bas

  • Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Back to life**
    Oh I know there are many other vocabulary mistakes but never mind them I was just too excited when I wrote all of that while typing very quickly
    P.S: if you have any question then ask and please do tell me if it works or not with u but I'm definitely sure it'll work so tell me this and we'll get excited together
    Also if you have an experience to share then do share it as well please.
    Peace

  • I have a mystery comment bubble appearing on my PDF.

    The document shows no comments but when i highlight fields the yellow box appears on the document saying 'marked set by (me)' - i click on it and i cant delete it, and it doesnt appear in the comment section on the left of the screen in edit mode.
    When saved and opened on the internet a bubble appears in the footer as if there is a comment there - how do I rid myself of it?!

    Hi Sabian
    The top image shows the document when I open it in Acrobat on my desktop. As you can see it says there are no comments.
    The bottom image shows that a comment bubble appears once it is saved, attached to our website and downloaded.

  • The photos in Facebook posts are suddenly huge. How can I reduce size in Facebook?  When I double click photo it opens in regular size.

    The photos in Facebook posts are suddenly huge. How can I reduce size in Facebook?  When I double click photo it opens in regular size. All is well on my PC. This just started happening last night....Zoom is not on.

    Access FB through your browser and send a message to Facebook and ask them to fix their app.

  • Show comment bubbles but not change bubbles?

    I waited a loooong time for Pages to offer change tracking (for better MS Word compatibility), but now I'm beginning to regret the fulfillment of my fervent wishes. All those blue bubbles -- hundreds of them on a page in the types of papers I edit -- really slow editing down. I don't need to see each and every deletion of a space, etc. But I do need to see the comments that I'm inserting. Yet all those blue bubbles push the comments far down the page, away from their context. And if there are more than a handful of changes, the comments get tucked underneath those bubble scrolling arrows at the bottom of each page, and it's quite tedious to scroll through dozens of irrelevant blue bubbles to find the important yellow comment bubble. Forget about trying to scan several comments at once -- can't be done with all those intervening blue bubbles.
    Is there any way of tracking changes but hiding the blue change bubbles while displaying the yellow comment bubbles? It seems I can turn off all bubbles, and I can turn off change tracking, but I need to be able to track changes and see comments. Surely, there's a way to do this....the gods forbid that there isn't and I have to go back to using MS Word!

    Well, I guess I can't use it for the hard core editing. I really, really like it otherwise, and it's definitely getting there as a Word replacement for most activities. However, I don't know about others -- I can't really afford more than one office suite. ;-P
    NeoOffice is nice, but again, sub-standard comments support. I guess it's sticking with MS Word still. Bummer.

  • Mouseover popup on comment bubble report

    Application Express 4.2.1.00.08
    Internet Explorer - 8
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Theme - Productivity - 26
    Hi I have a report based on the comment bubble template, what I need is to show a popup on mouseover to show more information. I looked at the packaged applications that come with Apex 4.2 and the Artwork Cataloge application seems to have a region based on plsql and on mouseover a really nice popup appears showing more information. I am wondering how I could do the same for my comment bubble report using this method. I'm not sure how to do it as my report/region is not based on plsql. Can anyone help me, I'm new to Apex so still finding my feet.
    Regards
    Ash

    Here is a the code from the "Recent bugs" region, but stripped of their complexity - and stripped of identifying objects from my code, so you pretty much just need to fill in the sql, and clean it up... it was very quick and dirty
    declare
      d                     date;
      l_status              varchar2(30);
    begin
      d := sysdate;
      sys.htp.p('<ul class="detailedStatusList">');
      for c1 in (
        SELECT ...
        FROM ...
      ) loop
        sys.htp.p('<li>');
        sys.htp.p(' <a h...ref="'||apex_util.prepare_url('f?p='||:app_id||':61:'||:app_session||'::NO:61,RP:Pn_item_ID:'||sys.htf.escape_sc(c1.id))||'">');
        --sys.htp.p('     <img src="'||sys.htf.escape_sc(replace('#IMAGE_PREFIX#e2.gif','#IMAGE_PREFIX#',:image_prefix))||'" alt="" />');   
        sys.htp.p('     <span>'||sys.htf.escape_sc(substr(c1.description,1,150))||'</span>');
        sys.htp.p('<em>Groups:'||c1.grp_count||'</em>');
        sys.htp.prn('</a>');
        sys.htp.p(' <section class="detailedListTooltip">');
        sys.htp.p('   <h4>Callup List: '||sys.htf.escape_sc(c1.description)||'</h4>');
        sys.htp.p('       <ul>');
        sys.htp.p('     <li>');
        sys.htp.p('       <label>Created by</label>');
        sys.htp.p('       <span>'||sys.htf.escape_sc(c1.created_by)||'</span>');
        sys.htp.p('     </li>');
        sys.htp.p('     <li>');
        sys.htp.p('       <label>Created</label>');
        sys.htp.p('       <span>'||sys.htf.escape_sc(apex_util.get_since(c1.created_date))||'</span>');
        sys.htp.p('     </li>');
        sys.htp.p('     <li>');
        sys.htp.p('       <label>Created date</label>');
        sys.htp.p('       <span>'||sys.htf.escape_sc(c1.created_date)||'</span>');
        sys.htp.p('     </li>');
        sys.htp.p('<hr>');
        sys.htp.p('     <li>');
        sys.htp.p('       <label>(Group)</label>');
        sys.htp.p('       <span>(distribution)</span>');
        sys.htp.p('     </li>');
        for r_rec in  (
    select cg.group_name
          ,listagg((select  from )||' ('||cnt||')','<br>') within group (order by cnt desc) la
    from  cg
        ,(select count(*) cnt,
          from  ci
          group by ) ci
    where
    group by cg.
    order by cg.order_seq
        ) loop
          sys.htp.p('<li>');
          sys.htp.p('<label>'||r_rec.group_name||'</label>');
          sys.htp.p('<span>'||r_rec.la||'</span>');
          sys.htp.p('</li>');
        end loop;
        sys.htp.p('       </ul>');
        sys.htp.p(' </section>');
        sys.htp.p('</li>');
      end loop;
      sys.htp.p('</ul>');
    end;I've worked out how to translate it into a list template, so all you need to do is feed a query and you get the standard layout - I'll blog the instructions when I get a chance.
    Scott

  • How do I get ride of the comment bubble stuck open

    In Apple iBook Application for iPad there is a comment bubble or something (little white box with a down arrow) stuck on my pages when I read.  How do I make it go away?  I think it's the brightness box, but not sure.  The little icon for adjusting the brightness is not there.

    What black lines are those?  There are not normally black lines at the bottom of a MacBook Pro screen.

  • Comment bubbles

    Comment bubbles no longer appear in side margin. When I save as a PDF, the comments I have made in the Pages doc. can't be seen. What is the workaround for this?

    Nope, Updates.html:
    var entryURLs = {
    '003A8C95-991A-48F8-B22C-EB76DC680761.html' : { 'order' : 0 },
    '869ABF58-59C0-4F08-9130-82A372DA7A3B.html' : { 'order' : 1 },
    'B8339EE3-CB0F-4D40-8F24-F3B7F1455D18.html' : { 'order' : 2 }
    var commentsActivated = true;
    and:
    var GUID = '003A8C95-991A-48F8-B22C-EB76DC680761.html';
    var commentsActivated = true;

  • Unable to view comment bubble notes

    Some of my students annotated and commented on letters using the Adobe Reader iPad App. When they exported their documents they were unable to view the comments they typed in the note bubble. They tried uploading directly to Dropbox and e-mailing both the Original and Flattened versions. Suggestions please.

    Hello
    I am having this trouble too I think.
    My PDF business plan form is annotated within Adobe Reader on my iPad (1, iOS5) app but when i try to email it (either flattened or not) all my editing and annotations are lost. I cannot find them when I open the PDF in iBooks, Dropbox or Kindle either - all of which are options on my tablet. It just opens as an unmarked blank original business plan form.
    What can I do? This has not happened before... It did used to work!

  • Thumbnails suddenly HUGE

    My iPhoto thumbnails (in the Events folder) are suddenly three times their former size! I didn't change anything to my knowledge; how can I fix this!

    I did try rebuilding the thumbnails by command-option starting iPhoto and clicking the thumbnail rebuild checkbox.

  • Widgets suddenly HUGE?  Why?  10.4.9?  Other reason?

    I did a fresh install of OS X this past week, upgraded to 10.4.9, and re-downloaded some widgets I use.
    Unless I've lost it (possible) (it's been a week or two since I've looked at my widgets), everal suddenly look much BIGGER than before--e.g., the SOHO sun widget and the Clear Sky Clock. They take up 2x as much screen real estate-- and the text/images are even a little grainy whereas before they were crisp. I also tried a couple of other new to me astro ones and they were also large. By contrast, a couple of old stand-bys-- the weather widget, stock market, and the dictionary are fine.
    Any ideas? I downloaded them via Firefox whereas before I used Safari, but that shouldn't be a factor. Is there something odd going on with OS 10.4.9? Have a handful of astro widgets suddenly changed their size?
    Maybe I should just drag the old ones over from the backup hard drive I made before my fresh install.
    Alas, that didn't help. I even tried deleting the Clear Sky and SOHO via the widget manager and then installing the old ones.
    Any suggestons? Maybe I'm just mis-remembering, but this has me REALLY perplexed!

    Good idea! I didn't know where they were, but I just searched for widgets and found them. That will also help me transfer over my stock prefs, list from the backup.
    what's good about this stuff is that I ended up finding a better sun displayer-- the Sun Viewer widget. For anyone who wants a SOHO widget, that one takes up less screen real estate than the SOHO one, provides more options. Coombine it with the Sunspot widget and you'll be all set!
    I'm beginning to think that I may have been mis-remembering--I kept looking for a magnifying glass for the SOHO one then discovered that it was the sunpot widget that had that. I'll have to reboot off the backup hard drive and see what the widgets once looked like.

  • IChat bubbles are huge

    I've adjusted the font and played with preferences, but I can't get the iChat bubble to go to a nomal size. Any ideas? The images in the package contents look correct too.

    Hi,
    The IM itself is spread over two lines as the Chat window is narrow.
    It is possible to recreate this using the ALT key.
    This key when used as a modifier for the Enter key adds a new line to the IM before it is sent.
    However I don't think this is someone doing that.
    There are two places to change the Font, its colour (text) and one for the Balloon colour.
    IN the  iChat Menu > Preferences > Messages you can choose the Font. (you can also chose the colour of the text.)
    This tends to be something that looks easy to read at 12 and 14 point.
    The default is Helvetica at 12 point.  If for some reason your Helvetica is turned Off iChat and other app will not launch.
    However once you have set the Font Size there you can resize the IM in the Format Menu and "re-chose" the Font (And it's size) and you can colour the Font here as well.
    You would tend to use this to highlight part of the text you were sending.
    However when you do this the Balloon retains the size of the Preferences Font.
    i.e. if the Format menu thinks the IM is 40 point in size it will Line break the text at 40 point even if you have  selected a 12 point Font size.
    However when I test this a natural Line break (The text wrapping itself at the end of the Line base in Width of Chat window) does not do this.
    The Prefs were set to 48 point.
    The Format menu was used to Set 12 point.
    The "Format Size" balloon ended with several ALT + enter Line breaks
    The last IM is an attempt to see if the Text would do it automatically.
    Is it just the Incoming Message that has the oversized balloon ?
    Are you Overriding incoming Messages as far a size and Font are concerned ?
    The Pic appears to show Helvetica which your end could have defaulted to if you don' have the Font your Buddy is using.
    However as the Buddy is asking to See the Big Balloon I take it they are not send it like that.
    In iChat 5 which I have I have to deliberately set it to Override Incoming Messages
    In Messages that I am working with this is Automatic and resizes it to the stated default size.
    I am not sure about iChat 6 in this area.
    8:38 PM      Wednesday; November 14, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Sudden huge increase in project size

    So I've got this problem with projects where when I go in and maybe tweak an automation parameter and save, the project size shoots thru the roof, and for instance after doing this a few times with one of my projects, it has gone from 33 MB to - I kid you not - 297 MB.
    Scared to make any more changes to it now, it will be at 1GB in no time.
    This is not including audio files or anything - just the project (song) file itself.
    Anyone else encountering this?

    Are you maybe recording your Automation in "write" mode? Try latch/touch mode instead where only the automation is written which you are actually using on your tracks. Check your Automation event lists for redundant automation data.

  • Songs deleted, "other space" suddenly huge

    I manually manage my music on my 5S 32gb because I can't fit all my music on my iPhone. Yesterday, I noticed I had only 900 songs on my phone, I typically have about 3800. I click the snyc button, and sometimes I get a few more songs, sometimes I get a few less.
    Additionally, I now have 17gn of "other" storage on my phone.
    How can I get my old songs back and clean up my other storage, which is presumably my older songs?
    Thanks,

    Yes hun if you restore as new the phone will be wiped, but thats why i suggested transfering purchases and importing photos and syncing with the computer first. you will be able to get your things back.
    http://support.apple.com/kb/HT4083  Importing photos
    http://support.apple.com/kb/HT1848 Transfering purchases

Maybe you are looking for