Applying Color to Font

I wrote a formula that gives colors according to the condition in the Group Header. Now I want the Font Color of those in the Group Footer  to be exaclty same to that in the Group Header  . Is there any way to do it.
PS: In the Grou Header the formaula is to background but here I want it to the Color of the alphabets and numbers in the GF

Right-click the field > Select > Format Field > Font tab > Select the X-2 button beside Color and write this formula:
if group = 'xxxx' then crGold else crBlue
-Abhilash

Similar Messages

  • Coloring a Font with a RGB etc. without adding the color to the document swatches.

    Is there a way of coloring a font with a RGB, Lab or CMYK color without adding the color to the document swatches.
    The only way I know is to add a color to the swatches or use one that already exists.
    like
       app.selection[0].characters[0].fillColor=document.colors.add({colorValue: [255, 53, 160], space: ColorSpace.RGB});}
    This has the undesired effect of cluttering up the swatches when using a lot of colors.
    any ideas?

    Good Morning Uwe!
    After 3am by me 2am by you
    I had tried the link and it did download but I have cs5 cs6 and cc but not cs5.5 and all the scripts worked on them may because of the file conversion.
    So it looks like the following summary is all correct
    All documents new contain
    Swatches (Black, Registration, Paper and None) the index order will be the order that the swatches appear in the swatches panel
    And colors in an alphabetical index order
    named color "A" first "Z" last and then the unnamed colors.
    A such all new documents colors[-1] will be an unnamed color which we can duplicated to produce other unnamed colors taking note that the duplication must be process and not spot colors.
    So far so good, (not for long )
    Unnamed colors are not read only so if we make a positive effort to remove them we can do that.
    while (app.activeDocument.colors[-1].name == "") app.activeDocument.colors[-1].remove()
    We now won't have any unnamed swatches to duplicate and will have to resort to John's tagged text file method in 3 above.
    If there were no unnamed swatches and we try to duplicate colors[-1] and it was a color like "Yellow" then it seem's to crash indesign.
    Anyway the below method should always work (for regular non tint etc. type colors).
    // optimized for easy of use but not efficiency !!!
    var doc = app.documents.add();
    var p = doc.pages[0];
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "0mm", "30mm", "30mm"], fillColor: addUnnamedColor([0, 0,255])}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "30mm", "30mm", "60mm"], fillColor: addUnnamedColor([0, 255,0], 1666336578)}); // will be a RGB because of value
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "60mm", "30mm", "90mm"], fillColor: addUnnamedColor([65, 50, 102], ColorSpace.RGB)}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "90mm", "30mm", "120mm"], fillColor: addUnnamedColor([84, 90,40],"r")}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "120mm", "30mm", "150mm"], fillColor: addUnnamedColor([232, 0, 128],1)}); // will be a RGB
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "0mm", "60mm", "30mm"], fillColor: addUnnamedColor([29.5, 67.5, -112])}); // will be a Lab because of -
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "30mm", "60mm", "60mm"], fillColor: addUnnamedColor([100, -128, 127], 1665941826)}); // will be a Lab because of value
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "60mm", "60mm", "90mm"], fillColor: addUnnamedColor([24.5, 16, -29], ColorSpace.LAB)}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "90mm", "60mm", "120mm"], fillColor: addUnnamedColor([36.8, -9, 27],"l")}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "120mm", "60mm", "150mm"], fillColor: addUnnamedColor([51, 78, 0], -1)}); // will be a Lab because of the 1
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "0mm", "90mm", "30mm"], fillColor: addUnnamedColor([82, 72, 0, 0])}); // will be a CMYK because there are 4 color values
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "30mm", "90mm", "60mm"], fillColor: addUnnamedColor([60, 0, 100, 0], 1129142603)}); // will be a CMYK because of value
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "60mm", "90mm", "90mm"], fillColor: addUnnamedColor([84, 90,40, 0], ColorSpace.CMYK)}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "90mm", "90mm", "120mm"], fillColor: addUnnamedColor([67, 53, 97.6, 21.7], "c")}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "120mm", "90mm", "150mm"], fillColor: addUnnamedColor([0, 100, 0, 0], 0)}); // will be a CMYK
    function addUnnamedColor (cValue, space, docToAddColor) {
        docToAddColor = app.documents.length && (docToAddColor || (app.properties.activeDocument && app.activeDocument) || app.documents[0]);
        if (!docToAddColor) return;
        var lastColor = docToAddColor.colors[-1];
        if (!cValue) cValue = [0,0,0,0];
        if (space == 1129142603 || cValue && cValue.length == 4) space = ColorSpace.CMYK;
        else if ((space && space < 0) ||  space && space == 1665941826 || (space && /L|-/i.test(space.toString())) || (cValue && /-/.test(cValue ))) space = ColorSpace.LAB;
        else if ((space && space > 0) || space && space == 1666336578 || (space && /R/i.test(space.toString())) || (cValue && cValue.length == 3)) space = ColorSpace.RGB;
        else space = ColorSpace.CMYK;
        app.doScript (
            var newUnnamedColor = (lastColor.name == "") ? lastColor.duplicate() : taggedColor();
            newUnnamedColor.properties = {space: space, colorValue: cValue};
            ScriptLanguage.javascript,
            undefined,
            UndoModes.FAST_ENTIRE_SCRIPT
         function taggedColor() { // need to use this if no unnamed exists
                 var tagString = "<ASCII-" + ($.os[0] == "M" ? "MAC>\r " : "WIN>\r ") + "<cColor:COLOR\:CMYK\:Process\:0.1\,0.95\,0.3\,0.0><cColor:>"; // would make more sense to apply the correct value in the tagged text file but I can't be bothered !
                 var tempFile = new File (Folder (Folder.temp) + "/ " + (new Date).getTime() + ".txt");
                 tempFile.open('w');
                 tempFile.write(tagString);
                 tempFile.close();
                 var tempFrame = docToAddColor.pages[-1].textFrames.add();
                 $.sleep(250);
                 tempFrame.place(tempFile);
                 tempFrame.remove();
                 tempFile.remove();
             return docToAddColor.colors[-1];
        return newUnnamedColor;
    Shall apply the function to delete and replace swatch on the other thread at a more sane time
    Regards
    Trevor

  • How to chnge cmyk and also apply color profiles in bridge

    Hi
    i want to apply color profile for selceted files in brige

    Does any one know how you can adjust the font size (point size) for the file
    names.
    Sadly enough you can't chance that, feel free to add a feature request for
    that, the more there ask for the bigger chance it will be realized.
    It would be great if the colors for the image name (background and font color)
    could be changed so the contrast could also be increased so it is also easier
    to read.
    And this the cheerful part, go to Bridge preferences General tap and play
    with the sliders for user interface and Image Backdrop until your satisfied.
    BTW using the slider for thumbnail size bottom right of the Bridge window to
    increase the thumbs does not increase the font but makes it nevertheless a
    little clearer.

  • Setting color and font

    I need a way to set the properties of a text box--color and
    font of the text inside it--upon an event, wether it's in the
    timeline or off a button release or even LoadMovie would work. Is
    this possible?
    woodbury

    Hi Firstodd,
    1. Try re-assigning the text after you set the format:
    blackjack.onPress = function() {
    var oldText=this._parent.field.text;
    var myFormat = new TextFormat();
    myFormat.font = "BlackJack";
    this._parent.field.setTextFormat(myFormat);
    this._parent.field.text=oldText;
    I haven't played around with the AS3.0 enough yet but I know
    that the
    2.0 one applies changes to new text so you need to add "new"
    text to the
    field by recopying the existing text. Basically...rewrite the
    text with
    the new format.
    2. Your formats are stored in the text field's format
    property. You can
    either keep a reference to the original format you created
    ('myFormat'
    above), or use:
    var myFormat=this._parent.field.getTextFormat();
    The text format has a variety of properties you can read such
    as font,
    size, color, and so on. Have a look at the TextFormat class
    reference in
    the Flash help. Most of these are completely optional so you
    can
    set/read whatever you want.
    About the text, you simply read or write to the field's text
    property
    like we did in example 1:
    this._parent.field.text="This is new text";
    var fieldText=this._parent.field.text;
    If you want the user to be able to input text into the field,
    make it an
    input field:
    this._parent.field.type='input';
    Otherwise, it's just dynamic:
    this._parent.field.type='dynamic';
    Do you want it selectable?
    this._parent.field.selectable=true;
    If it's tall enough to support multiple lines, do you want
    multiline
    support?
    this._parent.field.multiline=true;
    Automatic line wrapping on lines?
    this._parent.field.wordWrap=true;
    You can get even lower-level if you want. You can monitor
    what the user
    types character by character (assuming this is AS2.0):
    function onFieldChanged(fieldRef:TextField) {
    trace ('Field now has text: '+fieldRef.text);
    this._parent.field.onChanged=this.onFieldChanged;
    A field can also cut off if you exceed the available area.
    You can set
    auto-sizing so that the field adjusts itself to what you
    type:
    this._parent.field.autoSize='left';
    //Use 'center' to keep the text aligned to the center of the
    field, and
    'right' for right alignment.
    Dimensions of the typed text, in pixels, can be obtained
    through:
    this._parent.field.textWidth;
    and
    this._parent.field.textHeight;
    (You can get the dimensions of the field using _width and
    _height but
    this is the field size, including borders).
    Speaking of borders:
    this._parent.field.border=true;
    And background...
    this._parent.field.backgroundColor=0x00FF00; //green
    backrgound
    this._parent.field.background=true; //turn it on
    I could go on for pages...have a look at the TextField class
    to see
    everything else you can grab.
    The TextField class is the actual field...TextFormat is the
    optional
    format that's applied to the text.
    Hope that helps,
    patrick
    Firstodd wrote:
    > Actually, I did this to embed the fonts I wanted (they
    are all non-standard):
    >
    > The buttons to pick the fonts are broken down, so
    graphic and not text. Off
    > the the side, out of the canvas, I made a text box for
    each font I wanted, and
    > put a letter in each, anything would work. I applied the
    font to each of these
    > letters/text boxes, and then on the properties, I
    clicked the "Embed..."
    > button, and ctrl-selected "uppercase" "lowercase"
    "numerals" & "punctuation",
    > for each font on each text box.
    >
    > Works great, the dynamic text that lets the user types
    in changes fonts and
    > colors correctly using the script you gave me, even on
    computers that don't
    > have those ornamental fonts installed.
    >
    > --
    >
    > However, I do have a couple questions that any advice
    would be appreciated...
    >
    > 1. When the playing the .swf (which is just 1 frame
    stopped), the buttons that
    > change the font and color of the named dynamic box--they
    have to be pressed
    > twice the first time to apply it to the text. But after
    it's been applied, and
    > you change it, one click will do to get it back to that
    color again. I can't
    > figure out what would be causing this. My scripts are
    all clones of this:
    >
    on (release) {
    > blackjack.onPress = function() {
    > var myFormat = new TextFormat();
    > myFormat.font = "BlackJack";
    > this._parent.field.setTextFormat(myFormat);
    > };
    > }
    >
    > changed accordingly for the color buttons.
    >
    > 2. My next step on this is to, upon the push of a
    button, extract the
    > information of the instanced text box. As you can see, I
    named it "field". I
    > don't know where to start with the script for these
    kinds of things.
    > Properties... I mean what the user has typed, it's
    color, and it's font.
    > Actually, this needs to go to some sort of check out
    system, which I'm not
    > familiar with at all, so I'm not expecting a walk
    through setting it up, just
    > some direction if you could =).
    >
    > Thanks again
    >
    > Woodbury
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • How do I change the color of font in a fillable form in Adobe Reader? How can I check if the writer of the document has given permission to edit color and not just add text?

    How do I change the color of font in a fillable form in Adobe Reader? How can I check if the writer of the document has given permission to edit color and not just add text? Please help! I'm technologically challenged.

    Most forms (99% or more) are created for simple text input, where you cannot change anything.
    The creator of the form could allow Rich Text input (which allows you to change font, text size, color, etc.), but frankly I have never seen such a form, and I wouldn't know how they look.  But I'm sure they would show some kind of controls to alter the text appearance.

  • Font color  and font effects in sap scripts

    Hi,
    I want to change the color of font(usually it is black).I want in some other color other than black.
    Thanks in advance,
    Priya.

    Hi Priya,
    I know it's quite a long time that you started this discussion.
    But if you still want to know the answer, please go through my blog on how to do color printing in SAP scripts.
    White Paper on 'Color Printing in SAP Scripts'
    Regards,
    Sireesha Ch

  • Custom colors and fonts in in-context editor?

    I have added some custom colors and font families in our partner portal > online editor settings for a client site. When editing a page or web app item in the Manage tab of the admin console, I can see these colors and fonts in the editor. However, when going to the Edit tab (in context editing), and clicking on a block with ice:editable='html' I only see the standard fonts and colors.
    Does anyone know if this is a known issue? Or is there some workaround to get the custom colors and fonts into the in context editor?

    It's all type, and afew 3D shapes I created, but I noticed when they were printed out by the printer at work, everything was quite fuzzy. However this occured when I saw that 24 MB was way too much to e-mail through my works server. So at that point I decided to make everything into a .gif and place them into Indesign and PDF them, by doing that i completey reduced the quality and the size, so after it printed it was very pixailized on the edges, and the colors were a few tones off....
    I guess I just want to have the best of both worlds a small pdf and good quality...

  • Drag and drop to apply color to art.

    Hi All,
    I am designing a panel for Illustrator CS6 that displays colors in a datagrid as follows,
    [Color] [Color_Name]
    I want to be able to apply color to any art by using the drag-n-drop from the panel to the document. Is it possible that I am able to detect the art on which the color was dropped so that I can apply the color?
    Thanks!

    I came upon the NativeDragManager class of the CS Extension. We can use it to drag and drop objects from the panel to the application document. For this we use the ClipBoard and specify the format of the clipboard data. There are quite a few formats, namely, bitmap, text, url, file, etc. However, I couldn't use any of these so that I might drag a color from my panel to the document.
    Here is a code to drag and drop a text from panel to document,
    var clip:Clipboard = new Clipboard();
    clip.setData(ClipboardFormats.TEXT_FORMAT, designsDG.selectedItem.Colors);
    var allowedActions:NativeDragOptions = new NativeDragOptions();
    NativeDragManager.doDrag(designsDG.selectedItem as InteractiveObject, clip);
    Here designsDG is the datagrid containing the text.
    How can I do something similar for a color object?
    Any inputs?

  • Applying color to Heading of a page in ALV reports

    Hi Experts,
    I want to apply color to heading of a page in ALV reports ,if any one knows please help me.
    Regards,
    Satya.

    Is that what you mean?
    DATA it_sflight TYPE TABLE OF sflight.
    SELECT * FROM sflight INTO TABLE it_sflight UP TO 10 ROWS.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program          = sy-repid
        i_callback_html_top_of_page = 'TOP_OF_PAGE'
        i_structure_name            = 'SFLIGHT'
      TABLES
        t_outtab                    = it_sflight
      EXCEPTIONS
        program_error               = 1
        OTHERS                      = 2.
    FORM top_of_page USING document TYPE REF TO cl_dd_document.
      DATA lo_table_area TYPE REF TO cl_dd_table_area.
      CALL METHOD document->add_text
        EXPORTING
          text         = 'Some text'
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative.
      CALL METHOD document->add_table
        EXPORTING
          no_of_columns               = 2
          cell_background_transparent = space
        IMPORTING
          tablearea                   = lo_table_area.
      CALL METHOD lo_table_area->add_text
        EXPORTING
          text      = 'Some text2'
          sap_color = cl_dd_area=>list_key.
      CALL METHOD lo_table_area->add_text
        EXPORTING
          text      = 'Some text3'
          sap_color = cl_dd_area=>list_background.
      CALL METHOD lo_table_area->new_row.
    ENDFORM.                
    If not, please let us know which part of ALV you exactly want to color.
    Regards
    Marcin

  • How to apply a new font for missing glyphs in another font?

    The situation:
    For an article, I want to use Font1, but some of the glyphs are missing in it, and are highlighted with pink boxes. Font2 have much more glyphs than Font1. I can apply Font2 manually for each of the missing glyphs, but it is tedious.
    Question:
    Is there a way for InDesign to do such substitution automatically? I.e., apply a default font, which can be specified by user, for all the missing glyphs.
    If not, how to search/find those missing glyphs with GREP or script? Since InDesign can identify the missing glyphs and marked them with pink boxes, it seems easily (not to identify the unicode ranges which seems not very easy) to find them using GREP, but I failed to find it.
    Any one know how to do this? Thanks.

    calvyan wrote:
    Is there a way for InDesign to do such substitution automatically? I.e., apply a default font, which can be specified by user, for all the missing glyphs.
    No. Alas, I might add. There is some sort of auto-catch, specific for Symbol symbols, but no-one knows how it works and you cannot manipulate it yourself.
    If not, how to search/find those missing glyphs with GREP or script?
    Not specifically, i.e., you cannot search for "any missing glyph". Add a GREP style which changes just the font (make sure it doesn't set the font style as well, or else your Bolds or Italics might disappear). Create a new Preflight profile that checks just for missing glyphs, so you won't miss any.
    None of this can be automated though.
    .. it seems easily (not to identify the unicode ranges which seems not very easy) to find them using GREP, but I failed to find it.
    InDesign's GREP flavor doesn't allow named Unicode blocks (http://www.regular-expressions.info/unicode.html), but I have successfully used character ranges to automatically set the font for Chinese, for example.

  • Pages 4.2 and Color Emoji Font

    Can it be true that the new Pages update still does not support the Apple Color Emoji font which Apple included with 10.7?  Does everyone else also find that the color versions will not display?

    I meant to say Pages 4.2. I'll bet you guessed that. I never owned Pages 2.2.
    Jerry

  • Unable to apply color formatting to document library custom view using javascript

    Hello,
    I have applied color formatting to some values in Document library at "Allitems.aspx" page.
    Created one view where record of library displaying as per sort rule and trying to apply the color formatting on that view, but its not getting apply.
    also tried to insert that list as web part in one page with the same view(created by me) and tried applying color..but not working.
    I used below script for color formatting, included in script editor web part:
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function()
    $Text = $("td.ms-cellstyle.ms-vb2:contains('Very limited risk - acceptable A')");
    $Text.css("background-color", "#7FFF00");
    $Text = $("td.ms-cellstyle.ms-vb2:contains('Measures Required (in 6 months) - M')");
    $Text.css("background-color", "#D2691E");
    $Text = $("td.ms-cellstyle.ms-vb2:contains('Immediate measures required - I')");
    $Text.css("background-color", "#6495ED");
    $Text = $("td.ms-cellstyle.ms-vb2:contains(Stop work until measures are taken - S)");
    $Text.css("background-color", "#DC143C");
    </script>
    Could please suggest a way out.
    Thanking you in advance.
    Regards,
    Jayashri

    Hi Jayashri,
    Follow the steps to debug your JS code, preferable in IE browser
    Press F12 to open your developer tool
    Select Script tab
    Search for your code, set debugger point by clicking on the left extreme position on line numbers
    Click on Start debugging at top, if its not there in your browser just refresh the page, it will hit the debug point.
    Hope it will help you in debugging your code, if you need any further details about debugging this, mail me @
    [email protected]
    Thanks
    Shakir

  • Adobe Acrobat 8 -How do change color of font?

    At me all color of font is red when trying to select: Comments->Comment&Markup Tools->Text Box Tool. and all color of font was red.

    I had the same question.  I spent a lot of time until I found the way.  Unfortunately, the help function of the program is not that good.  In fact, it is confusing.
    Anyhow follow these steps.
    1.  Pick the text box function.
    2.  Place the cursor where you want and write.
    3.  Go to the "View" dropdown menu.
    4.  Select "Toolsbars" in the dropdown menu.
    5.  Select the "Property Bar"
    6.  You will see the toolbar for changing the color and sizes of linew and font.
    7.  Select the text box you want to change.
    8.  Double click to select the text inside the text box.
    9.  Use the toolbar function to change the color, font and size.
    The problem with the help documentation is that when they talk about "text"  they are refering to the original text of the document and all the solutions that I found did not work because of this.

  • Mixer Brush is not applying color?

    In CS6, I am trying to apply color to the Canvas with the Mixer Brush, though it is not working. I am using Wet, Heavy, Mix brush and I select Blue as my foreground color, the color is showing in the toolbox and up above in the options bar, though when I paint it just seems to smudge the colors on the canvas. What is wrong with my settings? Thanks.

    I don't use the mixer brush often, but here are what some of the settings do:
    Wet determines how much color is picked up from the canvas to load the brush, so a setting of 0 will only pick up what's in your "resovoir" or the color you picked. 
    Load is how much paint is picked up and how long that color will last in one stroke.  So if you set this at a high number, the loaded color will keep continuing painting, whil a low number will start to fade sooner.
    Mix will only come on if there is some value other than 0 in wet, as it determines how much the brush will mix with the canvas.  So the high the number the more the brush will mix just the color on the canvas and not what's loaded into the brush.

  • Photoshop document with smart objects changed when I apply color profile. Why?

    I work in Photoshop with smart objects. When I apply color profile smart object are changed. For example change filter or change size. I dont now why?
    See image

    Yes, fortunately, I am a Windows user, but I don't want to start a religious war here And it is also possible to run multiple versions of Adobe products simultaneously under Windows - why shouldn't that be possible? Currently I have CS3 and CS4 and somtimes use CS3 when CS4 is just too buggy to get the job done. Before that I had CS and CS2 on the same machine.
    But I wouldn't keep all versions back to PS 6.0 or CS, that would be a bit too chaotic and I'd had to spend days of installing if I get a new computer. I expect those programs to be a little bit backwards-compatible, so I don't have to use many different versions. And for Photoshop, this is mostly the case. It's just very tiny details like Smart Object resizing that seems to work differently.
    Otherwise I'm really happy that in CS4 I can finally link Masks to smart objects and apply warp and perspective on them, that's a big plus!

Maybe you are looking for

  • How do I change one persons apple id for a shared account, without losing previous purchases for either?

    I have two children who have shared an Apple ID for the iPod Touches.  The older is now getting an iPhone and is old enough to manage his own ID.  My question is, if we set him up with a completely new Apple ID, will he be able to sync the phone with

  • Wireless Network Does Not Always Connect Successfully on HP ENVY 5644

    Just purchased a new HP ENVY 5644 device to replace an existing my HP Photosmart C4380. Powered the new device on for the first time and ran through the initial setup using the integrated touchscreen. Everything seemed to go both easily and smoothly,

  • Calling java from inside an Active Server Page.

    Is it possible to call a java application from inside an ASP ? I can't write COM. Just Java. But IIS is all I have access to at this time. thanks, nupevic

  • Querry for Production receipe

    I am new to this forum From C203 : We get Receipe Details of 1 singel Material and Plant I want to know the Operations with lead times for List of materials For this purpose i have creaed a SAP querry using below tables MKAL : Production Version of M

  • Essbase tuning advisor / statistic viewer?

    Hi, Is there any tool that can help me fine tune my calculation scripts / business rules? I would like to know for instance, how many blocks are being affected with a couple of fixes, or the exact members where a fix calculation will have effect if I