Pics are not visible in received mail

This has been happening a lot. Someone will send me an email with a picture or multiple pictures in it, and instead of the pictures I get little blue boxes with question marks in them. When I right click on the box, there is a single option "download image" but it doesn't seem to do anything. Nothing shows up anywhere.

I had lots of gremlins with mail dissapearing after installing tiger but have resolved them. Now the slideshow feature has gone, it was there when I first opened mail under tiger but it has since vanished. The earlier reference to button on top right corner is a puzzle, as, when I click on mine all that happens is the munu bar shrinks. The photos are shown on my emails but the slideshow has just vanished, just as I was finding this useful. Any ideas

Similar Messages

  • Does anyone know why since upgrading to ML notes are not visible in Time Machine. They used to be part of mail and could be recovered from Time machine but since ML I don't seem to be able to access notes in Time Machine. Any help would be useful.

    Does anyone know why since upgrading to ML notes are not visible in Time Machine. They used to be part of mail and could be recovered from Time machine but since ML I don't seem to be able to access notes in Time Machine. Any help would be useful.

    Welcome to Apple Communities
    Mail doesn't support notes. If you use iCloud, you have them in it because Notes is an application

  • My other mail boxes are not visible in mail after upgrading to Mountain Lion

    my other mail boxes are not visible in mail after upgrading to Mountain Lion

    In the mailbox panel move your cursor slowly down the right hand side . Should reveal show and hide.

  • Attachments not visible in Yahoo mail under Firefox 18.

    Running under Firefox 18, attachments to received e-mails on Yahoo mail are not visible, as they used to be (and are under Internet Explorer). On downloading the e-mails (to Thunderbird) the attachments are there as expected.

    hello, in [https://support.mozilla.org/en-US/questions/947471 this thread] a user has found out that the problem might be related to the ghostery addon.
    add an exception for yahoo mail: click on the ghostery icon while you're in yahoo's webmail, choose "edit blocking options" & then don't block on this domain...

  • HT1430 Since downloading updates for ios 6.0.1 can not send or receive mail on iPhone and iPad

    Since downloading updates for ios 6.0.1 can not send or receive mail on iPhone and iPad

    Is this on wifi or cellular data?
    Have you tried a reset? Hold down the home/power button until you see the apple logo and then release, then wait for the phone to boot back up.
    Have you gone into the email settings and making sure the password are still there?

  • Responses in PDF form are not visible

    I have Adobe Acrobat Pro XI installed and have produced a form which can be filled in by third parties.
    I have received a return in which the all of the responses are not visible unless I click in the field

    Most likely, the fault lies with the application used to fill in the forms,
    which is probably Apple Preview, that is known to cause this problem. You
    can fix the forms with this utility:
    http://blog.practicalpdf.com/2013/08/introducing-the-practicalpdf-fix-form-utility/
    And in the future instruct your users not to use Preview, but only Adobe
    Reader (or Adobe Acrobat).

  • Jbuttons are not visible

    Hi,
    Please Help.
    I have defined a Jpanel which contains some buttons. This panel is initially collapsed and there is an expand button, clicking on which will expand the panel and buttons should be visible.
    Sometimes the buttons are not visible after expanding the panel, or only some of them are visible.
    This problem is not reproducible everytime.
    For expanding and collapsing the Jpanel i am chaging the bound settings of the panel by using function
    setBounds().
    Can someone please help me with this issue?
    Thanks

    My intention was not to annoy anyone by posting my problem at two different forums. Sorry if i did that. I just wanted to get more opinions on this problem.
    The suggestions i received on this one was mainly to use 'Layout Manager'. I tried using that but was running into other issues. If i have to use Layout Manager then i guess i have to change the design of the full window. I cannot use layout manger on just the part of the window which is giving problem (please let me know i am wrong). Also, I am new to Swings and not much familiar with 'Layout Manager'.
    Is there a way to resolve this problem without using layout manager. This is not reproducible. It happens only in production.
    I am pasting my code below -
    I have modified the code as per the suggestions received from the forum to include repaint() and revalidate() methods.
    The part i added is in bold. Please let me know what changes i should do to improve this and resolve the issue.
    public static void main(String[] args) {
              initGUI();          
              frame = new JFrame();          
              frame.getContentPane().add(this);          
              frame.setBackground(LIGHT_BLUE);          
              frame.setTitle("ABC");
              logoImage = imgSPIcon.getImage();
              frame.setIconImage(logoImage);          
              frame.setSize(286,298);
              frame.setResizable(false);          
              frame.setVisible(false);  
                    frame.getContentPane().validate();  
                    frame.validate();     
    private void initGUI() {
              try {          
                   this.setSize(294, 280);
                   this.setBackground(LIGHT_BLUE);
                   this.setName("ABC");
                   getContentPane().setBackground(this.LIGHT_BLUE);
                   getContentPane().setLayout(null);               
                   this.setFocusable(false);
                   //collapse button used for expanding and collapsing the dial panel
                             m_btnCollapse = new JButton();
                             BottamPanel.add(m_btnCollapse);
                             m_btnCollapse.setBounds(163, 0, 112, 21);
                             m_btnCollapse.setIcon(imgExpandDialpad);
                             m_btnCollapse.setBorder(BorderFactory.createCompoundBorder(null, null));
                             m_btnCollapse.setBackground(new java.awt.Color(177, 201, 224));
                             m_btnCollapse.setContentAreaFilled(false);
                   //Dial panel
                        DialPanel = new JPanel();                    
                        //getContentPane().add(DialPanel);                    
                        DialPanel.setBounds(0, 251, 280, 0);                    
                        DialPanel.setLayout(null);
                        DialPanel.setBackground(bkColor);                    
                             m_btn1 = new JButton();                         
                             m_btn1.setIcon(imgDPOne);
                             m_btn1.setContentAreaFilled(false);
                             m_btn1.setBounds(79, 0, 35, 28);
                             m_btn1.setBorderPainted(false);
                             DialPanel.add(m_btn1);
                             m_btn2 = new JButton();                         
                             m_btn2.setBounds(120, 0, 35, 28);
                             m_btn2.setIcon(imgDPTwo);
                             m_btn2.setContentAreaFilled(false);
                             m_btn2.setBorderPainted(false);
                             DialPanel.add(m_btn2);
                             m_btn3 = new JButton();                         
                             m_btn3.setBounds(161, 0, 35, 28);
                             m_btn3.setIcon(imgDPThree);
                             m_btn3.setContentAreaFilled(false);
                             m_btn3.setBorderPainted(false);
                             DialPanel.add(m_btn3);
                        //includes more such buttons
                                    DialPanel.validate();
                        getContentPane().add(DialPanel);               
                   //adding mouse listner for the collapse button
                   JavaPhoneMouse aJavaPhoneMouse = new JavaPhoneMouse();
                   m_btnCollapse.addMouseListener(aJavaPhoneMouse);
         //mouse listner.
         class JavaPhoneMouse extends java.awt.event.MouseAdapter {
              public void mouseClicked(java.awt.event.MouseEvent event) {
                   Object object = event.getSource();
                   if (object == m_btnCollapse)
                        m_btnCollapse_MouseClicked(event);
         //On expanding the dial panel the dial panel is expanded(the size changes) but the buttons are invisible. 
         void m_btnCollapse_MouseClicked(java.awt.event.MouseEvent event) {
              //if the dial pad is in expanded form it will collapse else it will be expanded.
              if (isDialPadCollapsed == false) {               
                   DialPanel.setBounds(0, 251, 280, 0);
                   DialPanel.revalidate();
                   DialPanel.repaint();                              
                   BottamPanel.setBounds(0, 251, 280, 21);
                   m_btnCollapse.setIcon(imgExpandDialpad);               
                   this.setSize(280, 277);               
                   frame.setResizable(true);
                   frame.setSize(286, 298);
                   frame.setResizable(false);
                            frame.getContentPane().repaint();
                   frame.repaint();                              
                   isDialPadCollapsed = true;
              } else {               
                   this.setSize(280, 408);               
                   frame.setResizable(true);
                   frame.setSize(286, 430);
                   frame.setResizable(false);               
                   BottamPanel.setBounds(0, 384, 280, 21);               
                   DialPanel.setBounds(0, 251, 280, 133);     
                            DialPanel.revalidate();
                   DialPanel.repaint();
                   frame.getContentPane().repaint();
                   frame.repaint();          
                   m_btnCollapse.setIcon(imgCollDialpad);
                   isDialPadCollapsed = false;
    {code}
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Follow-on documents are not visible in MIRO in TEST server, awsys = PRD300.

    Dear Experts ,
    The Test Server was refreshed around mid-June 2011 with data of
    Production Server. The follow-on documents are not visible for the
    invoice documents in MIRO in TEST server due to value in tables
    BKPF,RBKP : field : AWSYS = PRD300 .
    The newly created Purchase Orders after the refresh, the accounting
    documents can be seen for the Goods Receipt (MIGO_GR-display) and
    Invoice documents (MIRO).
    we had already raised this issue in March & got the feedback from SAP
    as shown below.
    accordingly we have developed & run the program "zzlogsys2" which
    updates the Logsys/Awsys field from PRD300 ( of production server ) to
    that of the current server i.e. TST300 as required.
    after which the FI documents for the material documents are visible in
    MIGO,but follow-on documents are not visible for the invoice documents
    in MIRO.
    we have Checked notes 781498 and 28958 to see if the logical system is
    correctly assigned , where we found that in table RBKP after entering document number, Fiscal Year , the
    Field AWSYS is "PRD300" & not "TST300" as it should be. We will take up the activity of updating table RBKP
    also as we are currently doing for tables MKPF & BKPF.
    But to have clear picture as to what we are doing is correct , pl
    advise about the following :
    1) Is it a correct process done by our SAP-Basis team , that every time
    any Server ( e.g. Test or Quality ) is refreshed with Production server
    data, the Field AWSYS in various transaction tables gets value as
    "PRD300" which then is required to replaced by running program such as
    ZZlogsys.
    REPORT ZZLOGSYS.
    TABLES: T000, MKPF.
    DATA: NEW_SYS LIKE MKPF-AWSYS.
    PARAMETER: OLD_SYS LIKE MKPF-AWSYS.
    SELECT SINGLE * FROM T000 WHERE MANDT EQ SY-MANDT.
    NEW_SYS = T000-LOGSYS.
    CHECK NOT NEW_SYS IS INITIAL.
    UPDATE MKPF SET AWSYS = NEW_SYS
    WHERE AWSYS = OLD_SYS.
    WRITE:/ 'Number of updates: ', SY-DBCNT.
    2) if the above process is correct & normal , then which are the other
    tables in a particular server ,apart from tables MKPF,BKPF,RBKP , which
    needs to be updated the value of field "AWSYS" in the same way
    replacing value "PRD300".
    3) if the process in point no. 1 is not correct , then what is the
    correct process that the Basis team can do while refreshing any target
    server with production data so that target server retains its value in
    Field AWSYS & not showing "PRD300".
    With 3 servers TEST,DEV & Quality , recently refreshed with production
    server to bring all servers in Sync for a HR patch application, we have
    this situation now in all 3 servers .
    Thanks in advance ,
    Anil Shanbhag

    It is appropriate to move this thread from ERP-MM to [Enterprise Resource Planning (ERP)|Enterprise Resource Planning (SAP ERP);
    Edited by: Jeyakanthan A on Jul 7, 2011 4:56 PM

  • BPM worklist app views are not visible in IPM task viewer

    Hi,
    we upgraded our system from 11.1.1.3.0 to
    weblogic 10.3.5.0
    SOA 11.1.1.5.0 with BPEL processes
    ECM with IPM and UCM 11.1.1.5.0
    after upgrade i have problem with profiles in IPM task viewer page. Views are created in BPM worklistapp and all users can see tasks assigned to them there. But those views are not visible in IPM task viewer page (i tried it using driver page). Because of missing profiles/views users can't see and process tasks assigned to them. In log files isn't raised any error message.
    Everything was working before upgrade. Can someone help me with this? What can i have wrong there?
    Thanks a lot in advance for any help
    Edited by: 914063 on Jun 20, 2012 12:56 PM
    Edited by: 914063 on Jun 20, 2012 12:57 PM

    Hi Renuka,
    There are basically two ways to create an ADF UI for a BPM Task:
    1. Generate it from the task
    2. Create a ADF Taskflow based on Human Workflow Task
    Since I tell this by heart, I might be slightly wrong in the terms.
    You probably want to try the second option. It is accessible from the "New Gallery". You'll have to provide the Human Task from the BPM project, but then you can build up the ADF Taskflow by your self, based on the customizations of the rest of your application.
    Should not be rocket science for someone with ADF11g experience. Since it is not my dayly job, I need to figure it out every time again ;). But I did it in the past and it wasn't so hard.
    Regards,
    Martien

  • In Business Rule child elements of Unbounded element are not visible.

    Hi All,
    Jdev version 11.1.1.7.0
    I am facing one issue in Business Rule...
    Scenario: I am creating Approval Service (BPEL) with Human Work flow and Bunises Rule.
    I am assingning participant in HW by using Rule based(Connecting HW and BR).
    Problem here is:
    Shema has "unbounded" element.
    <element name="ExpenseItem" maxOccurs="unbounded">
         <complexType>
          <sequence>
           <element name="ItemID" type="string"/>
           <element name="ItemName" type="string"/>
           <element name="ItemPrpjectID" type="string"/>
           <element name="ItemStatus" type="string"/>
          </sequence>
         </complexType>
        </element>
    Whenever I create Busines rules to configure rules.
    While configuring rules child elements of  ExpenseItem are not visible. But those are neccesary to configure rules.
    If you can help to me resolve would help.
    Is it a bedault behaviour of BR? If so how can i acheive this?
    Thanks,
    Santosh

    Solution found:
    Click on RuleSet which you have created.
    Expand Rule inside it.
    Enable Advanced mode and Tree mode and click OK.
    Select Root as Task and click on insert pattren and create pattren which is based on unbounded element (here its meant as fact)
    Once you create pattren , will be able access elements under unbounded element for Business rule configuration.

  • Changes made in Camer Raw are not visible in Bridge

    I'm editing the RAW images in Camera raw started from Bridge (Ctr- R). By returning to Bridge with "done" the changes are not visible. This worked until recently.
    s there any setting which prevents Bridge taking in consideration the info from the XMP file ?
    Re-starting Camera Raw I can see the changes from the previous session ...
    thanks in advance

    I love these quick solutions also. 

  • In mail attachments are not deleted even though mail is deleted

    In mail attachments are not deleted even though mail is deleted

    Check on your server to see what maiul options are selected.  If your mail account is set to "download all attachments automatically", that may be an option you want to de-select.

  • Text boxes are not visible

    Hello. A page in my InDesign document appears to be broken. Text boxes are not visible, they can only mark if I choose command + a. Then I can copy the object and paste into another document in which they appear. You can not delete the page when the crash program. What could be wrong?

    Re text boxes not visible try: View > Screen Mode > Normal.
    It's not a good idea to copy and paste, use Place: File > Place.
    Re your crashing, maybe you should reset your Preferences.
    Derek

  • Work items are not visible  UWL task are visible in tracking in portal

    HI
    Friends
    i  am new from sap Ess/Mss implementation project...
    i am facing an Problem " Work items are not visible under UWL in portal overview page"
    but i am configured  all the ess/mss related things....and also Created for one user for Requester(send Leave Request)...and one more user for App-rover(Apporve an Leave)..
    Requestor send an Leave through portal send it successfully......but i am facing  a problem in uwl under work items are not showing in overview page...but in tracking work items are (Leave request)showing.....work items are not showing in uwl TASK(VERY PROBLEM)...
    i am configured and also registered UWL IN PORTAL..it is good..
    in sap ecc i can assigned UWL_SERVICE user to roles
    1.SAP_BC_BMT_WFM_UWL_ADMIN    
    2.SAP_BC_BMT_WFM_UWL_END_USER
    3.SAP_BC_ADMIN_USER
    4.SAP_BC_UWL_SERVICE
    PLEASE HELP ME.
    Tanks
    Shaik Rafi

    Hi All,
    In such cases, please try to check as below :
    1) Create Leave request work item from Employee and check the same under the UWL Tracking tab of employee.
    2) Log-in to swi5 transaction of the respective back end system and give "US" -> manager's UserID -> Choose Tasks to be completed from the drop down -> Remove any date if mentioned -> Execute.
    3) Here if you can see the Leave request created, but not on the portal, it reflects some portal issue like sync.
    4) If no leave request work item is seen here, then there is a problem in the employee manager mapping or the workflow setup.
    5) In such cases, you can try to check the Swi1 and check the log of that workflow to understand the current status of the Leave request.
    Revert if further help is needed with more info.
    Reward points if found useful.
    Regards,
    Shri vidya S

  • Work items are not visible under UWL in portal ?

    Hi,
    We are upgrading from SRM 5.0 to SRM 7.0.
    We have observed one issue here. Workitems are not visible in UWL in portal.
    But workitems are available in SAP inbox. i.e SBWP.
    Completed items we can see in UWL.
    Could you please let me know any idea on this.
    Regards
    Venkatesh P
    Edited by: Venkatesh Padarti on Dec 9, 2010 8:28 AM
    Edited by: Venkatesh Padarti on Dec 9, 2010 8:29 AM

    Hi Venkatesh,
    Can you please share the solution? Which base URL was wrong and where did you correct that?
    Your help is really appreciated.
    I had post the same question at SRM workflow - work Item is not being displayed If you want to reply there. I will definitely, reward with points too.
    Thanks,
    Bhavik

