Text stuck on desktop

Hello:
After having been on the website www.EMUEagleOne.com, the text "Welcome to EMUEagleOne.com" got stuck on my desktop. It shows on top of any window that is open if that windows is moved "over" the text location (in fact, the text is over the window). Being rather new to iMAc, I have no idea how this happened.
Would anyone know what I can do to try to get rid of this text? [Mountain Lion]
Thanks/Hans L

On top, you can see the text "Welcome to EMUEagleOne.com" stuck on the screen (wallpaper).
In the middle, you can see Safari in default position, and how the text "Welcome to EMUEagleOne.com" covers the address field.
At the bottom, you can see another screen (Help screen, arbitrarily chosen), which shows how the text "Welcome to EMUEagleOne.com" shows up on top of that screen.
What is a greenhorn to do? :-)
Hans L

Similar Messages

  • Items get stuck between desktops

    Does anyone else have a problem with items getting 'stuck' between desktops so that you can see them as you move between desktops, but can't access them?
    I created an e-mail by dragging a photo to the Mail icon in the dock, but nothing happened so I repeated the exercise. Still nothing happened. I then created the e-mail by copying and pasting the photo into a new blank e-mail and thought nothing more about it. But now, when I swipe between desktops, I can see the two e-mails, complete with photos but no text, straddling two desktops but can't click on them to delete them. If anyone else has experienced this,have they found a way to access the items?

    I've found the answer to my own question in an answer by Captfred last year! I right clicked on the Finder icon in the dock, assigned the Finder to "None" desktops and then found lots more things that were hiding between desktops!
    22-Aug-2011 19:36 (in response to drghyde)
    I've seen this a few times when Finder was assigned to "all desktops".  If this is the case, right click (cntl click) the dock icon > options > assign to none.
    Regards,
    Captfred

  • Data from itab to be store in text file in desktop

    hi
    i am tyring to store the data from itab into a text file in desktop,but its now owrking.
    i am using open dataset statment,but no where data is storing.My code:
    TYPES : BEGIN OF ST_DEMO,
    REG_NO(10) TYPE C,
    NAME(20)   TYPE C,
    ADDR(20)   TYPE C,
    END OF ST_DEMO.
    DATA : WA_DEMO TYPE ST_DEMO,
    IT_DEMO TYPE TABLE OF ST_DEMO,
    L_FNAME TYPE dxfile-filename .
    PARAMETERS: P_FNAME(128) TYPE C DEFAULT '\usr\sap\put\vipin.txt' OBLIGATORY.
    L_FNAME = P_FNAME.
    WA_DEMO-REG_NO = '100001'.
    WA_DEMO-NAME = 'ANAND'.
    WA_DEMO-ADDR = 'NAGARKOVIL'.
    APPEND WA_DEMO TO IT_DEMO.
    OPEN DATASET L_FNAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    WRITE :5 'REG NUM',16 'NAME',37 'ADDRESS' .
    LOOP AT IT_DEMO INTO WA_DEMO.
      IF SY-SUBRC = 0.
        TRANSFER WA_DEMO TO L_FNAME.
        WRITE :/5 WA_DEMO-REG_NO,16 WA_DEMO-NAME,37 WA_DEMO-ADDR.
      ENDIF.
    ENDLOOP.
    close DATASET L_FNAME.
    please tell me where is the prob?I wan to schedule it for background job.
    regds
    vipin

    hi
    here is the code for :  "data from itab to be store in text file in desktop"
    TABLES: vbak.    " standard table
    *                           Type Pools                                 *
    TYPE-POOLS: slis.
    *                     Global Structure Definitions                     *
    *-- Structure to hold data from table CE1MCK2
    TYPES: BEGIN OF tp_itab1,
           vbeln LIKE vbap-vbeln,
           posnr LIKE vbap-posnr,
           werks LIKE vbap-werks,
           lgort LIKE vbap-lgort,
           END OF tp_itab1.
    *-- Data Declaration
    DATA: t_itab1 TYPE TABLE OF tp_itab1.
    DATA : i_fieldcat TYPE slis_t_fieldcat_alv.
    *                    Selection  Screen                                 *
    *--Sales document-block
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.
    SELECTION-SCREEN END OF  BLOCK b1.
    *--Display option - block
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    PARAMETERS: alv_list RADIOBUTTON GROUP g1,
                alv_grid RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF  BLOCK b2.
    *file download - block
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-t03.
    PARAMETERS: topc AS CHECKBOX,
                p_file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF  BLOCK b3.
    *                      Initialization.                                *
    *                      At Selection Screen                            *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
        EXPORTING
          dynpfield_filename = 'P_FILE'
          dyname             = sy-cprog
          dynumb             = sy-dynnr
          filetype           = 'P'      "P-->Physical
          location           = 'P'     "P Presentation Srever
          server             = space.
    AT SELECTION-SCREEN ON s_vbeln.
      PERFORM vbeln_validate.
    *                           Start Of Selection                         *
    START-OF-SELECTION.
    *-- Fetching all the required data into the internal table
      PERFORM select_data.
    *                           End Of Selection                           *
    END-OF-SELECTION.
      IF t_itab1[] IS NOT INITIAL.
        IF topc IS NOT INITIAL.
          PERFORM download.
          MESSAGE 'Data Download Completed' TYPE 'S'.
        ENDIF.
        PERFORM display.
      ELSE.
        MESSAGE 'No Records Found' TYPE 'I'.
      ENDIF.
    *                           Top Of Page Event                          *
    TOP-OF-PAGE.
    *& Form           :      select_data
    * Description     : Fetching all the data into the internal tables
    *  parameters    :  none
    FORM select_data .
      SELECT vbeln
         posnr
         werks
         lgort
         INTO CORRESPONDING  FIELDS OF TABLE t_itab1
         FROM vbap
         WHERE  vbeln IN s_vbeln.
      IF sy-subrc <> 0.
        MESSAGE 'Enter The Valid Sales Document Number'(t04) TYPE 'I'.
        EXIT.
      ENDIF.
    ENDFORM.                    " select_data
    *& Form        : display
    *  decription  : to display data in given format
    * parameters   :  none
    FORM display .
      IF alv_list = 'X'.
        PERFORM build_fieldcat TABLES i_fieldcat[]
                               USING :
    *-Output-field Table      Len  Ref fld Ref tab Heading    Col_pos
       'VBELN'       'T_ITAB1'     10   'VBAP'  'VBELN'    ''            1,
       'POSNR'       'T_ITAB1'     6    'VBAP'  'POSNR'    ''            2,
       'WERKS'       'T_ITAB1'     4    'VBAP'  'WERKS'    ''            3,
       'LGORT'       'T_ITAB1'     4    'VBAP'  'LGORT'    ''            4.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
    *        i_callback_pf_status_set = c_pf_status
            i_callback_user_command  = 'USER_COMMAND '
    *        it_events                = t_alv_events[]
            it_fieldcat              = i_fieldcat[]
          TABLES
            t_outtab                 = t_itab1[]
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
      IF alv_grid = 'X'.
        PERFORM build_fieldcat TABLES i_fieldcat[]
                                 USING :
    *-Output-field Table      Len  Ref fld Ref tab Heading    Col_pos
         'VBELN'       'T_ITAB1'     10   'VBAP'  'VBELN'    ''            1,
         'POSNR'       'T_ITAB1'     6    'VBAP'  'POSNR'    ''            2,
         'WERKS'       'T_ITAB1'     4    'VBAP'  'WERKS'    ''            3,
         'LGORT'       'T_ITAB1'     4    'VBAP'  'LGORT'    ''            4.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
    *        i_callback_pf_status_set = c_pf_status
            i_callback_user_command  = 'USER_COMMAND '
            it_fieldcat              = i_fieldcat
          TABLES
            t_outtab                 = t_itab1[]
        EXCEPTIONS
       program_error                     = 1
       OTHERS                            = 2.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " display
    *& Form        : vbeln_validate
    *  description : to validate sales document number
    * parameters   :  none
    FORM vbeln_validate .
      DATA: l_vbeln TYPE vbak-vbeln.
      SELECT SINGLE vbeln
        FROM vbak
        INTO l_vbeln
        WHERE vbeln IN s_vbeln.
      IF sy-subrc NE 0.
        MESSAGE 'ENTER THE VALID SALES DOCUMENT NO:' TYPE 'I'.
        EXIT.
      ENDIF.
    ENDFORM.                    " vbeln_validate
    *& Form       :build_fieldcat
    * Description : This routine fills field-catalogue
    *  Prameters  : none
    FORM build_fieldcat TABLES  fpt_fieldcat TYPE slis_t_fieldcat_alv
                        USING   fp_field     TYPE slis_fieldname
                                fp_table     TYPE slis_tabname
                                fp_length    TYPE dd03p-outputlen
                                fp_ref_tab   TYPE dd03p-tabname
                                fp_ref_fld   TYPE dd03p-fieldname
                                fp_seltext   TYPE dd03p-scrtext_l
                                fp_col_pos   TYPE sy-cucol.
    *-- Local data declaration
      DATA:   wl_fieldcat TYPE slis_fieldcat_alv.
    *-- Clear WorkArea
      wl_fieldcat-fieldname       = fp_field.
      wl_fieldcat-tabname         = fp_table.
      wl_fieldcat-outputlen       = fp_length.
      wl_fieldcat-ref_tabname     = fp_ref_tab.
      wl_fieldcat-ref_fieldname   = fp_ref_fld.
      wl_fieldcat-seltext_l       = fp_seltext.
      wl_fieldcat-col_pos         = fp_col_pos.
    *-- Update Field Catalog Table
      APPEND wl_fieldcat  TO  fpt_fieldcat.
    ENDFORM.                    "build_fieldcat
    *& Form        : download
    *  description : To Download The Data
    *  Parameters  :  none
    FORM download .
      DATA: l_file TYPE string.
      l_file = p_file.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_file
          filetype                = 'ASC'
        TABLES
          data_tab                = t_itab1
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " download
    hope it will help you
    regards
    rahul

  • Muse/business catalyst: opera mini / opera mobile gets stuck in desktop view

    After visiting a muse site and switching to desktop view, Opera Mini continues to serve it up even when reverting the original URL:
    1. Create a site site.com with a  mobile and desktop view.
    2. Provide link to get from mobile to desktop.
    3. Open site with opera mini.  The mobile view loads.
    4. Click the link to get to the desktop view.  Muse redirects to something like site.com/phone/index.html?devicelock=phone
    5. Put in the URL for the original site, eg. site.com.
    6. Now, when you go to site.com, the URL resolves to the desktop site.  Incorrectly.
    7. Try clearing the history and cache in opera mini -> same result.
    8. Go to explicit link to phone site.  Then go back to base URL site.com.  Still resolves incorrectly to desktop site.
    It appears Muse is not supporting opera mini / mobile responsively, please advise.

    That's not quite correct. Please see step #8 above.  Even if I follow a "go to phone site" link with a "devicelock=phone" parameter, it may take me to the phone site, but default navigation remains stuck on desktop, when I put in the site URL.  If your understanding of the design is what you described, then the actual behavior is not in alignment. I would appreciate you passing that on to the engineers.
    Even with the design you describe, there is a problem considering the following use case:
    1. User views phone site on their flip phone.
    2. User attempts to load desktop site.  Site loads, but is not viewable on mobile device.
    3. User wants to revert to phone site and does not have ability to click a link, so they go back to the referring page or e-mail which contains ... the original site URL.
    After the user clicks desktop link, the site is lost to them, unless they can figure out how to (and agree to) kill all their cookies. 

  • HT2810 MacBookPro 10.9 photo icon stuck on desktop (one on top of any window opened).  Doesn't respond to any commands and can't be moved or deleted.  Computer acts like they are not there.  How do I get rid of them?

    2 photo icons stuck on desktop. One stays on top any window opened. Do not respond to any comands, can't delete or move. Computer acts like they aren't there.  How do I get rid of?

    Thanks...I'm a dunce.  I shut down again, and that did solve the problem.  Thanks for your help.

  • Synchronized text issue from desktop to mobile site design

    Hello, I love the idea of synchronized text, but is there a way to assign different styles on both desktop and mobile site pages?
    For example, If I use synchronized text on my desktop pages, my font sizes will be larger then the font sizes I would use for my mobile site pages. But, using synchronized text, if that content is linked between my desktop and mobile pages, I'm limited to one font size, which would work for my desktop site but the font size would be too large for my mobile site.
    The content between between desktop and mobile would be the same text, but I need the option to assign a different font size for my mobile site.
    Is this possible? If not, can you please add this to new features.
    Thanks much
    Cheriss

    Hi,
    Single page websites can be great for new sites or for some special projects, but I won't recommend them as long-term solutions and, if you already have a multi-page website, I do not recommend switching to a single-page site.
    If your single page site has great content and good structure, google might provide same treatment as it does for various sub pages website.
    A useful Video by Matt Cutt, head of the webspam team at Google
    Search engines will index all the pages of your website, providing multiple opportunities for your site to come up in searches. When your site consists of only one page, a single page is exactly what you’ll have indexed.
    That means if you have many services, many products, single page design will really compromise your rank and result in search engine.
    Do let me know if you have some more questions.

  • Intel iMac stuck at desktop screen, no menu bar, no finder, spinning ball

    Hi, I've just run into a serious problem with my 24" Intel iMac not starting up properly. At first it was getting stuck on the gray screen, then I got it to the blue screen, and now finally I can get it as far as loading the desktop picture, the cursor comes up and is responsive to the mouse, but has now become the spinning beachball. There is no menu bar, and the finder will not load. It's been in this state for about ten minutes. What I did to get it to this state is:
    1. Disconnect all peripherals. I'm using an Apple wireless keyboard and mighty mouse, too.
    2. Reset the PRAM.
    3. Reset the PMU.
    4. Used the installation disc to run Apple Hardware Test (the short version) successfully...no problems.
    5. Used the installation disc to run Disk First Aid. Corrected a minor problem with the file structure.
    6. Used the installation disc to run Disk First Aid. Repaired permissions.
    7. Performed a Safe Boot, and got to the log-in screen, did not log in, but restarted normally as suggested in one of the Apple support articles.
    8. Am now staring at my desktop picture without the menu bar or the Finder, but the spinning beachball is chugging along and is responsive to my mouse.
    If it is of any help, I've noticed for several months that the computer would occasionally fail to wake from sleep, and I'd need to force a shut down by holding the power button for several seconds. Could this have been a precursor to the current problem?
    At this point, I'm not certain which version of 10.5 I have, because I can't check. But I've installed all the Apple updates that have come through, so I must be at the current version of 10.5. I can't remember exactly how much RAM I have installed, either, but it might be 3 GB. I installed a second memory module at the time of purchase, which I bought from Crucial.com.
    I'm having to write this on my ancient PowerBook G4, which is still performing admirably under OS X 10.4.11. Thanks for any help or suggestions anyone can provide! : )

    It appears to have been a short of some sort on my power supply...it blew a capacitor somehow, though I don't know how/when that happened. Computer is on a surge protector, and generally sleeps during day while I'm away, but no power outages or other electrical issues occurred while I was out that I'm aware of.
    Anyway, I had a new power supply installed by an Apple certified technician...opted not to do it myself...and discovered that the HD is perfectly fine. No data loss. Phew! Just two weeks w/o my computer, and no way to recover backup files on Time Capsule in the meantime.
    Thanks for all the help and advice!

  • My macbook pro gets stuck on desktop picture while I am trying to update it

    my macbook pro gets stuck on my desktop picture while it is trying to update I have tried several times and it has not worked

    my macbook pro gets stuck on my desktop picture while it is trying to update I have tried several times and it has not worked

  • .pdf icons saved as 'plain text' style on desktop

    Acrobat 8 Pro
    Windows Vista Home Premium SP1
    Hello Forum,
    As suject, with the new Acrobat 8 Pro, my saved pdf files (pdf icons on desktop) are showing as 'plain text' view style. How do i make them back to the classic .pdf style.
    Thanks

    Hello Bill and thank you for your reply.
    No, i can open them indeed, it's not a file association issue. They (icons) aren't really in 'plain text' view, it's a sort of way how they are displaying (looks like you can choose the way of displaying or something like that). By the way, I noticed that if i refresh my desktop (by pressing F5 key), these pdf icons are back to their 'classic' view but just for a miliseconds, before they turn to the strange behavior that i mentioned above. Could it be my display's refreshing rate or something like this?
    Thank you again

  • Default PDF text colour is desktop background instead of black

    Noticed odd behaviour with new Firefox 6 and viewing PDFs inline (using the Adobe plugin): the default text colour is the desktop background instead of black. Firefox and all plugins up to date.

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

  • Widgets get stuck on desktop.

    What the....??
    I just replaced my battery and now widgets are getting stuck in my desktop. Seriously! How do I fix this, it is so strange.

    Widgets can be moved to the desktop if you accidently dismiss Dashboard while dragging the widgets from the widget "shelf." To remove these widgets, hold down the option key and click your mouse inside the widget -- an "x" in a circle should appear in the top left corner of the widget. Clicking the x will close the widget and remove it from your desktop.

  • Why is the Macintosh HD icon stuck to desktop?

    Why is the Macintosh HD icon stuck to my desktop?

    to remove the icon: Finder>  preferences> uncheck "show these items on the desktop", "hard disks".

  • 5000 mp3s stuck on desktop...Help!

    Hi everyone, and thanks for your help in advance. I just made the switch from pc to an Imac and am very happy so far. I had just finished moving about 5000 mp3s onto my new computer yesterday, when my finger slipped and they all dropped onto the desktop... When I try to put them in the trash (which is what i was trying to do in the first place) I get "some of the files you are using are in use by another application" and i have to erase them ONE BY ONE?!? I have quit all programs and tried restarting in safe mode, but i still get the same message. Please save me from having to delete these files on by one. Thanks

    Hi
    Here's a solution I've used for other massively-filed-up desktops. Reboot the computer holding down the cmd and S keys to get into "single user mode". You'll get to a text prompt. Type in the following, and hit return after each line.
    mount -uw /
    cd Users
    cd yourusername - for example, "cd rjcooker"
    cd Desktop
    mkdir mp3folder
    mv *.m4a mp3folder
    ls
    The final command, "ls", will list the files on your desktop including any remaining music files (any which don't have an .mp3 extension). If there are a small number, you can ignore them. If you still have hundreds of files - perhaps with a .m4a extension (for AAC files), you can run the same "mv" command to get them into the folder:
    mv *.m4a mp3folder
    Once you've got the files moved, type "exit" to reboot. You should now be able to see your Desktop!
    Matt
    Message was edited by: Matt Clifton

  • Web Clip Stuck On Desktop

    I made a web clip about a week ago... and i just turned on my computer and it is stuck on the desktop....
    When i go to my dashboard to see the widgets... it doesn't show up... its ONLY on my desktop it self
    it doesn't go into expose when i use that... it doesn't go into spaces when i use that... its obviously not supposed to be there... so pleasee help!

    when you open a window (like finder or mail), is that window above that webclip (i.e. you can´t see the webclip) or underneath.
    if window is above that webclip, than chances are it´s not a webclip but an image on your desktopm background.
    Go to system settings > desktop & screensaver
    and select a different desktop image
    a) if window is underneath "webclip" than it is much more tricky...
    --> go to dashboard and deselect ALL widgets
    --> log out and back in, see if it helps
    b) try cocktail, to do a complete system check
    http://maintain.se/cocktail/download.php
    HTH
    matt

  • Calculator image stuck on desktop

    Somehow I created an image of the calculator and it is stuck on my desktop.  It won't go away.  It does not actually do anything.   Any page that is open has the calculator in front of the page.   How do I remove it?

    1 - Relaunch the Finder via the  ➙ Force Quit menu option.
    2 - Reboot.

Maybe you are looking for