Keyword input box with white border ??

when this border appears I'm unable to edit as usual !?  have to close LR and the restart ! 
also get a box around Title and Caption at times !?
What is the point of this and what am I missing ??
Stu

I've found the sequence that causes it !! 
Select an image without keywords,  select Keywording and main box (large) and it turns white !
Now select Metadata and the Title box (also turns white) !
Now select Keywords again and Hey Presto !!  White line around box and limited editing, if any !?
(If u now go back to Metadata, you'll see that's white lined too )
NOW !!  what's the cure !?  Come on Adobe !  U must have sorted it by now !? 
Stu

Similar Messages

  • HT2506 OS X Preview: Insert a white box with no border?

    Hello, I have a PDF document in Preview (OS X Lion), and I'm trying to insert a "whiteout" area--basically a white box with no border or shadow. However, no matter what I do, I can't seem to create an annotation rectangle without some kind of border showing up. Actually, it looks more like a shadow than a border. Am I missing something? Is this possible with Preview?
    Thanks!

    This drives everybody nuts, and Apple does nothing about it.  My guess is there's somebody with a patent -maybe Adobe- forcing them to keep the damned shadows.
    The only decent solution seems to be the free app Skitch.  Reveiws are 100% negative on the latest version, which has been stripped of features (Adobe, again?), but you can still get the older versions at http://www.oldapps.com/mac/skitch_for_mac.php  I use version 1.0.12, which works with Mountain Lion.
    There's also GIMP, which is a powerful program but has a learning curve like the Matterhorn.

  • Clear an input box with failed validation status

    My jdev version is 11.1.1.5.0
    I have an input box with certain validation.If validation fails it doesnt clear its contents on button click.
    My button click code is :
    propButton.setValue(null);
    where propButton is binding name to button.

    Hi Lovin,
    How are you actually validating? Is it by <f:Validator> Tag, or Validation in the Button click code?
    If its in button click code: Refreshing programmatically in the button code, will ensure that the value is cleared in the inputTextBox and then refreshed.
    Refreshing programmatically:
    First, create a binding to the InputText Box in a managed bean, using the Binding attribute.
    binding="#{managedBeanName.inputTextBox}"
    public void clickButton(ActionEvent ae){
    this.getInputTextBox().setValue(null);
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.getInputTextBox());
    Thanks,
    Pandu

  • Black window with white border and cursor location - how do I get rid of it?

    I must have inadvertently hit some key or combo of keys and now I have an oblong black window with white border that is annoyingly telling me what the cursor is over and where I can go/ what I can do from there.
    How did I manage to turn this on and more important, how can I turn it off?
    Thanks.

    oops, never mind, found it - VoiceOver .... solved

  • What is causing a green box with white checkmark inside it, to appear in my images?

    What is causing a green box with white checkmark inside it, to appear in my images?

    Boot to safe mode using the shift key. But it probably will not work. You need to boot into recovery mode.
    Check this article out:
    http://support.apple.com/kb/ts1440

  • Import bitmaps with lingo (importfileinto) WITH white Border

    how can i import jpgs with lingo (importfileinto) WITH white Border?

    You can use an options list with importFileInto, and set a #trimWhiteSpace property with a value of 0;
    vMember = new(#bitmap)
    vOptions = [#trimWhiteSpace: 0]
    vJPG = "Path:To:Your:test.jpg"
    vMember.importFileInto(vJPG, vOptions)

  • How do I create an input box with a cancel button that will end a loop in my script?

    I have been working on a script for my client and I am having trouble getting it to work properly. I stole most of the code from the PowerShell Tip of the Week "Creating a Custom Input Box". I also took someone's code for the Show-MessageBox function.
    I have slightly modified the original code with two parameters and an additional text box. The first field is for an e-mail address and the second is for an employee number.
    I need to know how I can get a Do Until loop to recognize when the cancel button is pushed and break the loop and effectively end the script. The work happens at the end but perhaps I need something added/modified in the InputBox function.
    I want the script to check to see if anything has been entered in the second text box. If empty it displays a message and calls the InputBox function again. Then if there is something I use elseif to check to see if it matches my RegEx (digits only). If
    it doesn't match it will loop and call the InputBox function again.
    This all works fine. The problem I am having is that I cannot cancel out of the form. I'd like the loop to continue until the second box matches my RegEx or Cancel is clicked. Clicking cancel doesn't break the loop. I need to know how I can stop the loop
    when cancel is pressed. I've seen Stack "Overflow: PowerShell Cancel Button Stop Script" but I don't think this will work in a loop.
    Any help would be awesome. As a note, I DO NOT want to use the VB Interaction stuff.
    function InputBox {
    param ($Name,$EN)
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    $objForm = New-Object System.Windows.Forms.Form
    $objForm.Text = "Data Entry Form"
    $objForm.Size = New-Object System.Drawing.Size(300,200)
    $objForm.StartPosition = "CenterScreen"
    $objForm.KeyPreview = $True
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Enter")
    {$x=$objTextBox.Text;$objForm.Close()}})
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Escape")
    {$objForm.Close()}})
    $OKButton = New-Object System.Windows.Forms.Button
    $OKButton.Location = New-Object System.Drawing.Size(75,120)
    $OKButton.Size = New-Object System.Drawing.Size(75,23)
    $OKButton.Text = "OK"
    $OKButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text = "Cancel"
    $CancelButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($CancelButton)
    $objLabel = New-Object System.Windows.Forms.Label
    $objLabel.Location = New-Object System.Drawing.Size(10,20)
    $objLabel.Size = New-Object System.Drawing.Size(280,20)
    $objLabel.Text = "Employee Email Address:"
    $objForm.Controls.Add($objLabel)
    $objTextBox = New-Object System.Windows.Forms.TextBox
    $objTextBox.Location = New-Object System.Drawing.Size(10,40)
    $objTextBox.Size = New-Object System.Drawing.Size(260,20)
    if ($Name) {
    $objTextBox.Text = $Name
    else {
    $objTextBox.Text = "@domain.com"
    $objLabel2 = New-Object System.Windows.Forms.Label
    $objLabel2.Location = New-Object System.Drawing.Size(10,70)
    $objLabel2.Size = New-Object System.Drawing.Size(280,20)
    $objLabel2.Text = "Employee Number:"
    $objForm.Controls.Add($objLabel2)
    $objTextBox2 = New-Object System.Windows.Forms.TextBox
    $objTextBox2.Location = New-Object System.Drawing.Size(10,90)
    $objTextBox2.Size = New-Object System.Drawing.Size(260,20)
    $objForm.Controls.Add($objTextBox)
    $objForm.Controls.Add($objTextBox2)
    $objForm.Topmost = $True
    $objForm.Add_Shown({$objForm.Activate()})
    [void] $objForm.ShowDialog()
    $Script:ButtonName = $objTextBox.Text
    $script:ButtonEN =$objTextBox2.Text
    $ButtonName; $ButtonEN
    Function Show-MessageBox{
    Param(
    [Parameter(Mandatory=$True)][Alias('M')][String]$Msg,
    [Parameter(Mandatory=$False)][Alias('T')][String]$Title = "",
    [Parameter(Mandatory=$False)][Alias('OC')][Switch]$OkCancel,
    [Parameter(Mandatory=$False)][Alias('OCI')][Switch]$AbortRetryIgnore,
    [Parameter(Mandatory=$False)][Alias('YNC')][Switch]$YesNoCancel,
    [Parameter(Mandatory=$False)][Alias('YN')][Switch]$YesNo,
    [Parameter(Mandatory=$False)][Alias('RC')][Switch]$RetryCancel,
    [Parameter(Mandatory=$False)][Alias('C')][Switch]$Critical,
    [Parameter(Mandatory=$False)][Alias('Q')][Switch]$Question,
    [Parameter(Mandatory=$False)][Alias('W')][Switch]$Warning,
    [Parameter(Mandatory=$False)][Alias('I')][Switch]$Informational)
    #Set Message Box Style
    IF($OkCancel){$Type = 1}
    Elseif($AbortRetryIgnore){$Type = 2}
    Elseif($YesNoCancel){$Type = 3}
    Elseif($YesNo){$Type = 4}
    Elseif($RetryCancel){$Type = 5}
    Else{$Type = 0}
    #Set Message box Icon
    If($Critical){$Icon = 16}
    ElseIf($Question){$Icon = 32}
    Elseif($Warning){$Icon = 48}
    Elseif($Informational){$Icon = 64}
    Else{$Icon = 0}
    #Loads the WinForm Assembly, Out-Null hides the message while loading.
    [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
    #Display the message with input
    $Answer = [System.Windows.Forms.MessageBox]::Show($MSG , $TITLE, $Type, $Icon)
    #Return Answer
    Return $Answer
    $num = "^\d+$"
    do {
    if (!($ButtonEN)) {
    Show-MessageBox -Msg "You must enter a numeric value for the employee number." -Title "Employee Number Missing" -Critical
    InputBox -Name $ButtonName
    elseif ($ButtonEN -notmatch $num) {
    Show-MessageBox -Msg "The employee number must contain numbers only!" -Title "Non-numerical characters found" -Critical
    InputBox -Name $ButtonName
    until ( ($ButtonEN -match $num) -or (<this is where I want to be able to use the cancel button>)

    Here is a simple validation method.
    function New-InputBox{
    param(
    $EmailAddress='',
    $EmployeeNumber=''
    Add-Type -AssemblyName System.Windows.Forms
    $Form=New-Object System.Windows.Forms.Form
    $Form.Text='Data Entry Form'
    $Form.Size='300,200'
    $Form.StartPosition='CenterScreen'
    $OKButton=New-Object System.Windows.Forms.Button
    $OKButton.Location='75,120'
    $OKButton.Size='75,23'
    $OKButton.Text='OK'
    $OKButton.DialogResult='Ok'
    $OKButton.CausesValidation=$true
    $Form.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text ='Cancel'
    $CancelButton.DialogResult='Cancel'
    $CancelButton.CausesValidation=$false
    $Form.Controls.Add($CancelButton)
    $Label1=New-Object System.Windows.Forms.Label
    $Label1.Location='10,20'
    $Label1.Size='280,20'
    $Label1.Text='Employee Email Address:'
    $Form.Controls.Add($Label1)
    $TextBox1=New-Object System.Windows.Forms.TextBox
    $TextBox1.Location='10,40'
    $TextBox1.Size='260,20'
    $textbox1.Name='EmailAddress'
    $textbox1.Text=$EmailAddress
    $Form.Controls.Add($textbox1)
    $Label2=New-Object System.Windows.Forms.Label
    $Label2.Location='10,70'
    $Label2.Size='280,20'
    $Label2.Text='Employee Number:'
    $Form.Controls.Add($Label2)
    $TextBox2=New-Object System.Windows.Forms.TextBox
    $TextBox2.Location='10,90'
    $TextBox2.Size='260,20'
    $TextBox2.Name='EmployeeNumber'
    $TextBox2.Text=$EmployeeNumber
    $Form.Controls.Add($TextBox2)
    $Form.AcceptButton=$OKButton
    $Form.CancelButton=$CancelButton
    $Form.Topmost = $True
    $form1_FormClosing=[System.Windows.Forms.FormClosingEventHandler]{
    if($Form.DialogResult -eq 'OK'){
    if($textbox1.Text -eq ''){
    [void][System.Windows.Forms.MessageBox]::Show('please enter an email address','Validation Error')
    $_.Cancel=$true
    }else{
    # Check empno is all digits
    if("$($TextBox2.Text)" -notmatch '^\d+$'){
    [void][System.Windows.Forms.MessageBox]::Show('please enter a number "999999"','Validation Error')
    $_.Cancel=$true
    $form.add_FormClosing($form1_FormClosing)
    $Form.Add_Shown({$Form.Activate()})
    if($Form.ShowDialog() -eq 'Ok'){
    # return the form contents
    $Form
    if($f=New-InputBox -EmailAddress [email protected]){
    'Email is:{0} for Employee:{1}' -f $f.Controls['EmailAddress'].Text,$f.Controls['EmployeeNumber'].Text
    }else{
    Write-Host 'From cancelled!' -ForegroundColor red
    ¯\_(ツ)_/¯

  • Problem with white border around images

    Hey guys,
    I'm new to the creative suite and have just finished running through all of the video tutorials, etc. I'm having a small problem which can be seen in the sample site I'm fooling around with here:
    http://www.andrewedunn.com/gsd/
    I'd like to get rid of the small white border around the "GS" logo. It is an illustrator document.
    Basically I put the letters in place, converted them to paths (so I can resize it) and dropped it in my GoLive document as a smart object.
    A google such suggested rasterizing, but I couldn't get it to work after fooling with it a little bit.
    Further, if I wanted to add a drop shadow to it, how can I do it so that it is transparent on top of the background images in golive? The one time I tried it, the drop shadow was placed on top of a white background.
    Any suggestions would be appreciated!

    Are your background images always going to be displayed left-aligned on a black background and always the same size, so that the left half of the logo will always be over the photo and the right half will always be over the black? Or will the size or placement of the photos vary?
    Are all of the photographs in approximately the same moderate tonal range, or will some be bright and some dark?
    If the background will be consistently as you show it, you should be able to anti-alias your logo against a medium gray on the left and black on the right for acceptable results. If the background is more varied, you are not going to get good results with either GIF or JPG format.
    See this related thread:
    http://www.adobeforums.com/cgi-bin/webx/.3bc38b6e/3
    > Further, if I wanted to add a drop shadow to it, how can I do it so that it is transparent on top of the background images in golive?
    Only by exporting as a transparent PNG, but then older browers won't display it properly.
    If you are really needing to have a logo that casts transparent drop shadows on top of a wide variety of images, you might consider going the Flash route, even though you aren't planning animation. Flash has very good transparency handling, and there are Flash player plugins that are compatible with browsers that won't display PNG images.

  • Blue Box with White Question Mark

    All of a sudden, I started receiving the Blue Box with a White Question Mark in my Safari Internet. I test the site with two other browsers and the behavior was the same. I have not plug-ins recently installed and did clean my cache. Any suggestions? Running Mavericks. I ran an Adobe Flash update yesterday, but the behavior is affected today. I reset Safar after runnign Disk Utility<Repair Disk Permissions.

    Where precisely do you see the "?"

  • SWF file with white border

    Hi
    I'm trying to import an SWF file (with associated movie and captioning) into Acrobat Pro 9.
    I'm placing it using a URL from my server.
    The video places fine but I'm getting a white border top and bottom of the file. This is a problem as there is a coloured background to the Acrobat file I'm trying to place the movie.
    The white border doesn't exist when I view the file in Flash.
    Any help would be much appreciated.
    Thanks
    Andy

    Andy:
    Have you checked the properties of the imported file. Control-Click on the file with the Video Tool and a fly-out menu will appear where you can bring up it's properties. You should be able to see if a border is set there.

  • Images on certain websites come up blank with little blue box with white "?" inside

    I own a MacBook Pro (MAC OS X 10.6.8) that I purchased in 2011. I have never had a single problem before, but here very recently youtube, my school (FSU) website, and a few other random websites will not load images. At all. They just show a little blue box with a white question mark inside. I have tried emptying the catch, resetting safari, nothing works. Help? I need to be able to see the images on my.fsu.edu it's really important!

    See this: <br />
    https://support.mozilla.com/en-US/kb/Images+or+animations+do+not+show

  • Clear Box with White Outline?

    On my MacBook Pro, a clear/transparent box will occasionaly appear on top of all of my other applications and prevents me from doing anything. I've never seen this before and I can't seem to get rid of it without restarting my computer. Is this something in Universal Access or some other program that someone is familiar with. I have zoom and voice over both off and it still happens. Could it be something from the new trackpad? I can move the box around but it prevents me from using anything that it is behind. How do it get this off and prevent it from happening. Oh, and it has a white box around it.
    Message was edited by: okboy3lb

    I suspect that the problem is that the Drag Lock is stuck on.
    Try freeing it by double-clicking a few times on mouse or trackpad. If that fails, try clearing the checkbox in the Mouse or Trackpad pane of System Preferences.
    If that doesn't work, then try trashing the file
    ~/Library/Preferences/com.apple.systempreferences.plist and/or ~/Library/Preferences/com.apple.driver.AppleBluetoothMultitouch.trackpad.plist
    Then log out and back in again, or restart.
    Good luck,
    Archie

  • Problem with white border around flash

    if you go to www.brokenflash.com in a firefox browser and
    click on any of the three buttons in the top right, or any of the
    buttons at the bottom of the page, you get a white box once you
    click. It still navigates on a single click, it just shows up right
    after you click. I don't seem to have the problem in IE or Google
    Chrome. Can anyone tell me how to remedy this? I did a search on
    the forum, and so far, I haven't found a remedy. I'm going to
    continue to look through the search items, but this is my first
    website, so I am still fairly new at this(just a warning in case
    you planned on using highly technical jargon).

    > if you go to www.brokenflash.com and click on any of the
    three buttons in the
    > top right, or any of the buttons at the bottom of the
    page, you get a white box
    > once you click. Can anyone tell me how to remedy this?
    I am not sure I quite follow you. You don't -- by any chance
    -- mean the
    mouse over state (shown when the mouse pointer is above the
    button) of
    those buttons, do you? I see no white boxes having clicked on
    any of the
    buttons (because the site loads a different page then).
    Wait -- are you using Internet Explorer to view web pages?
    > This is my first
    > website, so I am still fairly new at this(just a warning
    in case you planned on
    > using highly technical jargon).
    Mentioning one's experience level within a forum posting is
    usually a
    good idea and helps others to help you.
    Later
    Christian

  • Search input box with suggestions

    Hi,
    I integrate search plugin into the MOSS with SAP Portal and now i want to do Enhancement to show suggested keywords when end users are typing a search query, can any body guide me in this regard and send some documents.

    Hello there,
    If you are planning to user Java webdynpro, there is standard control called EVS(Extended Value Selector)
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a0ab331b-97c6-2a10-f982-c9f972c34e51
    HTH
    Vivek

  • How to use input box LOV in query panel (search region)

    Hi,
    We are having JDeveloper version 11.1.2.4.0
    In one of the JSF page, we are showing some data (absences).
    Requirement is to add search region at the top so that user can filter the data, based on search parameters like Business Group, Job etc.
    The search parameters are inter-dependent e.g. Job is dependent on Business Group. So when user selects some particular Business Group, Job search field should show jobs for that Business Group only.
    This works fine we use Choice List for both Business Group and Job.
    However since there are huge number of jobs, Job choice list makes page rendering very slow.
    So we tried to use Input box with LOV for Job.
    But now when job is selected in the LOV popup and returned to main page, job search field shows job id instead of job name.
    Please note that our base VO (AbsencesVO) contains JobId attribute. We have added List of Values on JobId, which fetches Job Name through JobVO1 view accessor.
    How to make Job LOV field show selected Job Name instead of ID? Kindly advise.
    Thanks,
    Vivek

    Thanks Timo/Bangaram, for prompt replies
    Timo, the link mentioned by you talks about showing IDs (DepartmentId, ManagerId etc.) in the search region. I need to show names in the form of Input box LOV.
    Bangaram, as per your suggestion I tried using transient JobName attribute. However now when I select any value in the Job LOV popup and return to main page, it shows first Job Name in the Job Name search field.
    Also when I click 'Search' button in Search panel, it shows error - Attempt to set a parameter name that does not occur in the SQL: BindJobName
    Please note that I have added both JobName and JobId in the List configuration as you suggested.
    In View criteria, I have removed previous item (condition) on JobId and added condition on JobName.(This is required because JobId condition shows JobId search field)
    I also tried making JobName dependent on JobId..still same behaviour.
    Kindly advise.
    Thanks,
    Vivek

Maybe you are looking for