Maybe you are looking for

  • Index array is not getting new values from DAQ

    I am measuring force values with my DAQ card and these values are always changing.  However, in my programming something is not working right with the way I have things set up.  After my DAQ I have a "Convert to Dynamic Data" and after that I have an

  • Evaluating kodo for a thin rich client

    Hi We're evaluating our options for persistence on a project. We need a thin rich client - thin in terms of logic/smarts and rich in terms of UI/usability (swing/swt etc. not html). Before spending time to build a prototype, we have some questions. 1

  • Ora-1276 cannot add controlfile - rman duplicate asm database

    Hi, I am trying to duplicate an asm database olddb -> asm database dup in the same diskgroup. somehow got error 0ra-1276 Cannot add file +DISK1/dup/controlfile/current.1669.754164181.  File has an Oracle Managed Files file name. There is nothing in t

  • Currency exchange

    Hi experts, Q1: Why local currency A is involed in currency exchange for the scenario below? U know, exchange rates for foreign currencies are maintained, i.e. from B to C and, from C to B. Q2. Is any standard exchange sequence? For e.g., first from

  • Upconvert from LabVIEW 5.1 to 2010

    Hi! Can someone kindly help me on upconverting the attached files into 2010 version? Thanks in advance! Attachments: regimen automático.vi ‏82 KB