Color ONLY the box, not caption!

Hello
I am trying to grey ONLY the box part (not label/caption) of the field/object, so am using below,
xfa.resolveNode("VISITOR.Page1.myInfo.Name.ui.#textEdit.border.fill.color").value = "192,192,192";
working fine,
but, i came to know that the xfa.resolveNode is not efficient, so, i want to use *this* key word so i tired as below
this.ui.#textEdit.border.fill.color.value = "192,192,192";
but, not working!! pls help me how to get my requirement with *this* key word for a better PERFORMENCE.
i tried the below syntax, but not working!
(this.ui.textEdit.border.fill.color.value = "224,224,224") from
http://forums.sdn.sap.com/thread.jspa?threadID=1596235
Thank you

Sorry...
You mean, colorin gthe grey TEXT, not entire box? if so, am sorry. I need the same effect, which gives the below syntax
xfa.resolveNode("VISITOR.Page1.myInfo.Name.ui.#textEdit.border.fill.color").value = "192,192,192";
but, y am not using that i came to know using xfa.resolveNode is not a efficient
Pls. help me
Thank youi    

Similar Messages

  • Paste image in box – Freehand only moves box, not image inside

    God bleeeees Freehand! I still stubbornly refuse to move to Illustrator, but...
    I'm now getting bugs on bugs - this has just started happening: I paste an image into an image box, but then when I move the box it's only the box that moves - the image stays in same place. This is making Freehand pretty much impossible to use.
    Any ideas? Heeeeeelp!

    It's not a bug. Contents of a clip path are controlled by the 'Contents' check box in the Transform panel.
    1. Open the transform panel.
    2. Select the move icon.
    3. Check the 'Contents' checkbox.
    Make sure that each transform function has the 'Contents' checked as you wish it to be treated.
    Judy Arndt

  • I want to transfer my music from one computer to another, however a large majority of my songs are already on the new computer, is there a way to transfer only the ones not there? or to see what songs are only on the one computer

    i want to transfer my music from one computer to another, however a large majority of my songs are already on the new computer, is there a way to transfer only the ones not there? or to see what songs are only on the one computer

    Welcome to the Apple Community.
    Homesharing gives you the option of seeing only the content in the shared library, that is not already in your own library.

  • Bought a Mac Mini.  at 18 day's old it started to lock up and not function.  Took it in and they wiped and reinstalled it.  Well at 24 day's old it's been sitting in the box not being used.  First and last Mac for me. But can I get something for the junk?

    I have pulled it out of the box and put 2 Mac approved mem sticks in it to boost it to 8 Gigs mem and it still locks up and freazes..  So many people told me Mac was the way to go...  1500 dollers could have bought me a great pc laptop.  Now I have a wirless mouse keyboard and a mac mini (aka Brick) that allowed me to donate money to a cause that is helping buildings and companies out side of the US.  While I have junk..  It's still under warranty and I reinstalled the os after the new mem sticks.  Again.. locks up and does nothing.  What can I do with this?  Toss it in the trash?  Any info on what I might do with it.. Please help!

    It would be most helpful if you updated your system information:
    Please reconcile the following
    at 18 day's old it started to lock up and not function. Took it in and they wiped and reinstalled it. Well at 24 day's old it's been sitting in the box not being used.
    ... I reinstalled the os after the new mem sticks.
    If your Mini is anything less than six months old it would be running Lion, not 10.6.1, nor would it have been necessary to "reinstall the OS". Any help that anyone can provide is predicated on your system configuration so it's important.
    If you are running Lion then boot your Mini while holding the D key. This will load Apple Hardware Test which will enable you to test your memory. "Mac approved" memory is sort of vague, and even memory that is allegedly designed to meet your Mini's specification may fail. There few reputable memory vendors.
    "Apple installed" memory is more meaningful, and indicates Apple has tested it and guarantees its function. Otherwise all bets are off with a claim of "Mac approved". You will have to verify that yourself with Apple Hardware Test.
    If your Mini was running, or ever ran OS 10.6.1 for that matter, it is close to three years old.
    You must clear up these uncertainties before anyone can help.

  • In iphoto how to get the gold you delete a photo warning message when you check the box not ask

    in iphoto how to get the gold you delete a photo warning message when you check the box not ask

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7 or later: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • Can I have the checkbox caption highlighted in a color when the box is checked?

    I'm trying to make a PDF fillable form for some of my sales folks, and I would love to highlight the color of the caption text associated with a checkbox when said checkbox is selected.
    Is this possible?
    Thank you all!

    Use the below script
      if(this.rawValue == 1)
       this.fontColor = "255";
    else
      this.fontColor = "0";
    endif
    Hope it helps
    Vipin

  • Get only the filename not the full path of the file.

    hi to all..
    how can i get only the filename of the file not the full path and to be placed on a textinput.?
    example:
    when i'browse the file and select sample.txt
    "C:\Users\user\Desktop\folders\sample.txt" this will be inputted on the textinput.
    however, what i want to have is when i'browse and select a file..
    textinput should only contain "sample".
    does anyone knows how to do it?

    Hi cyrus@adobe,
    How are you getting the full path of the file when you browse, I dont think for security reasons the Flash Player will aloow to do so. You can only get the file name not the full path of the file when you browse.
    Are you using Flex4..?? I am not sure whether this is possible in Flex4..However if you are getting full path and if you wanted to show only the filename then you can just use theString class split function to acehive this..
    var fullPath:String = "C:\Users\user\Desktop\folders\sample.txt";
        var splitPath:Array = fullPath.split("\");
        textInput.text = splitPath[splitPath.length-1];
    Thanks,
    Bhasker

  • Only the number, not the name, is shown in the list of missing calls

    When number X calls me I get the contact's name like this:
    If I don't answer the call and go to the list of Missed calls, I will only find the number (not linked to the contact). Not the name of the contact.
    This happens to contact with many numbers added. Could this be the reason?

    Hi,
    I am just giving the solution what I have done in my project. Hope this will help:
         DATA: BEGIN OF it_ccode OCCURS 0,
                   bukrs TYPE t001-bukrs,
                   butxt TYPE t001-butxt,
                     END OF it_ccode.
    DATA: wa_ccode like line of it_ccode.
    Select Company Code (bukrs) and Text (butxt) from table T001.
    SELECT bukrs butxt
    from t001
    into table it_ccode.
    LOOP AT it_t001.
        ADD 1 TO lv_index.
        ls_additional_data-fieldindex = lv_index.
        ls_additional_data-fieldname  = 'FIELDNAME_KEY'.
        ls_additional_data-fieldvalue = it_t001-bukrs.
        APPEND ls_additional_data TO additional_data.
        ls_additional_data-fieldname  = 'FIELDNAME_LABEL'.
        CONCATENATE it_t001-bukrs '-' it_t001-butxt
        INTO ls_additional_data-fieldvalue.
        APPEND ls_additional_data TO additional_data.
      ENDLOOP.
    And the form my fields binding is:
    $record.FIELDNAME.DATA[*].FIELD
    Try this out. Hope this will help.
    Regards,
    Amit

  • When using pdfFactory with Firefox, why are the colors on the pdf not correct?

    The colors are vastly different when using pdf Factory with Firefox. When using pdfFactory with IE, they are both the same.

    There doesn't seem to be a one-size-fits-all answer, because what works for one printer doesn't necessarily work for another, and I don't have your printer so I can't advise on specifics...
    However, perhaps we can discover a set of settings that will work...
    If you File - Print, choose Photoshop Manages Colors, in the Printer Profile section do you see profiles specific to your printer (e.g., with the name Kodak in them)?
    If so, choose one of them that seems appropriate given the paper you're using.
    If not, try choosing sRGB IEC61966-2.1.
    Now, before you continue, press the [Print Settings...] button.  This brings up the printer driver dialog.  You may have to go through [Advanced] buttons or whatever, but what you're looking to do here is to disable the printer driver's color management logic.  In other words, if you can find a color-management / ICC profile handling section, set it to "no color management" or equivalent.  OK back out to Photoshop's print dialog, then press [Print].
    The key here is that if Photoshop manages the color transforms, the printer driver should not be set to do so - or vice versa.
    If you're presented with the printer driver's dialog again, double check that the settings you chose above are still set, for good measure, and try a test print.
    -Noel

  • Is there a way to make the box for caption preset larger?

    When I type a caption preset in lightroom I would like the box where the type goes larger so I could see the whole caption, is there a way to do this?
    Thanks.

    http://regex.info/Lightroom/Config/

  • In the bookmarks toolbar, I want ONLY the icons, not words -- how do I do it?

    Once upon a time, there was a way to dump the description of the items in the bookmarks toolbar and leave ONLY the icons, but, when the mouse scrolls over them, the descriptors pup on.
    It is that way on my laptop, but, after a wipe are re-install of my xP, I cannot get my bookmark toolbar to do that.
    How is it done ?
    thanx

    Another extension is Incredible Bookmarks: https://addons.mozilla.org/firefox/addon/50722

  • I am unable to change colors. The boxes stay grey. Can anyone help?

    When entering text on a photo I can't change colors. I am unable to change colors with the bucket or brush. Any ideas?

    You can try resetting your iPhone. Make sure to make a backup of your data.

  • I bought a macbook pro in boston on October 25th, can I exchange it for the Macbook pro with retina. It has not been turned on - only the box has been opened.

    I've never turned on my new macbook pro but I want to exchange it for the new Macbook pro with retina display. Is this possible. I have the receipt. Box was opened.

    No - you have 14 days from date of purchase to exchange or get a refund. That should have been on your receipt somewhere.
    I'm afraid that you're just going to have to sell your computer, somehow, and put that money towards a new one.
    Why in the world did you buy what you didn't want?
    Clinton

  • Nikon D700 RAW import shows only dotted boxes, not thumbnails

    I am unable to see thumbnails of the RAW images on the memory card of my Nikon D700 when I import images into Aperture.
    What I see during an import is a series of frames with a dashed or dotted border that represent the correct number of images on the card. I can select these boxes, but the selection is not indicated with any kind of highlighting, just with a number displayed on the import button. I can, however, import my selection, and once the images are imported, I can see thumbnails in the library.
    If I shoot JPG images this is not a problem, only with the Nikon NEF files. I am using the Lossless Compressed format plus a normal quality jpg.
    My look at other threads shows some people with D200s have been able to solve this, and they have mentioned fiddling with a USB setting on their camera. However, the D700 has no such setting.
    Since Apple now supports the D700 in RAW mode, how can I get the thumbnails of the images in the camera's card to show up on screen during an import? It is a hassle not to be able to see which images I'm importing while I'm importing them.
    Thanks!

    Ibartram,
    I am having the EXACT same problem as you. I have the new Olympus E520— which like the D700, was not suported by Aperutre until the recent upgrade. Like you I was happy to finally have my new camera supported by Aperture and like you, I cannot see thumbnails of my RAW images on my memory card when using the import function in Aperture.
    As you have said: Everything is fine AFTER I import, but prior to import, when reading off my card, only empty dotted boxes.
    Also, I cannot see the images in the finder either. Are you having this problem as well?
    Do you connect your camera directly to Aperture or do you use a card reader? I use a card reader.
    Please let me know if you find a solution to this problem. Or if there is any other information I can give you. It's not just a Nikon problem or a D700 problem. After reading your post my guess is that it's a problem with newer, previously unsupported cameras.
    It's no good not being able to see which images I'm importing until after they're imported.

  • I would like the URLBAR to display ONLY THE URL; NOT the TITLE of the webpage with the URL underneath..

    SIMPLE: I want the urlbar to display only URLs, not TITLES. E.g.,
    http://www.dddddd.
    http://www.ccccc
    http://www
    and so on. Like it did in Firefox 2.x

    You want to turn off the "Smart Location Bar" autocomplete feature?
    See [[Location bar autocomplete]] (under Controlling behavior)

Maybe you are looking for

  • Why Should I Use Automator?

    I've had my MacBook for six days now, and am beginning to dig a little deeper into everything it offers. Obviously, I've found Automator. I'm a student and am lost as to exactly what the real purpose of this "Automator" is. Thank you in advance! Here

  • Photos take forever to view on ipod

    Why do the photos that I have added to my ipod take forever to load and view on my ipod. My friend has a 4th gen ipod photo and they appear right away. I want to show pictures to my family and friends but who wants to wait 15 minutes to be able to se

  • InDesign CC 2014, no composite font editor menu

    I installed the new verson of InDesign (InDesign cc 2014 release, KOREAN) yesterday. and composite font editor menu is missing. Is this just a kind of BUG? or there is something I can do to fix this?

  • Font appears too large

    Hi, I'm running Photoshop CS3 Mac. Text size that would be 9 or 10 point in other apps is only 3 or 4pt in PS. My image size is 600px x 600px, 300 dpi. I think that the font is losing clarity because I have it set to such a low number. Why is this ha

  • Pacman not detecting core and extra repositories

    Yesterday, I installed yaourt and pacman-color. After installing these, my pacman doesnot find most of the packages(cups,firefox,zip,unzip,unrar). Specifically, when I search using pacman "pacman -Ss" I get results only from the community and not fro