Missing Embedded Images on Reply/Forward/Redirect

I found a bug with the new Safari beta that when installed (on either an Intel or PPC machine), when you get a embedded image in your email, and you want to reply/forward/redirect that message, the image(s) will not display, and a blue "lego" icon will be shown.
The fix is to uninstall the Safari beta, and it will fix the problem with Mail.
-robert.

I have exactly the same problem but without using a server.
When I *copy & paste* an image in Keynote I often just *get a place holder with a big question mark*. When this happens I have no chance to copy it. This behaviour is then reproducible.
The same thing happens when drag & dropping a slide to another presentation. All pictures get a question mark! I did not find a work around yet.
Please help!

Similar Messages

  • Illustrator CC opens file showing missing embedded images. Illustrator 5.1 opens same file fine with no missing images.

    How do I get CC to open these files correctly? Is the client saving them incorrectly?
    My work around has now become a pain & I need to know why Illustrator CC tells me most/all embedded images are missing in files received by clients.
    Illustrator 5.1 opens the files ok & gives me no errors. It does a few funky things because ti says the file was produced with a new version. The file previews fine in the Finder window & shows all images. The issue with opening them in 5.1 is it wants to open 1 page at a time like the AI file is a PDF.
    Why is CC failing to recognize the embedded images? Are the images not embedded correctly by the client? Is 5.1 pulling from some lower res version of the images? Files export from 5.1 as hires. Stumped.
    Oh my gosh why arent they just using InDesign. : (

    Please get informed about how Illustrator saves files and what exactly is in a file and how it is re-opened.
    See: http://rwillustrator.blogspot.de/2006/11/whats-in-file.html
    When in Illustrator CS5, Illustrator actually opens the PDF part of the file that contains all the images. Always.
    When in Illustrator CC, Illustrator accesses the AI part of the file, which doesn't necessarily contain the images.

  • 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

  • OBIEE 10G Embedded Image not displayed on PDF

    Hi
    We have some embedded images (source on network share or on the webserver) on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    Is there a known bug that images can't be printed on dashboard pages or do we have to embed them different?
    Thank you

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • OBIEE 11G Embedded Image not displayed on PDF

    Hi
    I have some embedded images on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    All the images are referenced with the fmap path.
    Any way to print the images in the pdf ?
    Thank you
    obiee 11.1.1.5
    O.S : Oracle Linux 5.6 x64

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • Embedded image in html body of the email is not appearing in Outlook mail box

    My application Basically gets the un delivered emails from the outlook account.Composes the email from information then also appends the signature of email.The signatures may be multiple , form will show these signatures as a dropdown usin webbrowser control there both image as well as links appear well.But the same if draft them to outlook drafts folder the image in the signature misses and shows image not available.II fetch the signature from user local signature folder , convert it base64 string and set the string as source for image element and append this body of the email.I basically use Outlook COM object to achieve thesepublic void AddImageContentToHtml(List<TamDetails> tamList,string html,string key)
    string htmlContent = html as string;
    string imageSource = string.Empty;
    HtmlNode signatureNode = null;
    HtmlNodeCollection nodeCollection = null;
    List<string> imagePaths = null;
    string requiredImage = string.Empty;
    string base64Image = string.Empty;
    if (!string.IsNullOrWhiteSpace(key))
    imagePaths = ImageDict[key];
    foreach (string strPath in imagePaths)
    //string appDataDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Microsoft\\Signatures";
    requiredImage = strPath;
    string [] commonPath = { Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Microsoft", "Signatures")};
    string[] validPaths = requiredImage.Split(commonPath, StringSplitOptions.RemoveEmptyEntries);
    if (validPaths.Count() > 1)
    var path1 = commonPath[0];
    var path2 = validPaths[1];
    int index = path2.IndexOf('/');
    path2.Remove(index);
    requiredImage = path1 + path2;
    if (!string.IsNullOrEmpty(requiredImage))
    if (File.Exists(requiredImage))
    base64Image = CreateBase64Image(requiredImage);
    string fileExtension = Path.GetExtension(requiredImage);
    imageSource = "data:image/" + fileExtension.Remove(0, 1) + ";base64," + base64Image;
    if (!string.IsNullOrWhiteSpace(htmlContent))
    try
    HtmlDocument htmlDoc = new HtmlDocument();
    if (!string.IsNullOrEmpty(imageSource))
    htmlContent=htmlContent.Replace(requiredImage, imageSource);
    htmlDoc.LoadHtml(htmlContent);
    // HtmlNode node = new HtmlNode()
    signatureNode = (htmlDoc.DocumentNode.Descendants("body").FirstOrDefault());
    nodeCollection = signatureNode.ChildNodes;
    catch (Exception ex)
    AppLogException.LogError("Error in appending Signature Image", ex);
    if (tamList != null)
    tamList.ForEach(a =>
    //StringWriter sw = new StringWriter(new StringBuilder(a.MailItem.HTMLBody));
    HtmlDocument doc = new HtmlDocument();
    doc.LoadHtml(a.SourceEmail);
    var node = doc.DocumentNode.Descendants("div").FirstOrDefault();
    if(nodeCollection != null && node != null)
    foreach (var childNode in nodeCollection)
    node.AppendChild(childNode);
    a.MailItem.HTMLBody = doc.DocumentNode.OuterHtml;
    //using(HtmlTextWriter htmlWriter = new HtmlTextWriter(sw,a.MailItem.HTMLBody))
    // htmlWriter.RenderBeginTag(HtmlTextWriterTag.Div);
    // if(!string.IsNullOrWhiteSpace(signatureNode))
    // htmlWriter.
    // htmlWriter.RenderEndTag();
    }My mail html body is <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:w="urn:schemas-microsoft-com:office:word"
    xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
    xmlns="http://www.w3.org/TR/REC-html40">
    <head>
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <meta name=ProgId content=Word.Document>
    <meta name=Generator content="Microsoft Word 14">
    <meta name=Originator content="Microsoft Word 14">
    <link rel=File-List href="Sanjay%20S_files/filelist.xml">
    <link rel=Edit-Time-Data href="Sanjay%20S_files/editdata.mso">
    <!--[if !mso]>
    <style>
    v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    </style>
    <![endif]--><!--[if gte mso 9]><xml>
    <o:OfficeDocumentSettings>
    <o:AllowPNG/>
    </o:OfficeDocumentSettings>
    </xml><![endif]-->
    <link rel=themeData href="Sanjay%20S_files/themedata.thmx">
    <link rel=colorSchemeMapping href="Sanjay%20S_files/colorschememapping.xml">
    <!--[if gte mso 9]><xml>
    <w:WordDocument>
    <w:View>Normal</w:View>
    <w:Zoom>0</w:Zoom>
    <w:TrackMoves/>
    <w:TrackFormatting/>
    <w:PunctuationKerning/>
    <w:ValidateAgainstSchemas/>
    <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
    <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
    <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
    <w:DoNotPromoteQF/>
    <w:LidThemeOther>EN-US</w:LidThemeOther>
    <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
    <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
    <w:DoNotShadeFormData/>
    <w:Compatibility>
    <w:BreakWrappedTables/>
    <w:SnapToGridInCell/>
    <w:WrapTextWithPunct/>
    <w:UseAsianBreakRules/>
    <w:DontGrowAutofit/>
    <w:SplitPgBreakAndParaMark/>
    <w:EnableOpenTypeKerning/>
    <w:DontFlipMirrorIndents/>
    <w:OverrideTableStyleHps/>
    <w:UseFELayout/>
    </w:Compatibility>
    <m:mathPr>
    <m:mathFont m:val="Cambria Math"/>
    <m:brkBin m:val="before"/>
    <m:brkBinSub m:val="&#45;-"/>
    <m:smallFrac m:val="off"/>
    <m:dispDef/>
    <m:lMargin m:val="0"/>
    <m:rMargin m:val="0"/>
    <m:defJc m:val="centerGroup"/>
    <m:wrapIndent m:val="1440"/>
    <m:intLim m:val="subSup"/>
    <m:naryLim m:val="undOvr"/>
    </m:mathPr></w:WordDocument>
    </xml><![endif]--><!--[if gte mso 9]><xml>
    <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
    DefSemiHidden="true" DefQFormat="false" DefPriority="99"
    LatentStyleCount="267">
    <w:LsdException Locked="false" Priority="0" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
    <w:LsdException Locked="false" Priority="9" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
    <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
    <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
    <w:LsdException Locked="false" Priority="10" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Title"/>
    <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
    <w:LsdException Locked="false" Priority="11" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
    <w:LsdException Locked="false" Priority="22" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
    <w:LsdException Locked="false" Priority="20" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
    <w:LsdException Locked="false" Priority="59" SemiHidden="false"
    UnhideWhenUsed="false" Name="Table Grid"/>
    <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
    <w:LsdException Locked="false" Priority="1" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 1"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
    <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
    <w:LsdException Locked="false" Priority="34" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
    <w:LsdException Locked="false" Priority="29" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
    <w:LsdException Locked="false" Priority="30" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 1"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 2"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 2"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 3"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 3"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 4"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 4"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 5"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 5"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
    <w:LsdException Locked="false" Priority="60" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
    <w:LsdException Locked="false" Priority="61" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light List Accent 6"/>
    <w:LsdException Locked="false" Priority="62" SemiHidden="false"
    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
    <w:LsdException Locked="false" Priority="63" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
    <w:LsdException Locked="false" Priority="64" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
    <w:LsdException Locked="false" Priority="65" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
    <w:LsdException Locked="false" Priority="66" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
    <w:LsdException Locked="false" Priority="67" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
    <w:LsdException Locked="false" Priority="68" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
    <w:LsdException Locked="false" Priority="69" SemiHidden="false"
    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
    <w:LsdException Locked="false" Priority="70" SemiHidden="false"
    UnhideWhenUsed="false" Name="Dark List Accent 6"/>
    <w:LsdException Locked="false" Priority="71" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
    <w:LsdException Locked="false" Priority="72" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
    <w:LsdException Locked="false" Priority="73" SemiHidden="false"
    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
    <w:LsdException Locked="false" Priority="19" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
    <w:LsdException Locked="false" Priority="21" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
    <w:LsdException Locked="false" Priority="31" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
    <w:LsdException Locked="false" Priority="32" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
    <w:LsdException Locked="false" Priority="33" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
    <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
    <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
    </w:LatentStyles>
    </xml><![endif]-->
    <style>
    <!--
    /* Font Definitions */
    @font-face
    {font-family:Calibri;
    panose-1:2 15 5 2 2 2 4 3 2 4;
    "Times New Roman";
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    margin:0in;
    margin-bottom:.0001pt;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    "Times New Roman";
    "Times New Roman";
    p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
    "E-mail Signature Char";
    margin:0in;
    margin-bottom:.0001pt;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    "Times New Roman";
    "Times New Roman";
    span.E-mailSignatureChar
    {"E-mail Signature Char";
    "E-mail Signature";}
    .MsoChpDefault
    font-size:11.0pt;
    "Times New Roman";
    "Times New Roman";
    @page WordSection1
    {size:8.5in 11.0in;
    margin:1.0in 1.0in 1.0in 1.0in;
    div.WordSection1
    {page:WordSection1;}
    -->
    </style>
    <!--[if gte mso 10]>
    <style>
    /* Style Definitions */
    table.MsoNormalTable
    {"Table Normal";
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    </style>
    <![endif]-->
    </head>
    <body lang=EN-US style='tab-interval:.5in'>
    <div
    <p S<o:p></o:p></p>
    <p
    <p
    <p gte vml 1]><v:shapetype id="_x0000_t75"
    coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
    filled="f" stroked="f">
    <v:stroke joinstyle="miter"/>
    <v:formulas>
    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
    <v:f eqn="sum @0 1 0"/>
    <v:f eqn="sum 0 0 @1"/>
    <v:f eqn="prod @2 1 2"/>
    <v:f eqn="prod @3 21600 pixelWidth"/>
    <v:f eqn="prod @3 21600 pixelHeight"/>
    <v:f eqn="sum @0 0 1"/>
    <v:f eqn="prod @6 1 2"/>
    <v:f eqn="prod @7 21600 pixelWidth"/>
    <v:f eqn="sum @8 21600 0"/>
    <v:f eqn="prod @7 21600 pixelHeight"/>
    <v:f eqn="sum @10 21600 0"/>
    </v:formulas>
    <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
    <o:lock v:ext="edit" aspectratio="t"/>
    </v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:381.75pt;
    height:63.75pt'>
    <v:imagedata src="Sanjay%20S_files/image001.png" o:title="Signature"/>
    </v:shape><![endif]--><![if !vml]><img width=509 height=85
    src="Sanjay%20S_files/image001.png" v:shapes="_x0000_i1025"><![endif]><o:p></o:p></p>
    <p
    </div>
    </body>
    </html>

    Hi ssanjay.brillio,
    According to your description, you'd like to send a email with an embedded image in the signature.
    I suggest you sending the image in the last of the body of email instead of operating the signature of email.
    The following example codes demonstrate how to send email using ImportHtml method with embedded images.
    SmtpMail oMail = new SmtpMail("TryIt");
    SmtpClient oSmtp = new SmtpClient();
    // Set sender email address, please change it to yours
    oMail.From = "[email protected]";
    // Set recipient email address, please change it to yours
    oMail.To = "[email protected]";
    // Set email subject
    oMail.Subject = "test HTML email with embedded image";
    // Your SMTP server address
    SmtpServer oServer = new SmtpServer("smtp.emailarchitect.net");
    // User and password for ESMTP authentication, if your server doesn't require
    // User authentication, please remove the following codes.
    oServer.User = "[email protected]";
    oServer.Password = "testpassword";
    // If your smtp server requires SSL/TLS connection, please add this line
    // oServer.ConnectType = SmtpConnectType.ConnectSSLAuto
    try {
    // Import html body and also import linked image as embedded images.
    // 'test.gif is in c:\\my picture
    oMail.ImportHtml("<html><body>test <img src=\"test.gif\"> importhtml</body></html>", "c:\\my picture", ImportHtmlBodyOptions.ImportLocalPictures | ImportHtmlBodyOptions.ImportCss);
    Console.WriteLine("start to send email with embedded image ...");
    oSmtp.SendMail(oServer, oMail);
    Console.WriteLine("email was sent successfully!");
    } catch (Exception ep) {
    Console.WriteLine("failed to send email with the following error:");
    Console.WriteLine(ep.Message);
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Mail not showing embedded images

    This problem has been bugging me for a while.
    I am getting some emails (from my company communications) that are incorrectly formatted by Mail. I see big boxes labeled "Missing Plug-in". The rest of the text is there, but those big boxes make the mail hard to read.
    So today I decided to look a bit deeper into the problem. I brought it down to the presence of image tags that call for embedded images (included as attachments) using the "cid:" protocol. For example:
    <img src="cid:[email protected]" alt="Find" border="0">
    Is this a restriction in mail (I am running mail 6.1 on Mountain Lion). Or is there some config parameter I need to tweek to enable support for embedded images ?
    Thunderbird has no problem. I also did a quick check with Google Mail and Yahoo Mail, and neither show the images. But they just show nothing, so the resulting email is still readable. Mac OSX Mail shows big boxes with the "Missing Plug-in" note. I would be happy if Mail just ignored the images.
    I should point out that mail on iPhone and iPad work fine (they display the images).
    Albert

    Try this - worked for me...
    https://discussions.apple.com/message/20652845#20652845
    If that doesn't link properly, here's the original solution, cut and pasted:
    "MailPluginFix"
    From the Code2K:Labs site: http://code2k.net/products/mailpluginfix/
    From MacUpdate: http://www.macupdate.com/app/mac/37804/mailpluginfix
    Just download the fix and double-click it - next time you open mail, you'll see your attachments.

  • Issue opening .AI file with linked/embedded images in Illustrator 6

    Received an Illustrator 16.x ai file with 6 Linked\embedded images. Opening in Illustrator 16.0.3 2 images are missing, but opening in Illustrator 15.1 opens them correctly. Illustrator 16.0.3 has warning "Could not find linked file “filename.png”. Choose replace to select another file or Ignore to leave the link unchanged". Illustrator 15.1 has warning "The file “filename.ai” was created by a newer version of Illustrator. Would you like to import this file? Some data loss may occur.". When I open in Photoshop 12.1 and select Images only 4 images show. The two that are missing in ai. are not showing in Photoshop Images option tab, but are in Photoshop when I open the file using pages option tab. Any idea what is happening here and why Illustrator 15.1 opens fine, but Illustrator 16.0.3 cannot?
    Thanks,  Dale

    Illustrator CS5 opens the PDF part of the file. Images are always embedded in that part, but you might not be able to edit all objects in it.
    Illustrator CS6 will access the AI part of the file, where linked images are not embedded. You should ask for the images in order to edit the file.
    Recommended reading: Real World Illustrator: What's in a file?

  • Why can't I double click to open embedded images?

    I want to put this topic in the Features request, but I'm putting it here first to check that I've not made a silly mistake.
    I'm slowly getting the hang of Illustrator. But it often feels like I'm learning how to do things in a non-intuative way.
    Take Embedded images. Illustrator loves them. I guess its because it doesn't have a 'Collect for Output' feature - but don't get me started on that! Anyway, my point is when I receive a file with embedded images and I want to open those embedded images, my INTUITION tells me to simply double click the image and wait for it to open in Photoshop. After all, aren't Adobe always telling us that Illustrator and Photoshop are seamlessly integrated in ways Freehand can only dream of?
    So, I double click and nothing happens. I then double click the thumbnail picture in the Image box. Up comes a Link Information box. Lots of facts and figures except how to open it. Then I click on the blue underlined word saying 'Embedded'. More options here - but none of them any good because I haven't got the original on my system.
    To cut a long story short, I finally discover that by copying the embedded image, then opening Photoshop, then opening a new document, then pasting, then clicking the transform tick box, then flattening - I can get to see the embedded pic.
    No nifty link back though. If I want to update the image in Illustrator I have place it, scale it position it and delete the original. I tried Relink - but it pasted the new pic at 90 degrees to the original!
    So how about it? Double Click Embedded images to open in Photoshop? Change them and they automatically update in Illustrator? Am I asking too much? Am I missing the point?

    Not a feature. In fact, there's no way, using just Illustrator, to extract embedded images. But then, it's only at version THIRTEEN! I save a PDF using no downsampling or compression, then open in Photoshop. When you open a PDF in Photoshop you are given the option to rasterize any pages or extract images embedded in the PDF. Choose Images then select the images you want. Save as TIF or PSD and re-link in Illustrator.
    Yes, it is stupid.

  • RichEditableText with embedded images does not handle mouse events reliably

    I'm using Flash Builder "Burrito".  downloaded a couple of weeks ago.  Flash Player 10.1.85.3 debug version.
    I have the following MXML object:
    <s:Scroller
    width="100%" height="100%"
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    skinClass="components.skins.SxScrollerSkin"
    >
    <s:Group id="myGroup" width="100%" height="100%">
    <s:RichEditableText id="myRichText" >
    </s:RichEditableText>
    <!--- Do not set the height of the RichEditableText - since it seems to prevent the appearance of the vertical scroll bars -->
    </s:Group>
    </s:Scroller>
    With the following Actionscript to initialize, etc.
                textContainer = new SxBorderContainer(name);
                textContainer.dx = dxAvailable;
                textContainer.dy = dyAvailable;
    scroller = new SxScroller();
    scroller.move(dxPadding,dyPadding);
    scroller.dx = dxAvailable
    scroller.dy = dyAvailable;
    textContainer.addElement(scroller);
    var richText:RichEditableText;
    richText = scroller.richText;
    richText.toolTip = toolTip;
    richText.enabled = true; // required for mouse click capture
    richText.selectable = true; // required for mouse click capture
    richText.width = dxAvailable
         var textFlow:TextFlow = TextFlowUtil.importFromString(textFlowString, WhiteSpaceCollapse.PRESERVE);
          richText.textFlow = textFlow;
    And the following code to catch events:
                    richText.addEventListener(FlowElementMouseEvent.MOUSE_DOWN,userMouseEvent);
                    richText.addEventListener(FlowElementMouseEvent.MOUSE_UP,userMouseEvent);
                    richText.addEventListener(FlowElementMouseEvent.CLICK,userMouseEvent);
    Here's the problem.   If I have embedded images in the TextFlow that is imported into the richText, I only catch "some" mouse clicks.  It's hard to know, but it seems that only mouse clicks into white space (between paragraphs) are caught.  Mouse up and down are caught, but not "click".  Very puzzling.
    TextFlow like this:
        <TextFlow>
          <div color="#442222" fontFamily="Times New Roman" fontSize="20" paragraphSpaceAfter="15" textIndent="15">
            <p>
              <span>
                Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do:  once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, `and what is the use of a book,' thought Alice `without pictures or conversation?'
              </span>
            </p>
            <p>
                  <span>So she was considering in her own mind</span>
                  <img source="assets/library/alice/images/White Rabbit.png" height="auto" width="auto" float="left" />
                   <span> (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her.</span>
            </p>
    If there are no embedded imags, I get all clicks exactly.
    Is it a bug?  Am I missing something? 
    Thanks,
    Oz

    Thanks for the answer. First I need clicks anywhere in the RichEditableText (no links or images). I use the selection manager to find the exact word that was clicked.
    The next step would be to capture clicks on links and images.
    I have tried using MouseEvent and had the same result (or worse) as FlowElementMouseEvent.  I will go back and retest with your suggestion.
    Oz
    Result of retest:
    I catch clicks only over images embedded in the TextFlow.  I catch only mouse up/down over text - both MouseEvent and FlowElementMouseEvent.
    Puzzling.  Where are the clicks going?

  • Cannot create/reply/forward email on FireFox 15.0.1

    I was able to create/reply/forward email on AOL with FireFox 14 but with FireFox 15.0 the reply/forward feature only copied the email to the compose page on the first attempt - I had to end/restart FireFox each time I wanted to reply/forward. With the 15.0.1 upgrade I have lost the ability to create/reply/forward - the compose page works except I cannot issue the send or save commands (thank goodness for autosave). Switching to IE solves the problem but my browser of preferance is FireFox.
    This problem only exists for AOL webpage email - yahoo and gmail work perfectly.

    Is the problem with Send and Save that the buttons are missing or that they don't do anything?
    I don't have an AOL account to test, so I can only offer general advice.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove your aol.com cookies (save any pending work first) using either of these:
    * While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    A standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in Firefox's Safe Mode ([[Safe Mode]]) using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If the site works correctly, this points to one of your extensions or custom settings as the problem.
    Any change?

  • MIME emails not showing embedded images

    Hello.
    When I receive e-mails from a GroupWare solution (extra.groupcare.dk), embedded images are not shown in Mail 3.4. If I use Gmail or any version of Microsoft Outlook, even Mail 2.1 on Tiger it works fine.
    The images are shown as mime-attachment-x, and can be viewed with quick look.
    Here is an example of the original message.
    Return-Path: <[email protected]>
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: from localhost (localhost.localdomain [127.0.0.1])
    by mail1.unoeuro.com (Postfix) with ESMTP id C486515046BE
    for <[email protected]>; Mon, 8 Sep 2008 08:57:32 +0200 (CEST)
    X-Spam-Flag: NO
    X-Spam-Score: 1.578
    X-Spam-Level: *
    X-Spam-Status: No, score=1.578 tagged_above=-999 required=3
    tests=[BADENCHEADER=1.81, BAYES_00=-2.599, HTMLIMAGE_ONLY16=1.526,
    HTML_MESSAGE=0.001, HTMLSHORT_LINK_IMG2=0.001, MPARTALTDIFF=0.739,
    RDNS_NONE=0.1]
    Received: from mail1.unoeuro.com ([127.0.0.1])
    by localhost (mail1.unoeuro.com [127.0.0.1]) (amavisd-new, port 10024)
    with ESMTP id KFQYIUOwjdYq for <[email protected]>;
    Mon, 8 Sep 2008 08:57:25 +0200 (CEST)
    Received: from smtp.groupcare.dk (unknown [195.215.6.93])
    by mail1.unoeuro.com (Postfix) with ESMTP id 018311504693
    for <[email protected]>; Mon, 8 Sep 2008 08:57:19 +0200 (CEST)
    Received: from compnet02 ([127.0.0.1])
    by smtp.groupcare.dk (IceWarp 9.1.1) with ESMTP id OPN49915
    for <[email protected]>; Mon, 08 Sep 2008 08:57:15 +0200
    MIME-Version: 1.0
    From: "=?utf-8?Q?Jesper N=C3=B8rregaard Henriksen?=" <[email protected]>
    Sender: "=?utf-8?Q?Jesper N=C3=B8rregaard Henriksen?=" <[email protected]>
    To: [email protected]
    Date: 8 Sep 2008 08:57:15 +0200
    Subject: =?utf-8?B?SW52aXRhdGlvbiB0byBqb2luIEplc3BlcnNHUlA=?=
    Content-Type: multipart/alternative;
    boundary=--boundary0f027f802-c3aa-47d1-923c-d81cfe8e7a5c
    Message-Id: <[email protected]>
    ----boundary0f027f802-c3aa-47d1-923c-d81cfe8e7a5c
    Content-Type: text/plain; charset=utf-8
    Content-Transfer-Encoding: base64
    PHByZT48cHJlPkludml0YXRpb24gdG8gZ3JvdXAuDQ1IaQ1KZXNwZXIgTiYjMjQ4O3JyZWdh
    YXJkIEhlbnJpa3NlbiBoYXMgaW52aXRlZCB5b3UgdG8gYmVjb21lIGEgbWVtYmVyIG9mIHRo
    ZSBpbnRlcm5ldCBncm91cA0KSmVzcGVyc0dSUC4gVGhlIGNvbW1vbiBlbWFpbCBhZGRyZXNz
    IG9mIHRoZSBncm91cCBpcyBqZXNwZXJzZ3JwQGV4dHJhLmdyb3VwY2FyZS5kaywgd2hlbg0K
    bWVzc2FnZXMgYXJlIHNlbnQgdG8gdGhpcyBhZGRyZXNzIHRoZXkgYXJlIGRpc3RyaWJ1dGVk
    IHRvIGFsbCBtZW1iZXJzLg0NQ2xpY2sgdGhlIG9rIGJ1dHRvbiB0byBqb2luIHRoZSBncm91
    cC4NR3JvdXAgTmFtZTogSmVzcGVyc0dSUA1Hcm91cCBEZXNjcmlwdGlvbjoNR3JvdXAgRW1h
    aWw6IGplc3BlcnNncnBAZXh0cmEuZ3JvdXBjYXJlLmRrDQ1SZWdhcmRzLA1KZXNwZXIgTiYj
    MjQ4O3JyZWdhYXJkIEhlbnJpa3Nlbg0KPC9wcmUPC9wcmUDQoNClNpZ251cCBVUkw6IGh0
    dHA6Ly9leHRyYS5ncm91cGNhcmUuZGsvU2lnbnVwLmFzcHg/aWQ9ZGE2NTA4OWEtYmY4Ny00
    ZTBhLTg3MTEtMTBjYzJlNjA2MzBmJmludklkPTU2NjMwNDRmLTQxMzUtNDFlMC05ZTMyLTM5
    YzUzZWUwNTg1MA0KDQpEZWNsaW5lIFVSTDogaHR0cDovL2V4dHJhLmdyb3VwY2FyZS5kay9E
    ZWNsaW5lSW52aXRhdGlvbi5hc3B4P2lkPWRhNjUwODlhLWJmODctNGUwYS04NzExLTEwY2My
    ZTYwNjMwZiZpbnZJZD01NjYzMDQ0Zi00MTM1LTQxZTAtOWUzMi0zOWM1M2VlMDU4NTA=
    ----boundary0f027f802-c3aa-47d1-923c-d81cfe8e7a5c
    Content-Type: multipart/related;
    boundary=--boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf; type="text/html"
    ----boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf
    Content-Type: text/html; charset=utf-8
    Content-Transfer-Encoding: base64
    PGh0bWwPGhlYWQPC9oZWFkPjxib2R5Pjx0YWJsZSBjZWxsc3BhY2luZz0nMCcgY2VsbHBh
    ZGRpbmc9JzAnIGJvcmRlcj0nMCc+PHRyPjx0ZCBhbGlnbj0nbGVmdCcgd2lkdGg9JzElJz48
    aW1nIHNyYz0nY2lkOkdjTG9nbycPC90ZD48dGQgd2lkdGg9Jzk5JScPC90ZD48L3RyPjx0
    cj48dGQgY29sc3Bhbj0nMic+PGhyIHN0eWxlPSdoZWlnaHQ6MXB4O2NvbG9yOiNCREM4RDMn
    Lz48L3RkPjwvdHIPHRyPjx0ZCBjb2xzcGFuPScyJz4mbmJzcDs8L3RkPjwvdHIPHRyPjx0
    ZCBjb2xzcGFuPScyJz48cHJlPjxwcmU+SW52aXRhdGlvbiB0byBncm91cC4NDUhpDUplc3Bl
    ciBOJiMyNDg7cnJlZ2FhcmQgSGVucmlrc2VuIGhhcyBpbnZpdGVkIHlvdSB0byBiZWNvbWUg
    YSBtZW1iZXIgb2YgdGhlIGludGVybmV0IGdyb3VwDQpKZXNwZXJzR1JQLiBUaGUgY29tbW9u
    IGVtYWlsIGFkZHJlc3Mgb2YgdGhlIGdyb3VwIGlzIGplc3BlcnNncnBAZXh0cmEuZ3JvdXBj
    YXJlLmRrLCB3aGVuDQptZXNzYWdlcyBhcmUgc2VudCB0byB0aGlzIGFkZHJlc3MgdGhleSBh
    cmUgZGlzdHJpYnV0ZWQgdG8gYWxsIG1lbWJlcnMuDQ1DbGljayB0aGUgb2sgYnV0dG9uIHRv
    IGpvaW4gdGhlIGdyb3VwLg1Hcm91cCBOYW1lOiBKZXNwZXJzR1JQDUdyb3VwIERlc2NyaXB0
    aW9uOg1Hcm91cCBFbWFpbDogamVzcGVyc2dycEBleHRyYS5ncm91cGNhcmUuZGsNDVJlZ2Fy
    ZHMsDUplc3BlciBOJiMyNDg7cnJlZ2FhcmQgSGVucmlrc2VuDQo8L3ByZT48L3ByZT48L3Rk
    PjwvdHIPHRyPjx0ZCBhbGlnbj0nbGVmdCcgY29sc3Bhbj0nMicDQoNCjxicj48YSBocmVm
    PSdodHRwOi8vZXh0cmEuZ3JvdXBjYXJlLmRrL1NpZ251cC5hc3B4P2lkPWRhNjUwODlhLWJm
    ODctNGUwYS04NzExLTEwY2MyZTYwNjMwZiZpbnZJZD01NjYzMDQ0Zi00MTM1LTQxZTAtOWUz
    Mi0zOWM1M2VlMDU4NTAnPjxpbWcgc3R5bGU9J2JvcmRlci1jb2xvcjpXaGl0ZScgc3JjPSdj
    aWQ6SW52aXRhdGlvbkFjY2VwdCc+PC9hPg0KDQo8YSBocmVmPSdodHRwOi8vZXh0cmEuZ3Jv
    dXBjYXJlLmRrL0RlY2xpbmVJbnZpdGF0aW9uLmFzcHg/aWQ9ZGE2NTA4OWEtYmY4Ny00ZTBh
    LTg3MTEtMTBjYzJlNjA2MzBmJmludklkPTU2NjMwNDRmLTQxMzUtNDFlMC05ZTMyLTM5YzUz
    ZWUwNTg1MCc+PGltZyBzdHlsZT0nYm9yZGVyLWNvbG9yOldoaXRlJyBzcmM9J2NpZDpJbnZp
    dGF0aW9uRGVjbGluZScPC9hPjwvdGQ+PC90cj48dHIPHRkIGNvbHNwYW49JzInPiZuYnNw
    OzwvdGQPC90cj48dHIPHRkIGNvbHNwYW49JzInPjxociBzdHlsZT0naGVpZ2h0OjFweDtj
    b2xvcjojQkRDOEQzJy8PC90ZD48L3RyPjwvdGFibGUPC9ib2R5PjwvaHRtbD4=
    ----boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: base64
    Content-ID: <InvitationAccept>
    R0lGODlhQwAYANUAAAAAAP///wAAgAAAMwAzmQBmzJnM/6bK8Mzs/zOZzGbM/5nMzJnMZpnM
    M8zMM5mZM8zMZpmZZszMmf//zOfn1q2pkP/78P/MZsxmAP/MmZkzAGYAADMAAPHx8erq6uPj
    493d3dfX18vLy8DAwLKyspaWloaGhoCAgAQEBP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACkALAAA
    AABDABgAAAb/wIBwSCwaj8ikcik8OJ/QqHRKrVqvgQNoy16v+CweCwZEGdtHrNbrvf8Lgb
    ZNbK2Y8H5c7vr+lnbiSDhIMVeRUkfotygHZtJoWEDA0QIyaMHRMbAwaZaY5obRVHDg4SHyVw
    myitAghpm52fHaFupEUUph2pbxcor5qcnrKen7ajRhIOEAG9bRQaKApqvwQIxdEoBYvIbKQU
    FkOmEs6qbRkcs2npncUY24zeaxXLzQG6Dh3mbunBscNkRUBxTV4dUd+WnQpgT8gzNu2MdYjI
    qlXBbgdvBYBgKl85ftCkUUtjDdsGFAmkJTAYKJkFjqb0OTyHjkOwiMI6/frXZ54ag1z5mA15
    2KYiMFg5PcG7yAfQghAekglR+BEkrU8eQiwIQOLAB0giwoqI8GCE2BEnrtL6cIBEgBELvLIJ
    QbduhLp11WZiu2CEEBJxv+od7MYDX7dCRgDWQqax48ddQhxYQMLvEMVdr2jezBkK5cpGMEsa
    Tbq06dOoLR9Bzbq1a0mqhQQBADs=
    ----boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: base64
    Content-ID: <InvitationDecline>
    R0lGODlhXAAYANUAAAAAAP///wAAgAAAM6CgpAAzmTNmzABmzJnM/6bK8Mzs/zOZzGbM/wBm
    ZpnMzJmZZv//zOfn1q2pkMyZM//MZsxmAJlmM//Mme/WxpkzAMxmM2YAADMAAMyZmfHx8erq
    6uPj493d3dfX18zMzMvLy8DAwLKyspaWloaGhgQEBP///wAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACoALAAA
    AABcABgAAAb/wIBwSCwaj8ikcslsChPQqHRKrVqv2Kx2G0iEvuCweEwum8/oNDrRDXne8Lh8
    Tq/b7/i8PcT2ziMWEXaAgnqGh4h0fG1zFhoaKCeSkycojxaJmZp5i35yEY8aIyCkpCOhJJuq
    chAbAwiInW5zJ6ERQ6CPJyJ1rSm/KQyrdq2vsX2zchK5GrfMGAS8cxQpAgpvFcLDdMWwh7J0
    EgHPth7Rc77acL6/xhccAw+/C28RGcAHHvbAwt3HjHPEjQv16JY5aXHeWbOjUMG7FAcapvNw
    wUC3i668GQIXcAiGUBiEHJxW7RqrDcCsvXvVjVoBkx5cXquQYoG/b8jCCWFWMMBI4jkNgcJD
    0Erl0G4TIMZJCmzezY05O5Ir+DPOxKUpXhZ1eDSjTDhf12X850kZM2cgz5Fc6CGbTGpGWWac
    WPHqBAZP9XCUU6vnzlC76jzk1/ZXgw1xiY7d9ysf4194xIM4EDEh02ijBLta3zoQ8iHAQw
    kQCEHEcaOpBYzZpEh0ueYcBkcBEgBIOSscBREKE79/SQSSTZwObQclhJjIbbq480wfjtsW
    UmK5FzXYs2vfHkZEAgcmkgpTnqL+fPo00sBH94IeRPw48ufT7++/fv48uPL/7I/v8ABijg
    fP0JEQQAOw==
    ----boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf
    Content-Type: application/octet-stream
    Content-Transfer-Encoding: base64
    Content-ID: <GcLogo>
    R0lGODlhowAfAMQAAPv8/Ofr7/f4tjd5cTM2MzT3fP19+Pn7dTa4sjQ2tzh5vu8t/k6tDX
    4O/x9MDJ1f///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    ACwAAAAAowAfAAAF/yAkjmRpnmiqrmzrvnAsz3Rt33ius4YTMMDgwSHYGY/IJMRwGDQaiqED
    MBI4mgVFUcntekmCAyIxCBhegQTjy27HAIHDFiJQFBINxOIEl6MABQMmVg4OZySFhXMlhFOM
    DiZEIwCJjoOJVJcnPYknlZ00BgQPpAEBBQ8DDgOkDwWZIqKtASgCBJAiAAitpAlbDrykCLAA
    DcFrI8a4IsANIwzBBAqTCsGCYKTIJMa8CbTMwaSHMru8UVTA5tu8BLAlA9qoDWdww+AFhacP
    ziLGCEUOEjw4kOzBMgjNnqUqdGAUsmoFihhAUKAEtAcJTBiTUu3BIWD4KtUItxiK34iSPi
    YHAtAEZ3iPZVIQWu3QhgBAoeTCgCmrYFMgWQWmRCoLE965axQsbzhgGBvMa55IWABNRW40og
    QLZrGoqmAGhCgFaVBClcymKi9DkCqDOXFVMAReCyrM4RS8GhpCFgVzlSewFcNUjCpEw+t0Sg
    +ubp8MRU/R5oi0wQQtqbh8dKzmVsGrS9JnYFADBqUVo4Dwj8clUJJouLDQQEeKIApgAnCA6K
    mN2AgeueGVMSRhgEVzpzmYxNtryZ+c7M0PA0GPVKM2hsOSGw8hq527LjrXSreErqAIMn6BsM
    kIgg/ROk592vZ5RYhMBvswUyZY1qsvIS/zmnlkLSKcDYZyl8Vgj/NNlRdkBq7oAkkgsXEWAA
    K+GkBl4wYmT40iRZrMOdZvs5Y8BZeD0wIgSjoDWcXgotJ8KDwZ0w2Cx37bJXUy4UQ8orG3qY
    4ShCajOAXTNiVFhzPDGYCVzYPJDciwhB11wJJz5AlAhA1QhBNSidNkplVV6nggCouELFX0K2
    KWR2A1QHhkMxwqjYA2WR9gBju1wDQZ8kANrTlQCqyUxlnZGQ5RaXAeWRnS3IYiiLblYq5AKB
    /BYAdU/QWWYVY8bCqUByLjGKdKTCwhYfqOCBioVCPUoCKl5dpp2hQcpqgp6pbZGlpcCysyIj
    B6BnYCYCMIDUbg0wFsYTdA0ixhNlRMiApniTBNAeAgegA0QkDODn2yQIzJdsEEFseWcpmAXr
    LgHLuiEvGyZ56ai7ljbw27z8HhEruwrh6ya8/RbchWEHGSZwOOMa7DAS3Iij6HkLW6Puwxjb
    MBhjAVc8X8Yg6xDxh0sKrMa+Iaccg8IRlRysHirHjAMg4QxwiMJCNouyzDz3yCYvDdwYDBmj
    9Ww0DqsQ6SYUAVx89NMz9IBuEAtYAvXVWGetcggAOw==
    ----boundary1bf4e0ee6-0c12-47de-8a15-708b7ae8eabf--
    ----boundary0f027f802-c3aa-47d1-923c-d81cfe8e7a5c--
    Hope you can help!

    I tried to convert your base64 code and it seemed valid.
    The situation you describe is normal to me, though, because I have unticked "Show external images in HTML-messages" in Mail's preferences to save bandwidth when I'm on a mobile connection or similar. Whenever i get one of thoses HTML-mails, e.g. from iTunes Store with a lot of missing images, there will be a blue field at the top of the mail window stating that "This messages contents unloaded images" (or whatever the English translation would be). Additionally, there's a "Download images"-button to get the the missing images.
    I don't want to be unpolite, but could that be the case for you too?

  • How to use embedded image in TextArea in Air (differs from Flex) ?

    So I was trying the example from the LiveDocs:
    Making hyperlinks out of embedded images
    http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_04.html
    This doesn't seem to work in an Air application (the image doesn't show).
    Even simply adding an image with a relative path doesn't work in Air (the image doesn't show either):
        <mx:Image source="../assets/butterfly.gif" />
    I'm sure I must be missing something really straightforward here, can anyone help ?
    Also, more generally, where I can see the source code of TextArea and RichTextEditor, understanding their inner working would be a great help.
    Thanks

    Embedding images in htmlText in a TextFiled isn't supported in AIR.
    See: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.ht ml#htmlText
    The source for the Flex components is included in the Flex SDK.

  • Drag n Drop with Non-embedded Images?

    Hi,
    All of the Drag 'n Drop demos use an embedded image. For
    example:
    [Embed(source='someImage.jpg')]
    public var someImage:Class;
    // in the drag handler...
    var imageProxy:Image = new Image();
    imageProxy.source = someImage;
    And that works. However, this doesn't work:
    <mx:Image id="myImage" source="someImage.jpg"/>
    // in the drag handler...
    var imageProxy:Image = new Image();
    imageProxy.source = myImage.source;
    Am I missing something? Or is embedding mandatory?

    Hi,
    another idea:
    Go to analysis mode in your workbook.
    a) Select your analysis grid.
    At general tab -> activate "apply formatting" and "allow navigation".
    Refer here: [http://help.sap.com/saphelp_nw2004s//HELPDATA/EN/85/1321d0b7864766b5208a0b221a7608/frameset.htm]
    or
    b) Select navigation pane
    Activate "Allow navigation"
    Refer here:
    [http://help.sap.com/saphelp_nw2004s//HELPDATA/EN/85/1321d0b7864766b5208a0b221a7608/frameset.htm]
    Good luck
    Regards
    Edited by: Tobias on Jun 5, 2008 5:18 PM

  • Missing important image functions - going for Hype

    I made a product presentation with a meny system and aniamtions using Edge.
    I unfortunatelly found some very important functions were missing.
    So I´m going for Hype now, that has got all of these.
    So all the job has to be doe again :-(
    I didn´t find any feedback area for Edge Animate, so I´m putting it here. The things missing are:
    - Automatic Image optimization (like in Muse)
    - No support for PSD
    - No retina support
    - Can´t replace image, e.g from PNG to JPG (I made it thou by editing the JS-file, but that seems scary)
    These are all small matters for Adobe to fix and I suppose they are doing this in the future.
    I really like Edge Animate thou, but since it lacks important workflow functions I can´t use it in production.

    Hi,
    Thanks. Yes, that worked.
    I actually didn´t find this because in all other Adobe applications, this is done from the Library panel.
    I really stress the importance for you to make your/Adobe applications the same. We users love Adobe apps, but are really not liking the unnecessary different solutions in some of them. It´s frustrating and a complete waste of time.
    I actually remade the whole animation using (Tumult) Hype.
    It´s much easier to work with. Edge seems good to work with Javscript, but with Hype editing Javascripts is not as much necessary since there are pre-made solutions.
    You should also look into some things Hype has that is really important:
    - Automatic generation of Retina images
    - Automatic resampling of images
    - Scenes (a very nice way to work)
    All in all, Hype is much more efficient to work with.
    A thing that I do want in Edge (and Hype) is
    - When using Photoshop originals, it should be possible to set how each image should be exported, i.e as JPG (and setting quality) or PNG.
    In the real practical user world, we do only want ONE image to carry around for different purposes, it.e web, animations, videos, print.
    And when designing (doing layout) in i.e Edge, I do not always from start know if the image could be in JPG or if it must PNG because it is e.g. overlapping.
    The feature of settings export options for Photoshop images, I also would like to see in Muse. As well as Retina support in Muse that i REALLY want.
    I like Edge (and really like Muse), but as it is now, selection Hype is an easy choice over Edge.
    I hope that you do update Edge to support an extremely good workflow - then I will certainly selected Edge, since I already do pay for it anyway
    Best regards
    Bosse Nilsson
    Tel +46 (0)703-233 150
    2014-02-11 kl. 19:28 skrev elainefinnell <[email protected]>:
    Re: Missing important image functions - going for Hype
    created by elainefinnell in Edge Animate CC - View the full discussion
    Hi, man&mouse-
    Please note that there is a way to swap images, though it will try to fit the new image into the old dimensions.
    Select your image element
    In the properties panel, look at the Images section
    Next to the image name, select the double arrow key
    Select your new image (must already be in the Library)
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6110226-548268/437-302/ScreenShot2014-02-11at10.27.07+AM.png
    Hope that helps!
    -Elaine
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6110226#6110226
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6110226#6110226
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6110226#6110226. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Edge Animate CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for