Software labels on display

Hi.
I've got an irritating issue with my Macbook, which I presume is intended by the manufacturers:
When I open a program, say Firefox, or Adobe software, I get a kind of "label" come up in the middle of the screen, with a large version of the software icon and a title bar with the three traffic light buttons in the top corner.
It seems to serve no purpose, but it obscures part of the desktop. Sometimes I notice there's a build up of them, one on top of another, so just to see my desktop icons I have to go - close - close - close - close - close - ... you get the idea
Any way to stop these appearing?
Many thanks for any suggestions (or can someone just tell me what they're called so I can research further!).

Ah, alrighty.
I see the Firefox volume in the lower-right corner of your desktop--is that what you're clicking on to open Firefox? If so, that's the mounted disk image (a file ending in .dmb), and the cause of that window.
You need to drag the Firefox icon from the big folder you're seeing into your Applications folder on your Mac, then run Firefox from the Applications folder. Do the same for any other application that is behaving in a similar way.
~Lyssa

Similar Messages

  • ADF 11g: VO attribute labels not displayed in deployed application

    We are using JDev 11.1.1.2.0.
    In our project we have four ViewController projects, three of which are included in the "main" view project as ADF libraries. At least one of the library projects uses attribute labels defined in view objects for the UI, for instance in a simple search field dropdown list for selecting the search attribute. When the application is run on the integrated WLS or deployed to a local WLS instance, the labels are displayed correctly as entered to the view objects:
    http://img532.imageshack.us/img532/6750/adflabelscorrect.png
    When we deploy the application to the remote WLS server, however, some of these labels stop working and instead the search dropdown list displays the default values (column names) for attribute labels:
    http://img532.imageshack.us/img532/3811/adflabelsincorrect.png
    We have checked the deployment EAR file and confirmed that the model project's message bundle does include the labels which are missing from the UI:
    ses.model.vo.TukihakemuksetView.EsittelijaNumero_LABEL=Esittelij\u00E4
    ses.model.vo.TukihakemuksetView.RahaNumero_LABEL=Rahanl\u00E4hde
    ses.model.vo.TukihakemuksetView.HankNumero_LABEL=HankeThis problem doesn't affect all the labels though, as most of the values are correctly retrieved from the message bundle. It seems that the missing labels are at the bottom of the message bundle file, ie. the latest additions. For some reason the deployed version is not picking these up.
    The remote WLS is the same version as in the dev environment (10.3.2.0).
    Any ideas what might be the problem?
    Thanks,
    Joonas

    Replying to myself here, this is most likely related to the following Metalink bug report:
    Bug 9484924: RESOURCE BUNDLE IS NOT RELOADED AFTER STOP/START OF AN ADF APPLICATION
    No workaround available, though, except restarting managed server after bundle modifications..

  • Immediately after updating Acrobat Pro XI to the latest version, the software no longer displays imags in pdf docs.

    Immediately after updating Acrobat Pro XI to the latest version, the software no longer displays images in pdf docs.  All the boxes where images are supposed to be are solid grey.  Old documents that worked are no longer displayed correctly and new documents I make do not display images.  All grey boxes.  Worked fine before the update.  Suggestions?

    Hi precious_star,
    Could you please let me know what version of OS are you using.
    Open Acrobat and go to "Edit > Preferences > Page Display" and check whether 'Show large images' option is checked.
    Is this issue specific for one PDF?
    If possible, please share the file with me via email so that I can also check at my end.
    I have sent you a message with my contact id details.
    Hope to get your response.
    Regards,
    Anubha

  • Eexclude Measure Labels from display in 11g

    In 11g:
    When creating a chart (I just upgrade the report from 10g),
    the Measure Labels appears on legend in addition to the series name.
    I could not find way to exclude it from the chart.
    If I un check the legend, I miss also the series names.
    If I put it on section header I have problem in case of chart, which is part of pivot table view with sections - it is extra to the section column name.
    Any ideas how to exclude the measure labels from display?

    Bump.
    While not idea by any stretch of the imagination, you can clean it up a bit by dragging 'Measure Labels' into the chart type areas as shown here --> http://imgur.com/UJmHT. It is not ideal, however. Oracle really needs to let you drag the measure labels to the 'Excluded' section.
    Edited by: Legionarius on Sep 15, 2011 3:56 PM
    Edited by: Legionarius on Sep 15, 2011 3:57 PM

  • The safari software will not display images (pictures).  I have done the "reset" but still no help.  What should i try next?

    the safari software will not display images (pictures).  I have done the "reset" but still no help.  What should i try next?

        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop and make sure that"Disable Images" is not enabled in the dropdown.

  • Can't get field labels to display above for multiple fields in one cell

    I've tried searching for how to fix this to no avail. I'm new to Apex and I'm trying to get 5 fields on one line with labels above each: salutation, first name, middle initial, last name and title. I've set New Line and New Field to No for all but the first item. With the labels for each field set to Right, everything displays on one line. With the labels set to Above, fields are displayed on separate lines and I'm not sure why. There are other fields on the form as well but they are each on their own line. Any help would be greatly appreciated. My Apex version is 4.1.1.00.23. I'm running the standalone Apex Listener (current version from 7/12) with a 10g database.
    Thanks

    Hi,
    have you tried to set New Field to Yes? If that doesn't work, a test case on apex.oracle.com would be great. That's the easiest way to show you how it works.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • DateTimeAxis - set Label to display Date + Time

    Is there a way in flex 3 chart component to display both the date and time (label) using horizontal DateTimeAxis?
    Currently the DateTimeAxis element has an attribute "dataunits" which allows to set the value to any of "milliseconds|seconds|minutes|hours|days|weeks|months|years" but I want to display the label as "2009/09/15 06:00:00" which includes the day and the time too.
    Here is the sample that i'm using
    [Bindable]
    public var deck:ArrayCollection = new ArrayCollection([
        {date:"2009-09-15 06:00:00", close:42.71},
        {date:"2009-09-16 06:15:00", close:42.99}
    public function myParseFunction(s:String):Date {
       var sDate = s.substring(0,s.indexOf(" "));
       var sTime = s.substring(s.indexOf(" "));
       var aDate = sDate.split("-");
       var aTime = sTime.split(":");
       return new Date(aDate[0],(aDate[1]*1-1),aDate[2],aTime[0],aTime[1],aTime[2],0);

    You can set that via the Options page (Gear icon) in the Web Console (Firefox/Tools > Web Developer).
    This applies to the Browser console and the Web console.
    *https://developer.mozilla.org/Tools/Web_Console
    *https://developer.mozilla.org/Tools/Tools_Toolbox#Settings

  • Updated software - No screen Display

    Ipod 30g 5th Gen
    I recently bought a new PC, updated my sofware to 7.11 . after installation I updated the Ipod softeware - Ever since then I have NO screen display, My ipod was not dropped , kicked or abused !!!
    After following the usual steps as posted all over the website ( with no success ) I tried to reinstall my original software with no success ( somehow Itunes 6 recognises that there was 7 installed and will not load )
    When I restore the ipod software the screen works fine during installation then goes blank after installation.
    The sound , clicker etc all work - just no screen display
    CAN ANYONE HELP ME BEFORE I KICK THE DOG !

    try to re-install power management, update graphic card drivers and flash bios update if there's new available.
    http://consumersupport.lenovo.com/uk/en/DriversDow​nloads/drivers_list.aspx?CategoryID=42

  • Printer Software doesn't display when installing in Win 8

    Hello
    I have a very frustrating issue which means I can not install the printer software for my HP Plus B209a Printer.
    When I try and run the installer for the full package installation it extracts the files as normal to a temp location.
    Then the HP Installer (32bit) runs but in the background and does not display anything on screen. I just uses 15% CPU in task manager but no installation windows?
    To give some background to this issue
    (The first time I ran the installer software it did load but hanged on the detecting printer stage 1. So I restarted the laptop and tried to run again but this happened.)
    I have updated windows to 8.1 and all updates are installed. I have tried disabling all startup programs etc.. to no avail.
    Please could someone help with this issue as I can not scan with the printer until I can get this installed.
    Kind Regards

    Personnel Message sent about Scrubber
    JonW
    I work for HP

  • APEX Flash Chart labels not displaying

    Hi there
    I am trying to create a 2D Stacked Column Flash chart, it is month based and for each month I have 3 Columns
    So the query for the series returns a result set like so..
    'Jan-11_Col1',10
    'Jan-11_Col2',20
    'Jan-11_Col3',30
    'Feb-11_Col1',10
    'Feb-11_Col2',20
    'Feb-11_Col3',45
    'Dec-11_Col1',20
    'Dec-11_Col2',80
    'Dec-11_Col3',100
    I want to display a chart where the first column of the result set is my x-axis and the second column is my y-axis. I have have created the chart but I find I don't get a label for every columm on my x-axis, I only get one for every third column, and I can't see a way of doing it, can anybody tell me how?
    thanks... Anil
    ps I am using APEX 4

    Hi Anil,
    I have seen similar behaviors in 2D Column Charts. What I have found is that most often, for me, the issue has been that the chart is not wide enough. This is not specifically an APEX issue but rather a Flash issue. When the chart exceeds the dimensions that you specify for the chart, the charting engine must squish some part of the chart. Most often, the labels are what get removed, in my experience.
    There are options to investigate this. You can make the chart wider in APEX and see if the problem goes away. You could rotate your X-Axis text by 45 degrees or so to see if they all appear. I have also seen the labels appear when you use your browser to zoom feature. This is a Flash behavior as well. If you zoom your browser to 200%, you may see more of your labels.
    Finally, it would appear from your sample data set, that you may not be getting stacked column. Is that the case? If you are getting a single column for each record in your data set, then you probably have 36 columns on your chart which is a lot. You will need to make the chart very wide in APEX and possibly rotate the labels.
    If you need help with anything else, just ask.
    Austin

  • Software Labeled Macbook compatable with iMac G5?

    I recently purchased a used iMac G5 ppc and it works great! I Love it...but I just noticed that the software package I recieved with it is labeled Macbook. It should still work on the iMac right?
    Just curious. Thanks

    Joaquim Lopes wrote:
    There are two flavours of apps for the Mac: the ones that are labeled just Mac (which are for PowerPCs Macs like yours but will run under a piece of software called Rosetta on an Intel Mac - emulation) and the ones labeled Universal (which will run natively under both architectures).
    Shouldn't that be 3 flavours? PPC, Universal and Intel Only.

  • Template "No Label" does display the label

    I do not want a label for an item, so I set the label template to "No Label" but when the page is run the label is present. This is obviously an error. I also do not want a blank label occupying a table cell but the item to occupy the next available table cell. Example want to to prompt the user to enter a measurement and measurement unit e.g. Temperature and Temperature Unit
    The first item is a Text Field item has Label "Temperature:" and template "Optional Label with Help"
    The second item is a Select List which I want displayed to the right of the Temperature field item and the label "Temperature Unit" is not to be used and I want the item in the next available HTML table cell to the right of the Temperature item.
    The "No Label" template does not appear to work as it does display the "Temperature Unit" label in the cell to the right of the Temperature field item. I know I can blank out the "Temperature Unit" label but then I have a blank cell between the temperature value and the temperature unit.
    Thanks

    I agree... I think that the class t16NoLabel (in my case) is missing display:none or something like that.
    In any case, the label will still occupy a table cell, even if not displayed. To do what you want I usually put the label above the fields, so each field is displayed next to each other.
    Or you can set the property Begin On New Field = NO for the measurement unit field.

  • Too bad software doesn't display all Blackberry functions on PC in real time

    Years ago when I bought my first Blackberry, when I heard that it came with PC software, I imagined that when you conntected your Blackberry to your PC via the USB cable, you would be able to view and edit the content from your Blackberry from your PC.  Basically your PC screen would serve as the screen and the PC keyboard to serve as the blackberry keyboard.  That would have been so cool, I really hope in the future they could offer such an option with the PC software other than just checking for updates, making backups, and transferring files.

    The rate at which technology is advancing this might be reality in very near future. But I'm not sure which vendor is going to the first to replicated that technology!!!
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Published software simulation not displaying correctly when published

    Hello,
    When viewing a Captivate 6 software simulation either through the Preview mode or when published, screens will 'break up' at different points - part of the previous screen will stay in view when it moves to the next screen. This doesn't happen for the first couple of times it is viewed, which is a worry as you never know who/when it is going to happen.
    Once the projects is copied over to a new blank project it will be fine for a few views and then do the same again - it is not always at the same place.
    Does anyone know what may be causing this?
    Thanks,

    You might try de-selecting the Advanced Project Compression option in the preferences:

  • Software and page display

    When my mini is hooked up to my PC and I click on the mini's icon, it no longer displays my song list.
    I've tried everything I could think of to find it.
    Which ain't much. HELP

    Click on the disclosure triangle to the left of the iPod. Now do you see the music?

Maybe you are looking for

  • VMware Fusion ...

    SInce upgrading to OS X Lion my version of VMware Fusion is pretty much unusable. I am currently on Fusion 3.13. Does anyone have any tips on how to get my XP or Win7 VMs to run normally? It is so slow that the entire machine is rendered unusable. I

  • CJE0 - Adding Characteristics - 'EXIT_SAPLPS01_002'

    i am trying to add a characteristics in the hierarchy report. tcode: cje0 in this tcode, there are lot of reports, we can add the characteristics/selections and run the report. the req is to add a characteristics in the hierarchy report, which will u

  • Bullets showing up in TOC

    I am using FM8.0p277, I created an unstructured book, and added the TOC. When I look at the TOC, there seems to be bullets showing up in front of some of the heading2TOC and heading3TOC lines - not all of them, though. I have looked at the reference

  • Premiere Elements 8 "Could not connect to remote server" when sharing to YouTube

    I'm trying to share my Adobe Premiere Elements 8 video to YouTube through the task panel, but I get a "Could not connect to remote server" message. My computer is connected to the Internet. I notice at the bottom of the message there is "Open the Ope

  • Updates wont install

    updates won't install