FitFrameToContent is going too small

I'm using InDesign server to create documents. The document must precisely position a single character. I'm using FitFrameToContent expecting to get the bounds of the character, but the frame is reducing beyond that size. I've attached a JPG to show what I mean. The black box is the fitted frame. You can also see that InDesign isn't considering this an overflow situation.
I need a way to fix or work-around this issue.
- Is there a setting which can ensure the fitted frame contains all of the character?
- Is there a way to programmatically get the dimensions of the character?

What you're seeing is the way the character is designed. It is designed to extrude beyond its bounding box and so it extrudes beyond the fitted frame.
The only way to get the actual extents of the character's glyph is to convert it (or a copy of it) to outlines and then get the geometric or visible bounds of that.
Dave

Similar Messages

  • FitFrameToContent is reducing too small

    I'm using InDesign server to create documents. The document must precisely position a single character. I'm using FitFrameToContent expecting to get the bounds of the character, but the frame is reducing beyond that size. I've attached a JPG to show what I mean. The black box is the fitted frame. You can also see that InDesign isn't considering this an overflow situation.
    I need a way to fix or work-around this issue.
    - Is there a setting which can ensure the fitted frame contains all of the character?
    - Is there a way to programmatically get the dimensions of the character?

    What you're seeing is the way the character is designed. It is designed to extrude beyond its bounding box and so it extrudes beyond the fitted frame.
    The only way to get the actual extents of the character's glyph is to convert it (or a copy of it) to outlines and then get the geometric or visible bounds of that.
    Dave

  • Thumbnails in "OPEN" dialog box too small to see!

    The thumbnails are  too small in the open dialog box so that I can't see the file I want to open.  Yes, you can make them bigger in finder itself...but I am always opening pictures and I just can't see them!
    Almost as frustrating as the column issue.   The name column is very very wide when I try to open a file.. so I can't sort by the other columns without dragging over the bar at the bottom of the screen.  THis is so so frustrating.  I resize but it doesn't stick to the next session.
    Apple invented the finder.  Why is it so inferior to windows explorer?

    The only solution to enlarging the icons in an application open dialog window is to use the Accessibility panel in System Preferences. Under Zoom, enable Use keyboard shortcuts to zoom.
    The first time you have an application open dialog, you press the keys: option + command + =  as many times as you want to zoom in. This will enlarge the open dialog window and its contents. When done, press option + command + 8 to restore normal window size. Subsequently, you can alternatively press option + command + 8 to zoom to the previous setting, or return to normal zoom.
    This is as good as it is going to get. The applications (not just Apple’s) only use a subset of Finder’s settings in the open dialogs, and these do not include icon enlargement settings, which as you realize, are part of the actual Finder’s settings. The application development frameworks, and not Finder, are remiss in not providing icon size adjustments in open dialog windows.
    You can provide feedback to Apple regarding OS X.

  • I don't have a question so much as a comment for APPLE. I am a new iPhone 5s user and it has many things I like but It is too small and I can only talk on the phone and use the internet if i am in a position to use a wifi connection and that is not good

    I am a new iPhone 5s user. I like many of the features it offers. I don't like that I cannot talk and use the internet (if I am away from WI-FI) and this phone is too small. I am actually thinking of returning it and going back to an Android. After all the hassle it took to get all my stuff working on this phone , it may be worth the switch. This phone needs to be able to multitask freely in this day and age. Also Safari is not the best search engine but I could work with it if I could talk and use it at the same time. I use my phone for business and this is a feature that is needed in my line of work.

    TJBUSMC1973 wrote:
    The iPhone is working, as designed and advertised.  In this case, the user failed to educate themselves properly, either by proper research or asking the right questions, before purchasing the device.
    I understand that the OP failed to do research. But then, I wasn't replying to the OP. I was replying to Chris. I have Verizon. I can talk and use data at the same time with my Droid Maxx. Therefore, the problem is not just with the network. It would be technically possible for an iPhone to do that on Verizon/Sprint if Apple had chosen to use a different chip, such as the kind other phone manufacturers have elected to use.
    Of course, this is probably all irrelevant to the OP's issue. It was merely a point of clarification, especially for those people who are used to being able to use both voice and data at the same time on Verizon. When they switch to an iPhone, they are often surprized at the limitation.
    Best of luck.

  • How do I make icons bigger? All icons are way too small for speedy use. no matter what I do they remain too small. Is there a way of getting them the same size as previous versions?

    All icons, such as refresh page, back, forward, stop and home etc; are just too small for comfortable use. For now I am uninstalling Firefox 4 and going back to 3.x. even the zoom page icons are too small.

    "I had read that GarageBand or the Musical Typing there can sometimes not display properly when the resolution is changed."
    Well, did you checked GB after you changed your resolution?
    Which setting did you change to?
    You & I have the same size iMac screen. My resolution setting is 1280x800. Everything fits perfectly in the windows & on desktop including the menu bar.
    All info in my windows are showing. I did not need to adjust my browser font size settings. I am sure you are aware of the browser font size settings. I use FF & the settings are in Preferences>Content.
    In the Finder window you can enlarge the icons & fonts also.
    Finder>View>Show View Options.

  • "buffer too small for string or missing null byte" inserting CR in excel

    I have created a Crystal Report based on below stored procedure.
    DELIMITER $$
    DROP PROCEDURE IF EXISTS `ww_test`.`PRD_Data_sp` $$
    CREATE PROCEDURE `ww_test`.`PRD_Data_sp` (in cyear int, in cmonth int, in groupby varchar(20), in Inv_type varchar(4))
    BEGIN
      select
              CASE WHEN groupby='Date' THEN  (p.FKDAT)
                   WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
              END ,
              sum(p.QTYSAM),
              sum(p.CASESSOLD),
              sum(p.SOLDDOL)
              from ww_test.prd_data p
              where (month(p.FKDAT)=cmonth and year(p.FKDAT)=cyear) and
                     ((p.FKART) is null or not(p.FKART in ("FAZ","ZMBB","FAS",Inv_Type))) and
                     ((p.AUART) is null or not(p.AUART in ("ZMBB")))
              Group by
                  CASE WHEN groupby='Date' THEN  (p.FKDAT)
                       WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
                  END
              Order by
                  CASE WHEN groupby='Date' THEN  (p.FKDAT)
                       WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
                  END;
    END $$
    DELIMITER ;
    I have used Add Command to create report based on this.
    call ww_test.prd_data_sp({?Year},{?Month},{?GroupBy},{?InvType});
    I am able to refresh the report in crystal and as well in Infoview without any problem.
    But when i try to insert this report in Excel using Live Office it gives me error. I able to insert other crystal reports without any problem.
    An error occurred while opening the report. The report does not exist; you have insufficient rights to open the report; or you cannot make a connection to the BusinessObjects Web Service. (LO 02010)
    Failed to open report (LO 26619)
    Cannot open report document 
    Buffer too small for string or missing null byte.
    can anyone suggest where i am going wrong? Any input is appreciated.
    Crystal Reports 2008
    Live Office XI 3.1
    BOEdge XI 3.1
    Xcelsius 2008
    Thanks ,
    Madhavi

    With the CurrentValue method
    Crpt.ParamFields[3].CurrentValue := memo1.Text;
    Is there another solution ?

  • Hello MacBook Pro Musicians- I cannot read sheet music from the ipad. It is too small. I want to connect a large monitor, hopefully wirelessly to my 13 inch macbook pro. what would I need to connect ? Any suggestions on how to keep monitor from falling?

    Hello Macbook Pro Musicians--I cannot read sheet music from my 13" macbook or from an IPad. The print is too small for these aging eyes! So I need to get a large monitor to attach to the Macbook.  I want the monitor to be connected wirelessly or using a blue tooth.  This will eliminate alot of potential mishaps
    when playing out.  Also I am having a time figuring out how I am going to safely keep the monitor on somekind of music stand without falling!!!  Can anyone help me with this?

    Hi Julius,
    As you can see in my profile section, my MBP is older by 5 years, 2GB RAM and with regards to question 1 (Q1), has no problems with having all those programs open at the same time with the possible exception of Photoshop since I use Gimp instead. With twice the RAM and much overall much better specs, Photoshop shouldn't be an issue. But you listed some other activities that might need that additional RAM. But the advise most give is to not get it from Apple but from a third party.
    Q5 - I always get Apple Care. Only had to use it once but it paid for itself that one time.
    Sorry, can't help you much with the questions you really want answered since I won't have a new MBP until (hopefully) next week but for Q4, I believe it depends on the peripheral. My current monitors are too old to allow them to be hooked up in a chain. Supposedly, if the monitors do have the ports, you could via the MBP Thunderbolt port. The speeds are also dependent upon the peripheral. If the external hard drive is using a USB 2 port, you are limited by that speed (480 Mb/s). If it has a Thunderbolt port, then from what I understand, we, my friend, are in for some great times because I believe your RAM will have the ability to access data as fast as it can take it at 10Gb/s (and if will need those kinds of speeds, the 8GB of RAM may be the way to go). The Thunderbolt demos on YouTube where they are accessing four video files from a Raid drive, then sending them back out via Final Cut Pro to a monitor are amazing. I'll probably never push this machine to anywhere near it's limits but I can't wait to see what others do.
    Peace,
    Jeremiah

  • When i browse with firefox the search results come up too small to read and I can't find any menu buttons (ie, can't find anywhere to zoom in or the view menu)

    Have just got a new computer. Downloaded firefox as it has always been better than explorer and I've never had trouble on previous computers. It seemed to download okay. I set google as my home page. When I type a search phrase into it, the results page comes up too small to read. It's like it's normal but miniature. You know how google has google images, googlevideos, google maps across the top of it, if I click on the minature 'images' word, it comes up with the google images page but also very tiny. But if I click the mini 'videos' word, the videos search page is normal sized and so is the maps page.
    It's driving me crazy because the initial page seems okay but there's no normal google stuff on that either, and then when I try to search for something, it goes tiny.

    Hello Ashley.
    You may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    On the other hand, you may have Firefox configured to display fonts like that. Check Tools > Options > Content > Fonts & Colors and see that the font size is not too small. In my experience, sizes bellow 16 will be way to small to read.

  • Font in Menu Bar and Drop Down list way too small

    I just tried PSE 10 and was very surprised to see that Adobe did not address the problem with the font size being way too small in the menu bar and drop down list.  I cannot possibly read the font - so the program is basically unusable.  I am using a new 17inch laptop.  Is it possible that after all the complaints Adobe didn't fix this problem in PSE 10?  Are they even working on it?  I love the program but unfortunately I am going to have to switch to something else because there is no way I can read the font and thus cannot use the program at all.  Very, very disappointing.  Hopefully they are working on a fix???

    Photoshop CS5 Essential has preferences that offer users the opportunity to adjust menu bar background color as well as font size.  For example,
    "UI Font Size
    If you find that Photoshop's interface text is a little too small for comfort, you can increase its size by changing the UI Font Size option to either Medium or Large. And no, this option isn't just for old folks with poor eye sight. Working on a very high resolution monitor can make Photoshop's interface text appear very small. Personally, I like to set my font size to Large which I find helps to avoid eye strain. You'll need to close and then re-open Photoshop for the change to take effect:
    Change the font size to increase some of the text in Photoshop's interface.
    (From an article by Steve Patterson at http://www.photoshopessentials.com/basics/cs5/preferences/ .
    Why not Photoshop Elements?  ?
    Lensw

  • Report error:ORA-06502:character string buffer too small. urgent!!

    Hi guys,
    My APEX version is 3.0.1.00.08, my application run on my test environment, but on PROD environment, it raised the error:
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    In this page, on the left is a tree, the right side is a tabular form, when I click one tree node, it will pass the current node id to the form and the form will display the children data. When I click some tree node, it will raise the ORA-06502 error, but when click some other nodes, it is correct. I don't know why. And on my test environment, it has no this error, the test environment has same version with prod environment, only has less data in database. Could you help me???
    I searched in forum, someone says it's LOV problem, if it's LOV problem, all the nodes should have error, why click some nodes are ok?
    Thanks !
    Jessica

    I don't think it is related only to the number of rows but also to the content of the rows. So, counting only the number of rows doesn't say anything about if it is going to work or not. My question: can't you filter those entries? Making a choice between 250 entries in a tabular form isn't a simple task. Using popup-key LOV instead would also be a solution. However, if you use popup-key LOV be aware of the fact that you need two index numbers for those.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Gmail fonts too small, hard to read but are fine using Chrome

    I recently downloaded Firefox 4 because Chrome has been really slow and crashing a lot. But when I opened Gmail, all the fonts display very small (too small for comfortable viewing) and after trying to tweak preferences, clear cache and cookies, nothing has worked. If I can't fix this I'm going to have to go to a new browser. I tried the no minimum font size setting, but it was already set to "none"
    I can send a screen shot if that will help.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Prints too small and doesn't do margins correctly

    When printing any document, either form Microsoft Word or the internet, the font sizes come out too small and the margins do not match the settings. For example, I have my margins set to 1inch all the way around and yet the printer prints the paper margins at  **Top 1inch, left and right @ 1.3 inches, and the bottom at 2 inches. This is very annoying because it condenses everything and makes the font smaller.  I have already went into all of the settings both in Word and the Printer. Everything is set right, I am using letter paper 8.5 x 11, it is set up to match that paper, and I've double checked everything. And the paper is loaded in correctly. I seriously don't know what to do. I've even tried selecting "fit to paper" under the printer options and nothing has changed. I am really tired of this printer.
    Please help!

    Scatteredskies
    Welcome to the HP Community Forum.
    Every printer I have ever had seems to revel in messing with us about margins - I had the 7520 printer for a year; in my personal opinion this printer is not better or worse in this regard than others.   
    I am not being sarcastic; far from it.  I am fully sympathetic. 
    There is always something going on -- IF it is the printer then it might be one of the following:
    Printers have margin restrictions that can get in the way of the settings - and the results manifest themselves in odd ways depending on the document type (Word, PDF, html, some-other-type).
    Software can have an effect -- Online Word, for example, may not be the same as Word-in-a-Box and a PDF file on your computer is never the same as a PDF file on the Internet.
    If you think the printer is messing with you because the software is tweaked, then you can remove and then reinstall the printer software -- it does sometimes help IF the software is corrupted or out-of-date.
    Install Full Feature Software – Printer
    You can download files from the Internet and try printing them from your computer -- local files frequently print better from your computer than they do from the Internet.  This assumes you can trust the files to be downloaded onto your computer.  Scan any downloaded file with your best Security Software.
    You can try setting Word document margins to Narrow.  This may work as long as you don't get into trouble with other printer margin restrictions of it if doesn't mess up your document.  Depends.
    You can try using Print Preview to adjust the margins.
    You can try -- when using Word - to adjust the Footer / Header to move the Page Numbers / Headers out of the way of whatever Printer margin restrictions exist.  For example, if the printer cannot print within .5 inches of the edge of the paper, make sure the page numbers have been moved away from the edge of the paper at least that far.
    Our British friends know that A4 paper is not American "Letter" paper.  The difference can present challenges - Word offers an Options setting for this to keep the A4 bottom bits from chopping off.  This setting MIGHT do odd things to "Auto" select paper settings in some printers.
    You can try using Printing Preferences / Properties to print borderless -- assuming your paper selection combination and printer supports this.
    For example:
    Printing Preferences > Paper Quality > Advanced >
    Under Printing Features >> Borderless Printing > Select from Drop Down Menu "Print Borderless"
    Combine this with Print Preview / Margins
    The following might be helpful:
    Manage Print Output with Print Preview
    I hope this helps.
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • The fonts are too small on my imac desktop and web browsers.  Where can I increase the size?

    The fonts are too small on my imac desktop and web browsers.  Where can I increase the size?

    babowa wrote:
    The only way to increase the fonts on your desktop would be system wide by going down a notch on the resolution. Some people won't do it because it increases the pixel size so the fonts won't be quite as sharp; I decided I'd rather have that than having to squint continuously. Go to System Preferences > Displays > Scaled > this will give you all resolution options available. No harm in trying - just check the default (top) choice again if you don't like any of the others.
    It's a b*&^ch getting old .  I still use the screen zoom instead of decreasing resolution, but maybe soon ...

  • Screen Output area too small

    Hi All,
    When I am going to MIRO system is showing the Message (#00118) Screen output area too small.
    and the screen will become blank.
    Please guide me.
    Thanks in advance.
    Pavan H S

    hi
    take help of abaper and try activating the screen program for MIRO in se51
    regards
    kunal

  • IPhoto library too small?

    Trying to transfer iPhoto library 09.  To external harddrive.  The file transfer goes fast and the size is 237mb.  That seems MUCH too small for  the amount of photos that I have.  How do I make sure everything is ok? 
    2 years ago I got a MacBook Air with newer iPhoto which took a copy of iPhoto library converted it to lion and that file is 65 gb.  Since then there has been more added to the old iPhoto 09 library so I don't understand how it can be less than 1gb even with compression.
    Please help

    What size is the iPhoto library on your main disk before transfering it? Yes 237 MB is very small - but with nno actually information about what you are doing (lots of information about things that have no bering on the question) it is impossibel to tell
    the correct way to transfer an iPhoto library is
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

Maybe you are looking for

  • Problem in getting opening balance for multiple GL Account

    Hi, I am working on a  Trail Balance Report in which i am trying to fetch the data for the opening balance for multiple GL Accounts but it is not coming accurate.. Here is the link to the code which i am using currently right now:- http://docs.google

  • Problem in showing worksheet of discoverer in portal

    Hi All, I have created a worksheet in an user called BI. I have logged into Portal using user orcladmin. I have registered the portal provider. I have added the portlet in the portal page. I can see the public connect in the edit page. When i click n

  • How to retrive multiple images from database

    Hi, I have to retrieve multiple images from oracle database and have to display the image in the jsp. I am passing imageCategoryId from the jsp.This id contain number of image in DB. I googled the issue and i found some solution.want to know whether

  • Increase chart label text size Answers

    Hello, In the chart it shows Year,Month,Total investment,%profit,%loss as lables next to the chart,which i have selected to draw the chart. The test size is very small,I would like to increase the text size. How can i acheive this.Please suggest. Tha

  • Size of snow leopard vs Tiger

    BBC website says that Snow Leopard could save 7gb capacity over older OS. I'm on Tiger and have virtually filled up my internal hard drive, so sounds like a good deal. Any ideas on whether this is true, or if not how much capacity Snow Leopard might