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;

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.

  • 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 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

  • 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!

  • Office for Mac 2011: Tips for speeding up Word when using tracked changes and comments?

    I run a fresh installation of Office for Mac 2011 (v. 14.4.1) on a brand new Macbook Pro 13" Retina 2.4GHz with 16GB RAM running 10.9.2. The Office package is fully up-to-date.
    I mainly use Word and find that it is extremely slow when I track changes. Documents need not be particularly large - even in a 30-page document after a few pages of tracks typing becomes a pain, in particular in comment bubbles where the text shows up letter-by-letter and only finish several seconds after I've stopped typing. Other programs run at the same time do not suffer from this horrible lag.
    I have searched and seen that this is not uncommon so it appears that Microsoft's coders are not particularly well versed in coding for Mac.
    My question is if other users have found ways to improve the situation, for instance by trashing plists or something like that? This is really driving me crazy
    Many TIA
    Philip

    You might try looking/posting here.
    Microsoft Support – Office for Mac
    Microsoft Support – Office for Mac (2)

  • Comment in Table Cells

    I'm working in a table and what to add comments to some of the cells. When I click in to the text in a cell, the "Comment" on the Insert menu is greyed out (not available). If I select a cell, Comment is available but the comment bubble is positioned as central to the whole table. What I want is different comments in different cells - how do I do this?
    Thank you
    Ian

    Hi Ian,
    Welcome to Pages discussions.
    Yes that would be a nice feature for sure.
    If the ability to position comments is important to you please at the top of your screen to the right of the blue Apple click "Pages" then click "Provide Pages Feedback". This will send your suggestion to the Pages team directly. I've sent many as well.
    Sincerely,
    RicD

  • Change color of Comments in Pages

    I want to change the color/shading of each comment in a pages document. I would like changing the color of the comment to change the shading of the comment's anchor, its bubble and the line between the two.
    Is this possible today? If not, how about an enhancement!
    Thanks!
    Rodger

    Rodger,
    You can change the color of the text you type into the comment bubble and you can even add a paragraph fill color to the background, but it won't change the yellow outlining in the comment bubble or the anchor.
    While I appreciate you investing me with the power to enhance Pages, you'll have to leave feedback for the Pages development team if you want to make them aware of your feature requests.
    -Dennis

  • How can I set comments to show all the time?

    I need to have the comment bubbles show on the spreadsheet all the time.  But they are in the background, only showing the little yellow tag on the cells with comments.  The "Hide Comments" in View is not marked.

    Ali,
    That feature is gone in Numbers V3.
    Jerry

  • How do I change the Background Color of a Shape in iWeb?

    I am adding a comment bubble from the Shape menu for one of my photos. Everytime I try to change the background color of the bubble I end up changing the entire background color of the Web Page.
    How do I only change the background color of the shape?
    G5   Mac OS X (10.4.4)  

    Hi Kyn,
    Perhaps you (or anyone else!) can help me with this too: is it possible to change the color of the border styles that you choose for the thumbnails on a photo page? There is no "fill" option in the Graphic pane of the inspector when I select one of them. I love some of the styles but would like to be able to match the color better to my pages. See here for an example:
    http://web.mac.com/mousie/iWeb/Site/Recount.html
    The twirly border is a little too orange for my taste.
    Thanks in advance.

  • Adobe Standard 8.0 - PDFs missing details

    Hello,
    After creating a PDF file from an AutoCad 2006 drawing, I am missing many important details.
    Only some lines are broken, there are words missing in the "comment bubbles" and half of the small circles with the page details/references are not even there.
    I already tried to reinstall Adobe 8.0 software, and there is no change.
    It also happens randomly, not for every converted/created page.
    Your help is much appreciated,
    Thanks.

    I have the same problem. A window tries to open, then reverts to IE saying there is no connection to the internet. I close this window and another windows opens saying that the license agreement was not accepted so the application will close. Have uninstalled twice and disabled firewall but still the same.

Maybe you are looking for

  • How do I repaginate a PDF document in Word 2008 for Mac?

    I am trying to repaginate a PDF document made in Word 2008 for Mac, which I have uploaded to Scribd for public perusal.  Unfortunately, whatever I do to the settings for the document it always comes out in reverse order. (60 - 1 instead of 1 - 60) Th

  • Services in RAC

    Most of the time I feel uncomfortable when it come to creating service. Can any one please share step by step procedure and more details on services and benefits around this.

  • ISight Camera Driver working on Windows 7?

    Although I have had Windows 7 (64 bit) version running on my late model MacBook Pro using Bootcamp 3.0 since Windows 7 was released, the iSight camera never did work. After installing Bootcamp 3.1 update I still have no working iSight Camera. Can any

  • Changing the system config parameter

    hi friends, I am new to SAP basis I want to change a system config parameter using RZ10.Do i need to import profiles to SAP system every time i change a config parameter?? I did not understand the need to do that.Can somebody explain me the steps in

  • I cant see what i type on ichat

    my ichat is not letting me see what i type, but i can send the messages i checked everything i can think of PLEASE HELP ME