Border color when selecting field

Post Author: RicoDeJong
CA Forum: General
Hi,
When selecting a field in CR11 it doesn't come with a changed border color.
On a different PC it does. Don't know where this configuration parameter is set?
Anyone?

Thanks Bibhu;
The suggestion did not work that well but it did give me an idea. I used the code below in the "exit" event and I was able to change the the border color.
switch (this.rawValue)
case "1":
    this.font.fill.color.value = "0,0,0";
    this.border.fill.color.value= "255,255,255";
Thanks Again Bibhu

Similar Messages

  • Changing the Check Box color when selected/deselected

    How do I do this using the Action tab in Check Box Properties within Acrobat 7.0 (NOT DESIGNER)?
    I added the check boxes to the .PDF using the check box tool (Box Only-No Text).
    I am trying to fill the box green when selected and yellow when not selected via ACTION>Mouse Up>Run a JavaScript>Add and enteringthe javasript below with no success:
    if (this.rawValue == "1") {this.fillColor="0,255,0";} else {this.fillColor="255,255,0";}
    PLEASE HELP!!!

    If you are in AcroForm and not LiveCycle Designer, you not use LiveCycle Designer FormCalc syntax or LiveCycle Designer references.
    With a single check box:
    if(event.target.isBoxChecked(0)) {
       event.target.fillColor  = color.green;
    } else {
    event.target.fillColor = color.yellow;

  • In FCP it will not change the border color when attempted?

    I have tried to change the border color on a transition I am using with the Final Cut Pro Product and it still remains black.  Can some one assist me?

    1) What is the source material of the two clips you are applying the transition between?
    2) What are your sequence settings (click anywhere on your timeline and type Command + 0 {zero} to see your sequence settings - either report what they are or take a screen shot and post the screen shot here)?
    3) Have you tried creating a new sequence and see if you can get it to work correctly in a new sequence?
    4) Have you tried trashing you FCP preferences - usually recommended when FCP begins acting strangely -
    http://support.apple.com/kb/TS1846
    you can download (free) Preference Manager from Digital Rebellion that will do the work for you:
    http://www.digitalrebellion.com/prefman/
    it will also give you the choice of archiving your current preferences if you wish to return to them.
    MtD

  • Change ADF tab color when selected (af:menutabs and af:gomenuitem)

    I have the following code in my jsf page:
    <af:menuTabs>
    <af:goMenuItem text="tab1" destination="tab1.jsp"/>
    <af:goMenuItem text="tab2" destination="tab2.jsp"/>
    <af:goMenuItem text="tab3" destination="tab3.jsp"/>
    <af:goMenuItem text="tab4" destination="tab4.jsp"/>
    </af:menuTabs>
    When I click on tab2 the color does not change, thus it is confusing to know which tab the user is currently on. There is a selected attribute that you can set to true (e.g. <af:goMenuItem text="tab1" destination="tab1.jsp" selected=true/>), but that always leaves tab1 as the selected tab. I tried using a backing bean but there is no attribute to fire off when the user actually clicks one of the tabs. I even saw some examples of using af:commandmenuitem instead of af:gomenuitem, but there is no selected attribute to set to true. Any help? I have seen this done in many ADF applications. TIA.

    unfortunatelly you must control them in a javaBean
    if you put selected=true always be selected, you must make a bean that return true o false to this selected parameter on all the items,
    i makeo one bean to control the selected property in a commandmenuitems but it can be the same.
    public class CapBean{
    private boolean foro = false;
    private boolean material = false;
    private boolean evaluacio = false;
    private boolean pec = false;
    private boolean macros = false;
    private boolean calendari = false;
    private boolean normes = false;
    private boolean mail = false;
    public CapBean() {
    public void controlCap(String actiu){
    if (actiu=="foro"){
    this.setForo(true);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="material"){
    this.setForo(false);
    this.setMaterial(true);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="evaluacio"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(true);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="pec"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(true);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="macros"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(true);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="calendari"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(true);
    this.setNormes(false);
    this.setMail(false);
    } else if (actiu=="normes"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(true);
    this.setMail(false);
    } else if (actiu=="mail"){
    this.setForo(false);
    this.setMaterial(false);
    this.setEvaluacio(false);
    this.setPec(false);
    this.setMacros(false);
    this.setCalendari(false);
    this.setNormes(false);
    this.setMail(true);
    //JSFUtils.storeOnSession("capMenu", this);
    public void setForo(boolean foro) {
    this.foro = foro;
    public boolean isForo() {
    return foro;
    public void setMaterial(boolean material) {
    this.material = material;
    public boolean isMaterial() {
    return material;
    public void setEvaluacio(boolean evaluacio) {
    this.evaluacio = evaluacio;
    public boolean isEvaluacio() {
    return evaluacio;
    public void setPec(boolean pec) {
    this.pec = pec;
    public boolean isPec() {
    return pec;
    public void setMacros(boolean macros) {
    this.macros = macros;
    public boolean isMacros() {
    return macros;
    public void setCalendari(boolean calendari) {
    this.calendari = calendari;
    public boolean isCalendari() {
    return calendari;
    public void setNormes(boolean normes) {
    this.normes = normes;
    public boolean isNormes() {
    return normes;
    public void setMail(boolean mail) {
    this.mail = mail;
    public boolean isMail() {
    return mail;
    in the selected property i put
    <af:commandMenuItem text="#{res[\'benvingut.menu.foro\']}"
    action="#{capBean.toForo}"
    selected="#{capBean.foro}"
    onclick="parent.topFrame.location.reload()"/>
    i need to reload the page to see the item selected, it's not so pretty but funtional
    i hope me help service you
    abel

  • ROI color when selected

    I want to change the default gray color of the ROI to red or blue, when it is selected by the user for modifications. I have seen a similar post in NI forum, and the solution was given as 'change it at the image property node'...
    I am using IMAQ constructROI for my application..please give me a detailed suggestion for acheiving this color change. (I useIMAQ windROIcolor for changing the color of the ROI when it is not active)
    Thanx in advance,
    Mathew

    I don't know exactly what you want to do, but if i understood you correctly, you want to change the color of the pixels which masks the ROI area?!
    Therefore, look on the attached VI
    If you want to change the background color of the selected ROI tool, e.g. line or rectangle, i think it's not possible if you work with the WindTools setup or the WndWindows...
    Instead of this, you should use an image control, place it on the frontpanel and make a right click on it - scroll to Advanced - Customize, afterwards it's possible to change the background color of several selected tools. Save the customized control and work with it...
    regards,
    ThSa
    http://www.newgistics.com

  • Set the default border color for text fields?

    My InfoPath 2010 text field borders are defaulting to white for some reason (which basically means invisible on a white form).  Do y'all know if there's a way to set this somewhere?  Drop-downs (for example) are still showing up as the light-grey.
     Maybe I accidentally tweaked it but now I can't see where.

    Hi
    if you want the change color of all the field in new form,edit form and view form then share point designer can help you in that case.
    Or you can user page layout in info-path form
    https://support.office.com/en-in/article/Introduction-to-designing-a-form-in-InfoPath-2010-d78eef0a-e44b-4919-8032-b4a021dc30ea
    Please mark the Answer and Vote me if you think it will help you

  • Change required field border color

    I have acro form created by Adobe 9 pro with required text field in it. The default border color for required field is red. Can I change it without javascript ?

    Can I with javascript override the default color of the required field which is set in the category Forms of the Acrobat preferences ?

  • Each tab of JTabbedPane has different border color

    Is it possible for the content area of each tab in JTabbedPane to have a different border color? Selecting Tab1 highlights content area of the tabbed pane in yellow, selecting tab2 highlights it in red, etc...
    Thanks

    Thanks for the quick response splungebob. How would I get a reference to the Jpanel of a specific tab? In my case each tab will have a toolbar, so I tried setting the toolbar border yellow, but I still have the default jtabbedpane border color surrounding my yellow bordered toolbar. I would prefer to set the color on the jtabbedpane, so that way the Tab itself does not also have the border going underneath it. For instance, I don't want the border to continue underneath the "my tab" tab, as illustrated below:
       | my tab |
    |                                                  |
    |                                                  |
    ----------------------------------------------------Edited by: 816886 on Nov 30, 2010 7:53 AM

  • Shading cells when selected by mouse

    How can i get the cells I've selected to become a particular shade? Every time I select a cell and drag over multiple cells the headings change to gray, but the cells stay the same. I would like to be able to see the cells shade into a color when selected by the mouse.

    dodiscom wrote:
    How can i get the cells I've selected to become a particular shade? Every time I select a cell and drag over multiple cells the headings change to gray, but the cells stay the same. I would like to be able to see the cells shade into a color when selected by the mouse.
    Happily, it's not sufficient that one user wish a feature that the designer introduce it.
    You may try to:
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09
    Yvan KOENIG (from FRANCE jeudi 14 août 2008 12:55:33)

  • [AS, CS2 / CS3] Get Fill Color When Nothing is Selected (defaults? preferences?)

    Hi,
    where can I find the active color, which is active (border and fill color), when nothing is selected.
    E.g. I can get the active styles, when nothing is selected with:
    applied character style of text defaults
    and
    applied paragraph style of text defaults.
    Where nac I find the equivalent for fill and border color?
    Thanks
    Tobias

    Thanks, that was for CS3. Where can I get that in CS2?
    I searched the dictionary of document and application, but got no glue ...
    Thanks
    Tobias

  • TableView selection border color CSS

    All how do I change the border colour when you select a table?

    Maybe you mean the border applied to the table when the table has focus?
    In which case the css below will give the table an indigo border when it is focused.
    .table-view:focused { -fx-background-color: indigo,-fx-box-border,-fx-control-inner-background; }Not quite sure what "select" means in this context and if you are interested in the border of the entire table or the border of a selected row.
    Anyway, changing those other things is just a matter of tweaking different css styles.

  • On value selected in dropdown, set border and border color to subform

    Ok, I'm busy creating a form which has a dropdown field. There are five values inside the dropdown. I also have four subforms which contain tables and fields for each option in the dropdown except the first one. Now I want to set the border and border colour of the subform when the right value is chosen.
    In the exit part I created the code as follows:
    if (this.rawValue == "5"){
         this.resolveNode("TextfieldName").presence = "visible"; //This sets a text to visible...works like a charm
         Optie1.ui.oneOfChild.border.color.value = "255,153,0"; //After an example I found from Niall
         Optie1.ui.oneOfChild.border.color.thickness = "0.0200in";
    I changed this into Optie1, that's the name of the subForm. Somehow it doesn't apply it on the subform. I know I'm doing something wrong, but can't quite find what I want on the forums. Anyone any idea on this?

    Okay, managed to solve this myself by playing around a bit with the code.
    It should be:
    Optie1.border.edge.color.value and Optie1.border.edge.thickness.

  • How to hide selection fields when using logical database PNP

    hi.
    i m using a logical database PNP and report catagory 1PY_DEF in my program.
    but when i execute it , it shows to selection box. one name is period and second is selections.
    but i just want to show only period box selection fields , not the selection box fields.
    how it iz possible.

    HI,
    In my case i haved used the PNP logical database..in the selection box i don't wnat to display Contorling area,Cost Center & Organizational Unit. i have written this code to hide those fields..
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name CS 'PNPKOKRS' OR
           screen-name CS 'PNPKOSTL' OR
           screen-name CS 'PNPORGEH'.
          screen-active = '0'.
          screen-invisible = '1'.
          MODIFY SCREEN.
          CLEAR screen.
        ENDIF.
      ENDLOOP.
    Try modify hide the total block instead of individual fields in that block.

  • I have Photoshop CS5 and a Epson 3880 . The print setting dialogue box won't open when selecting color output PRINTER MANAGES COLORS

    I have Photoshop CS5 and a Epson 3880 . The print setting dialogue box won't open when selecting color output PRINTER MANAGES COLORS
    It does ope when selecting PHOTOSHOP MANAGES COLOURS . This is first time in 7 year this has happened.
    Any one with ideas/

    What is your screen resolution?
    What operating system?

  • PDF forms have problems displaying text and only appears when the field is selected

    Hello,
    I created some pdf forms to distribute to the company clients. But we are having some people complaining about the text visibility. When they have work in team, the pdf that they receive from a third person often appears unfill or without text, the text is only visible when the field is selected. I need to find a solution for this because our company products are base on this forms.
    If there is any addition information that I should add to understand what is happening and how to fix it, I'll be happy to write it.
    In the company, we all have mac and the forms where created innitially in Adobe acrobat 9 pro, but we have now Adobe acropabt XI pro.
    The users have both Mac and Windows systems.
    Thank you,

    This is usually caused by the form being filled-in and saved by a Mac user who is using the Preview application to view the PDF. More information is here: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    It is a good idea to inform your users that Adobe Reader (or Acrobat) should be used to work with the forms.

Maybe you are looking for

  • Watching M4v not in full screen

    Good day everyone, I just downloaded three episodes of my favorite show from Itunes (11) and wanted to watch them. However, I can only seem to do it in full screen, which is annoying because I was hoping to use photoshop at the same time as watching

  • Using illustrator How do I import a PDF Business Card and Edit

    Hi I have a sheet of business card that was saved as a PDF file. I need to be updated with info extract the logo and keep it separate.  I want to how to import the PDF file then edit all the images text.  Can this be done. Thanks

  • ORA-34492: Analytic workspace object cubename _STORED does not exist.

    I am having issues accessing cube data from a user other than where the AW was built. Following is what I have done in User-1: 1. Create two AW's in User-1 : AW-1 and AW-2. 2. Create all objects in these two AW's 3. AW-2 is dynamically attached on at

  • Message check for parked Document

    Hi All, In Funds Management I have a scenario in which budget check is activated for parked documents. When documents are parked with values less than the budget, information/ warning message is to be raised. I could see that the standard functionali

  • Color Coding in PHP/MySQL model: INC file

    Dreamweaver 8.02 on Vista RTM (wouldn't matter I don't think). I have a site I was using DWMX to manage previously and at that time I got into one of the XML or TXT files associated with DW and changed it so it would reckonize .INC as a valid file an