Mail problem with embedded images and links

Since Yosemite Apple Mail seems to have a problem with images that are used as a hyperlink to a website.
While links are clickable with external loaded images work fine, links with embedded images just do not anything. Clicking on them selects them, a double-click opens the image in Preview.
This works:
<a href="https://www.google.de"><img src="https://www.google.de/images/srpr/logo11w.png" alt="Google Logo"></a>
This does not work:
<a href="https://www.google.de"><img src="cid:logo_google" alt="Google Logo"></a>
Can you reproduce this problem?
We tried it with OS X 10.10.1 and 10.10.2

After a bit of digging around I think I have found the reason for the EO being called prior to the CO. In the parent page CO, there is a transaction commit (oapagecontext.getApplicationModule(oawebbean).getTransaction().commit();).
Therefore, I assume that as my custom AM is a child of standard AM where the transaction is being commit, the child AM is sharing the same transaction/session and hence the EO being called.
I am running into issues with moving the validation to the EO as the validation requires visibility of the VO values to calculate a total value. Therefore is there a way to ensure that my custom AM maintains a separate database session/transaction to the parent/standard AM? Is it possible to break the parent/child relationship?
This way I assume that the commit issued by the parent page CO will not affect my custom AM/EO.
Cheers.
Jon.

Similar Messages

  • Problem with embedding images in a textField

    I am trying to embed images in an html text field.
    I am using the following in the txt file that gets loaded
    into the html text box, but the image does not show up.
    <img src='art_home.jpg'>
    art_home.jpg is the linkage id.
    I have also tried it with a movie clip, but it would not work
    either.
    What am I doing wrong? Where could I start to look? I am
    somewhat lost on this...
    Thanks a lot!

    Hi, thanks a lot.
    What you are describing, is what it seems to be doing, as it
    reports errors loading the images. I thought I was reading that I
    could substitute src path to an image, with a linkage ID in the
    library. Is that not the case?
    "- src Specifies the URL to a JPEG or SWF file, or the
    linkage identifier for a movie clip symbol in the library."
    I read this here:
    http://blog.inventis.be/embedding-images-and-movie-clips-in-flash-text-fields/
    Thanks a lot.

  • Send HTML Email with Embedded Images and CSS

    Hi All,
    I have a html page. I want to send that html page(not with attachment) with all images and css. i search and try but I cant find a good solution. can any one help... plz..........
    Thank You.....

    If you want to send the html page and have it
    reference the images and css files on your web
    site, that's pretty easy. Just create a message
    with text/html content that is your html page.
    If you want to include all the images and css files
    in your message along with the html page, you'll
    need to create a multipart/related message and
    you'll need to change all the html to reference the
    images and css files using "cid:" references.

  • Problem with Background image and JFrame

    Hi there!
    I've the following problem:
    I created a JFrame with an integrated JPanel. In this JFrame I display a background image. Therefore I've used my own contentPane:
    public class MContentPane extends JComponent{
    private Image backgroundImage = null;
    public MContentPane() {
    super();
    * Returns the background image
    * @return Background image
    public Image getBackgroundImage() {
    return backgroundImage;
    * Sets the background image
    * @param backgroundImage Background image
    public void setBackgroundImage(Image backgroundImage) {
    this.backgroundImage = backgroundImage;
    * Overrides the painting to display a background image
    protected void paintComponent(Graphics g) {
    if (isOpaque()) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    if (backgroundImage != null) {
    g.drawImage(backgroundImage,0,0,this);
    super.paintComponent(g);
    Now the background image displays correct. But as soon as I click on some combobox that is placed within the integrated JPanel I see fractals of the opened combobox on the background. When I minimize
    the Frame they disappear. Sometimes though I get also some fractals when resizing the JFrame.
    It seems there is some problem with the redrawing of the background e.g. it doesn't get redrawn as often as it should be!?
    Could anyone give me some hint, on how to achieve a clear background after clicking some combobox?
    Thx in advance

    I still prefer using a border to draw a background image:
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.border.*;
    public class CentredBackgroundBorder implements Border {
        private final BufferedImage image;
        public CentredBackgroundBorder(BufferedImage image) {
            this.image = image;
        public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
            int x0 = x + (width-image.getWidth())/2;
            int y0 = y + (height-image.getHeight())/2;
            g. drawImage(image, x0, y0, null);
        public Insets getBorderInsets(Component c) {
            return new Insets(0,0,0,0);
        public boolean isBorderOpaque() {
            return true;
    }And here is a demo where I load the background image asynchronously, so that I can launch the GUI before the image is done loading. Warning: you may find the image disturbing...
    import java.awt.*;
    import java.io.*;
    import java.net.URL;
    import javax.imageio.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class BackgroundBorderExample {
        public static void main(String[] args) throws IOException {
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame f = new JFrame("BackgroundBorderExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea area = new JTextArea(24,80);
            area.setForeground(Color.WHITE);
            area.setOpaque(false);
            area.read(new FileReader(new File("BackgroundBorderExample.java")), null);
            final JScrollPane sp = new JScrollPane(area);
            sp.setBackground(Color.BLACK);
            sp.getViewport().setOpaque(false);
            f.getContentPane().add(sp);
            f.setSize(600,400);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
            String url = "http://today.java.net/jag/bio/JagHeadshot.jpg";
            final Border bkgrnd = new CentredBackgroundBorder(ImageIO.read(new URL(url)));
            Runnable r = new Runnable() {
                public void run() {
                    sp.setViewportBorder(bkgrnd);
                    sp.repaint();
            SwingUtilities.invokeLater(r);
    }

  • Font Problem with Embedded Images when making PDFs

    Hello,
    I am revising a document I didn't create which has embedded images. Although all of the fonts are turned on, when I create a PDF, the fonts in the EPS come out as Courier. When I print to my laser printer, the fonts in the EPS come out correctly. This job will eventually be produced as a PDF, so I need to figure this out. Any ideas?
    Thanks.

    We can't spend the time to retrieve the originals and distill them.
    Yes, I understand that. I like to know why things don't work, even if it takes me a few minutes to test things. You don't have to retrieve any originals. Just unembed one from the ID file. I know it doesn't make sense to Distill all your EPS files when printing to PDF is going to take much less time. But if you can ascertain why it's not working, you'll have a better chance to fix it next time.
    If the fonts weren't included in the original EPSs, why do they print to PDF in Franklin Gothic? This is true even in the one page document I sent you that doesn't have any styles.
    They don't...unless you have that exact Franklin Gothic loaded on your system. They print in Courier here.
    Your EPS file references a specific font name. When you print, your print driver matches up that reference with the Franklin Gothic font you have loaded. For reasons that I don't fully understand, when you Export to PDF Indesign is not able to match up the reference to the font the same way your print driver can.
    Obviously, printing to PDF is a good workaround. And make sure you send your printer a PDF, not a live Indesign file.
    Ken

  • Problems with 4s images and videos orientation

    I'm a new Iphone 4s user, and an avid photographer.  I don't own an Apple computer, and I've run into an issue with photo orientation. Using the volume button as shutter button (volume buttons pointing upwards in landscape mode), in pc programs the images and videos come out upside down. Evidently the orientation tag recorded by the phone is not universal, so most video programs don't get the orientation right. Are there any plans to correct this?
    Thanks for any help with this.

    This always happened in Lr 1.0.
    Lr 1.1 has the option of choosing the copyright status just like PS. It is near the bottom when All Metadata is shown.

  • Problems with Blackberry ID and Link

    Not sure what is going on but about 2 weeks ago Blackberry Link stopped syncing and backing up my Q10.
    Today, when I looked at my Blackberry ID, the device hangs 'retrieving ID properties' and comes up with an unknown error.
    I checked in 'Password Keeper' and that too is greyed out
    Anyone else suffering from these problems, and does anyone know how to resolve this. Everything else is working fine, but I do like to keep the device backed up and synced

    In Settings -> BlackBerry Id you can edit and resubmit but seeing as this is hanging for you I recommend reinstalling your OS and doing it in the set-up.
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/How-to-Reload-your-Blackberr...
    If you can cope however it might be worth waiting a couple of weeks as I believe 10.2.1 may be out by then which has fixed the bbid properties hanging problem.
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

  • Problem with Embedded Region and EO Commit

    Hi all,
    Just a quick question to clarify my understanding of OAF and see if anyone can provide a workaround for the issue I am facing.
    I have developed a customisation to a standard Oracle Repository Contracts OAF page. The customisation involves embedding a new region into the standard page to allow data entry into a simple database table (see [screen shot|http://jaybe.net/bip/oaf/ICMS_OTN_Forum_Post_New_OAF_Region.pdf] ).
    The new region has a customCO, AM, VO and EO over the database table. All works fine when running the region on it's own. However when I have embedded the region into the custom page I notice the following.
    When the use clicks on the standard "Go", "Save" or "Apply" buttons (i.e. a HTTP Post), I notice that custom region's CO method "processFormRequest" is called. Also, prior to this, if there are any changes to the data in the table bean within the custom region, these are applied to the database via calls to the EO (doDML method).
    This would be ok however I have built validation logic into the "processFormRequest" of the custom CO so that the total value entered in the table, is checked against the contract amount. If validation is passed, a database commit is performed.
    Currently this validation is bypassed when the user clicks on anything that causes a HTTP post in the standard page, as the database table is updated (and committed) prior to the validation being called (in processFormRequest).
    Is there anyway of preventing the custom EO from committing outstanding changes to the VO (via the table bean) when a HTTP post in initiated from the standard/parent region? I see that my custom AM becomes a child of the AM that belongs to the parent page/region. Would breaking this relationship prevent this issue from occurring, if this is at all possible?
    As a workaround, I have implemented the validation in the EO method "validateEntity" however, as this works at the row level, multiple error messages are returned when the user changes multiple rows that result in the total being greater than the contract value. Ideally, one error message would be displayed. Any ideas on this one?
    Thanks for looking...
    Cheers.
    Jon.

    After a bit of digging around I think I have found the reason for the EO being called prior to the CO. In the parent page CO, there is a transaction commit (oapagecontext.getApplicationModule(oawebbean).getTransaction().commit();).
    Therefore, I assume that as my custom AM is a child of standard AM where the transaction is being commit, the child AM is sharing the same transaction/session and hence the EO being called.
    I am running into issues with moving the validation to the EO as the validation requires visibility of the VO values to calculate a total value. Therefore is there a way to ensure that my custom AM maintains a separate database session/transaction to the parent/standard AM? Is it possible to break the parent/child relationship?
    This way I assume that the commit issued by the parent page CO will not affect my custom AM/EO.
    Cheers.
    Jon.

  • Problem with embedded images in emails

    After downloading OS X Yosemite onto my Mac , the images embedded in my emails have now turned to question marks. How do I re-instate ?

    I ask the sender of the email to use tiny url or other service which are usually free. I also use the select feature but again i get the same results as you.
    Be a Shepard and not an iSheep.

  • Problem with Create PDF and linked data

    Using Acrobat X standard.
    I have a Word 2010 doc with links to Visio and Excel data. 
    When using the CreatePDF option from Word, I consistently get a prompt asking whether I want to update the linked data before creating pdf.  I would like to either (1) turn this prompt off or (2) -- less preferable -- have the linked data always update without prompting.
    Is thre a setting that would accomplish one of these two solutions?
    Thanks,
    Craig
    PS.  All settings in Word have been set such that data IS NOT updated when printing on a regular printer.

    You can print to Adobe PDF.

  • Keep track of images and links in a datafile

    Hi,
    I have set up replication between my source and destination server. How do images and contents linked in a webpage section replicate?
    I think images and content reffred should be replicated seperately, as a datafile doesnot have a refrence telling images reffered should be moved.
    Now the question is how to move Images and contents that are linked in the webpage along with datafiles.
    One solution is to use SiteStudio section replication. If we use that how to make sure this goes through a work flow and then gets replicated?
    your inputs willl be usefull

    This seems somewhat like an architecture question. Let's assume you have two servers (I'll call them staging and production). You have set the Site Studio Migration Utility to automatically replicate content associated with your site from staging to production. Now in our example, on staging there is a datafile with various images and links to native content that users regularly update. You have a workflow layer applied to all datafiles of your site so that content isn't migrated into production until it has been workflow approved. I'm assuming this is how you are set up (since this is a commonly recommended architecture).
    Now back to the datafile. I'm assuming the images in the datafile (as well as any linked native content) have site specific metadata applied to them, so that the Site Studio Migration utility replicates them into production just like migrates other areas of your site. If that is the case, then it is the responsibility of the workflow approver to verify that all images (and document links) look right before approving the content for auto migration.
    Unfortunately, you may run into a situation like the following... You have a page that lists sales figures every month, and uses an image to visualize those sales figures. You already have a datafile in production for February as well as the associated February graphic. You create an updated sales figure datafile for March, as well as an updated associated image for March. The image migrates into production automatically, before the updated datafile referencing the updated image clears workflow. Your February sales figure page could potentially have the March sales image inside of it. This is a potential problem since there is no concept of a "group approval" for all elements that make up the contents within a datafile. You could add a layer of workflow to all native content and images, but then you'd have to be fairly certain that you were synched up properly. You could also manually migrate, but I can see where this would not be ideal either. Unfortunately, there is no easy answer.

  • HTML content with images and links blocked

    Hello,
    I very much need some help here because my company needs to send out newsletters to our clients in HTML format soon and so far the email with HTML content is being blocked as spam while text content works fine. Specifically, whenever I add a link or an image in HTML content, the email doesn't go through. I tried sending in multipart format but it is also not sending HTML with images and links. Here is my attempt:
                                    props.setProperty("mail.transport.protocol", "smtp");
                                     props.setProperty("mail.host", "mail.server.com");
                                     props.setProperty("mail.user", "joeuser");
                                     Session mailSession = Session.getDefaultInstance(props, null);
                                     mailSession.setDebug(true);
                                     Transport transport = mailSession.getTransport();
                                     MimeMultipart mp = new MimeMultipart("alternative");
                                     MimeBodyPart htmlPart = new MimeBodyPart();
                                     MimeBodyPart textPart = new MimeBodyPart();
                                     textPart.setText("Just to make it multipart");
                                     htmlPart.setHeader("MIME-Version", "1.0");
                                     htmlPart.setHeader("Content-Type", htmlPart.getContentType());
                                     htmlPart.setContent(strHtmlMessage, "text/html");
                                     mp.addBodyPart(textPart);
                                     mp.addBodyPart(htmlPart);
                                     MimeMessage message = new MimeMessage(mailSession);
                                     message.setHeader("MIME-Version", "1.0");
                                     message.setHeader("Content-Type", mp.getContentType());
                                     message.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");
                                     message.setContent(mp);
                                     message.setSubject(strSubject);
                                     message.setFrom(new InternetAddress("[email protected]"));
                                     message.addRecipient(Message.RecipientType.TO,
                                             new InternetAddress("[email protected]"));
                                             transport.connect();
                                             transport.sendMessage(message,
                                             message.getRecipients(Message.RecipientType.TO));
                                     transport.close();This code is one of my numerous attempts to make HTML send images and links. Please, let me know if there is a workaround way to make JavaMail send HTML with links and images in the message body. Your help will be greatly appreciated.

    The JavaMail FAQ has information on creating HTML messages, including
    messages with both plain text and HTML. Did you find it?
    BTW, your code has many unnecessary statements, such as setting
    the Mime-Version header, which JavaMail will do for you, and setting
    the Content-Type header, which JavaMail does as a side-effect of the
    setContent or setText calls.
    Other than that, it looks like your code should be correctly creating a
    multipart/alternative message. If the recipient is still rejecting it you
    need to figure out what it is about the message that makes the recipient
    think it's spam. Can you send a similar message using another mailer?
    Can you send the message to a different recipient?

  • Sample Java  Code to send an HTML mail with embeded image

    Hello,
    Please can I get a sample Java code on sending an HTML mail with embeded image.
    The HTML message and relevant input parameters withhbe supplied from a PL/SQL that will call the class , the class will embed the image and send the mail to the recepient.

    tev wrote:
    Please can I get a sample Java codeNo. This is a forum, not a code mill.
    Recommended reading: How to ask questions the smart way
    db

  • Why can't I forward emails I receive with embedded images?

    I have an iPad 2 and it seemed like I was able to forward emails with embedded images in the past, but now it never works. In fact, I've tried emailing directly from Photos and I have the same problem. No one gets any of my attachments or images. I've updated the operating system to the most recent version and it's made no difference.
    And to make it even more frustrating, when I check my sent messages, the images are there!

    Are you sure that you've set up an account that will automatically delete the messages? Is it a POP or IMAP account? I had a .mac account years ago running Entourage, but never had a problem. For some reason it seems that the server is not deleting your messages upon quit (or however Mail handles it). Maybe we'll just bump this up and see what kind of response you get from those with .me accounts running Mail.
    What version of Office do you have? I'm pretty sure that 2004 was a PPC suite and won't run on your new MBP. If you had 2008 on your PB, then you should just have to re-enter your activation key.
    Good luck,
    Clinton

  • Problems with embedding swfs into Director 11.5

    Hello everyone,
    I am hoping someone can help me and please bear with me - I don't know a lot about director - I can do some Lingo and get around in the program to make things work.
    Right now I am working on an interactive presentation where the user can click a button to view an animation. I am using Director 11.5 for my presentation and have made my animations in After Effects CS3 -- from there I converted my .mov files to .flv files using the Adobe Media Encoder CS4... then I took my .flv file into Flash and published it as a swf file.
    The problem that I am having is that when I play the presentation (within Director and after publishing the .app/projector file) the swf files are playing - but there is all this glitchy-artifact stuff all over them. Does anyone know why this would be happening? When I play the swf files in the flash player they look great. Before, when I was using Flash MX and Director MX, I never had any problems with embedding my swf animation files - and they played great - without any artifact. Any and all help would be much appreciated as this project is due in the next few days and I would prefer to figure out a solution rather than uninstalling Flash CS4 and Director 11.5 - and going back to MX.
    I toyed with the thought that my video card isn't good enough but I tested the .app file on another machine and the glitchy-artifacts were still there. I have attached a jpg showing the artifact that appears.
    I am running Mac OS X 10.5.7
    Dual 2 GHz G5 PowerPC
    ATI Radeon X800 XT
    Thank you!

    Sorry... here is the image again and I think the problem might be my machine -- it is very old (~4+ years) and when I tested my .app on a newer intel mac here it worked fine... but maybe I am missing something -- it seems odd that I can see the swf fine in flash player but it is glitchy when played through director or the .app projector file

Maybe you are looking for

  • Row Cuncerency has be changed!!

    Hi All, I am getting this error when i press a buttonin a master details page . "JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[]" When does we get this eroor and what is the solutio

  • 16:9 4:3 Problem...

    Hi, I recorded a LIVE concert with an AVer TV6 (TV Caputre USB Stick) in MPEG compression. The concert was in 4:3. Unfortunately, the AVer captured the program 16:9 in page sizes 720 to 576. I have no idea what that is! Almost-Gone-DV? And then the 1

  • POs value exceeding overall budget in WBS

    Hello I'm an auditor in a multinational company that uses SAP. I have came upon a case in which the overal budget for a WBS is 100,000 and the total value of the POs opened against this WBS is around 140,000. Invoices recorded against these POs are l

  • I want to buy an ipad, but i was wondering if there is a way to use my blackberry internet with the ipad

    i want to buy an ipad, but i was wondering if there is a way to use my blackberry internet with the ipad

  • InfoObject only in data target , but to be used in Update routine of anothe

    I am having an InfoObject<b> 'A'</b> in a data target (ODS2).The Update rule is fom ODS1 and in the routine of another InfoObject <b>'B'</b> , we need to use this '<b>A'</b>. <b>'A'</b> is not present in the comm_structure. <b>'A'</b> is having a con