Text formatting in oam file disappears

Hi,
Here is the problem : I have an edge animate file with some text which supports letter-spacing and line-height. If i try this file directly from edge animate, no problem in the navigator (tested with Firefox). But when I export it as OAM file, import it in Muse, then publish.. all the settings (letter spacing and line-height) disappeared. (may be also with word-spacing and some other css settings, I haven't tried yet)
I made a test with a very simple new Edge file and a new Muse file with only the oam file imported. The result is the same : no more settings for css like letter-spacing or line-height. You can try on your own.
This happens since the last update of Edge and Muse. It worked well before.
Hope this bug will be fixed very soon 'cause I was almost ready to publish my site.. but now it's unpublishable.
Niko

This bug has been reported already. It happens only after publishing to any format(web, oam).
Line-height and text shadow properties have the problem. Rest all work as usual.
You can use the below code as workaround for time being in the composition ready event handler for each text element. Add for text shadow also if you are using that proerty too.
          sym.$("Text").css({"line-height":"40px"});

Similar Messages

  • Text format + attached image files or Html format + displayed images ?

    Hi, I have this kind of probleme and I need some help.
    (Code : see below)
    I want to send a mail with some attached image files.
    For the message part, I create a MimeBodyPart and add two kinds of message (text or html) and this part is multipart/alternative.
    For the attachment part, I create another MimeBodyPart and I set the Header like this : xxx.setHeader("Content-ID", "<image>").
    When I use outlook (html format) , I receive a mail with the picture displayed at the bottom, it's perfect.
    However the problem is for the mailbox which is in text mode, I receive a mail with message + attachment files, but I also have some image frames generated by xxx.setHeader("Content-ID", "<image>") I guess.
    Who can give me a hand to implement something that able to make difference according to text format or html format.
    I post my code here, thanks a lot :
    //set Message
         msg.setText(pMsgText, DEFAULT_CHARSET);
         // Partie Texte brut
         MimeBodyPart textPart = new MimeBodyPart();
         String header = "";
         textPart.setText(header + pMsgText, DEFAULT_CHARSET);
         textPart.setHeader(
                   "Content-Type",
         "text/plain;charset=\"iso-8859-1\"");
         textPart.setHeader("Content-Transfert-Encoding", "8bit");
         // Partie HTML
         MimeBodyPart htmlPart = new MimeBodyPart();
         String images = BTSBackUtil.generateImgSrc(pictureContainers.length);
         String endPart = "</div>\n</body>\n</html>";
         htmlPart.setText(pMsgTextHTML+images+endPart);
         htmlPart.setHeader("Content-Type", "text/html");
         // create the mail root multipart
         // Multipartie
         Multipart multipart = new MimeMultipart("mixed");
         // create the content miltipart (for text and HTML)
         MimeMultipart mpContent = new MimeMultipart("alternative");
         // create a body part to house the multipart/alternative Part
         MimeBodyPart contentPartRoot = new MimeBodyPart();
         contentPartRoot.setContent(mpContent);
         // add the root body part to the root multipart
         multipart.addBodyPart(contentPartRoot);
         // add text
         mpContent.addBodyPart(textPart);
         // add html
         mpContent.addBodyPart(htmlPart);
         // this part treates attachment
         if (pictureContainers != null){
              PictureContainer pictureContainer = new PictureContainer();
              String fileName = "";
              for(int i = 0; i < pictureContainers.length; i++) {
                   pictureContainer = pictureContainers;
                   byte[] bs = pictureContainer.getImgData();
                   fileName = "image" + i +".jpg";
                   DataSource dataSource = new ByteArrayDataSource(fileName, "image/jpeg", bs);
                   DataHandler dataHandler = new DataHandler(dataSource);
                   MimeBodyPart mbp = new MimeBodyPart();
                   mbp.setDataHandler(dataHandler);
                   mbp.setHeader("Content-ID", "<image"+i+">");
                   mbp.setFileName(fileName);
                   multipart.addBodyPart(mbp);
    // end attachment
    msg.setContent(multipart);

    Hi All!!! I have created this code , i hope this w'll solve u'r problem , this code display u'r html text and display the images below on it, no need to attach the image...... byee.
    package Temp;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.activation.URLDataSource;
    import javax.mail.Authenticator;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class HtmlImageExample {
    public static void main (String args[]) throws Exception {
    String host = "smtp.techpepstechnology.com";;
    String from = "[email protected]";
    String to = "[email protected]";
    //String to = "[email protected]";
    String dir=null;
    //String file = "C://NRJ/EmailApp/src/java/MailDao//clouds.jpg"];
    //File file = new File("C:\\NRJ\\EmailApp\\src\\java\\Temp
    Sunset.jpg");
    // Get system properties
    //Properties props = System.getProperties();
    HtmlImageExample html1 = new HtmlImageExample();
    html1.postImage(to,from);
    // Setup mail server
    String SMTP_HOST_NAME = "smtp.techpepstechnology.com";//smtp.genuinepagesonline.com"; //techpepstechnology.com";
    String SMTP_AUTH_USER = "[email protected]"; //[email protected]"; //techpeps";
    String SMTP_AUTH_PWD = "demo"; //techpeps2007";
    //my code
    public void postImage(String to, String from) throws MessagingException, FileNotFoundException, IOException
    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    // props.load(new FileInputStream(file));
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    // Create the message
    Message message = new MimeMessage(session);
    // Fill its headers
    message.setSubject("Embedded Image");
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setContent
    h1. This is a test
    + "<img src=\"http://www.rgagnon.com/images/jht.gif\">",
    "image/jpeg");
    // Create your new message part
    //BodyPart messageBodyPart = new MimeBodyPart();
    //mycode
    MimeMultipart multipart = new MimeMultipart("related");
    MimeBodyPart mbp1 = new MimeBodyPart();
    // Set the HTML content, be sure it references the attachment
    String htmlText = "<html>"+
    "<head><title></title></head>"+
    "<body>"+
    " see the following jpg : it is a car!
    "+
    h1. hello
    "+
    //"<IMG SRC=\"CID:Sunset\" width=100% height=80%>
    "+
    "<img src=\"http://www.yahoo.com//70x50iltA.gif\">"+
    " end of jpg"+
    "</body>"+
    "</html>";
    mbp1.setContent("h1. Hi! From HtmlJavaMail
    <img src=\"cid:Sunset\">","text/html");
    MimeBodyPart mbp2 = new MimeBodyPart();
    mbp2.setText("This is a Second Part ","html");
    // Fetch the image and associate to part
    //DataSource fds=new URLDataSource(new URL("C://NRJ//MyWeb//logo.gif"));
    FileDataSource fds = new FileDataSource("C://NRJ//MyWeb//Sunset.jpg");
    mbp2.setFileName(fds.getName());
    mbp2.setText("A Wonderful Sunset");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setHeader("Content-ID","<Sunset>");
    // Add part to multi-part
    multipart.addBodyPart(mbp1);
    multipart.addBodyPart(mbp2);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    //mycode
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);

  • Text Edge preview 6, .oam files

    Hi Adobe Team
    I am creating a folio. I have text on top of an imported edge .oam file in InDesign.
    When I launch the folio, the text appears for awhile then disappears when the animated edge runs.
    My only other choice is to not place the text in the image but that would defeat the purpose. How can I solved this issue?
    Angelique Anderson

    They’re called overlays for a reason. You cannot put static content above them.
    You can try turning the text into a button that, IMO, is a rather dangerous workaround. Why not just put that text right into the Edge file?
    Bob

  • To get the content of a pdf file in a particular position in text format

    I am troubling with geting the content of a pdf file in a particular position.I got the code to get the content of a pdf document as whole in text format.But i only need the content at a particular area.
    i am using PDFTextStripper class in pdfBox jar to get the content as whole.
    pls send some sample code
    pls help me
    Edited by: thomas00 on Sep 21, 2007 2:55 AM
    Edited by: thomas00 on Sep 21, 2007 3:08 AM

    pls any one reply

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • Using File Content Conversion converting XML format to text format

    Hi All,
                 I am able to convert to Text format using file content conversion, But the requirement is to convert the same for the structure with additional subnodes  as in the example (also complex nested structures)
    <ns0:SendXSDEmployeeDetails xmlns:ns0="http://ehro.eds.com/FRAMEWORK/FileToFile/FileCConverion">
        <Employee>
                  <Employee_ID>2</Employee_ID>
                   <Employee_Name>KannanKumar</Employee_Name>
                     <Address>
        <Street>13th Cross Reddy</Street>
        <City>Bangalore</City>
        <Pincode>641026</Pincode>
        <Phone_No>
            <t1>9901934934</t1>
            <t2>9901934934</t2>
        </Phone_No>
    </Address>
       </Employee>
    </ns0:SendXSDEmployeeDetails>
    can any one help on this please
    I have already seen the blogs :
    /people/krishnakumar.ramamoorthy3/blog/2007/01/27/generic-mapping-to-convert-nested-xml-to-flat--receiver-file-adatper
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping
    <b>Can any one help to do  this in simple way</b><br>

    Hi,
    Like correctly pointed by JaiShankar, the Sender File Adapter currently does not supoort such stracutures.
    the strcuture supported is described in this link,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm
    Regards
    Bhavesh

  • On Pages 09. Error Message "Missing Font" - text on all my files/Documents has disappeared. I know it is still there from the word count - but it is invisible. Any clues Gratefully received.

    On Pages 09. Error Message "Missing Font" - text on all my files/Documents has disappeared. I know it is still there from the word count - but it is invisible. Any clues Gratefully received.

    What version of Pages '09?
    Have you updated it to the latest iWork '09 v4.3?
    Peter

  • File Conversion  From XLS  format to TEXT format

    Dear All,
    Could You please let me know if there is any standard program that can be used to convert XLS format input file to TEXT  format..Other wise could you provide me a code for that .
    Thanks & Regards
    Avik.

    Hi,
    Upload Excel file and download GUI_DOWNLOAD as txt file.
    Regards
    Md.MahaboobKhan

  • Default file associations and RTF (rich text format)

    I use pop3 email accounts for work.
    I receive daily emails with .rtf (rich text format) file attachments.
    When I open the emails, the attachments are listed.
    I touch to open and QuickOffice loads to open them.
    According to the QuickOffice website, QuickOffice does not support rtf files.. and it certainly does error on them. Why does QuickOffice open at all? I do not need any of its functions except the one it doesn’t have.
    I have installed at present, this list of file managers.
    Android’s default file manager
    OI File Manager
    Astro file manager
    Cool reader
    All of these applications support rtf files.
    How do I set the file association for rtf files to an application which supports them?
    Thanks for reading.

    I have the same problem any help would be appreciated

  • Can java write greek characters to an RTF (Rich Text Format) File???

    Can java write greek characters to an RTF (Rich Text Format) File???

    As far as I'm aware, java can put text in any font to an RTF file as long as that font is available on your machine.

  • Forms calling a rich text format (.rtf) file

    Good day!
    Suppose I made up a report from oracle forms then used the options 'generate to file' > XML.
    Uses Microsoft Word 2010 with an add-ins 'Oracle BI Publisher' and make designs in my report then save it to .rtf (Rich Text Format).
    My question is how can I call my reports and display it using oracle forms?

    RTF files must be feeded by XML.
    Your answer is not just that simple. Besides, I've search for it already.
    Maybe my question to you is, is that possible?

  • Conversion of a attached file in raw format to text format

    Hi All,
           We have a requirement where in which we will be getting an attachement to the mail which wil be in rqw format,we wanted to convert this attachement in raw format to text fiel.Is there any function moduel for the same.
            Pointers wil be appreciated.
            Thanks in advance.
    Regards,
    zareena.

    Hi,
    Check this FM'S,
    SX_OBJECT_CONVERT_RAW_TXT
    SCMS_BINARY_TO_TEXT
    for more info search SDN forum with the keyword 'raw to text format'
    Regards
    Adil

  • Please help! Text format disappear after upgrade to vs2005

    Post Author: oim
    CA Forum: General
    So I upgraded my VS2003 crystal version 10  C# code to VS2005 but the compiler gave me this error: 'CrystalDecisions.Shared.ExportFormatType' does not contain a definition for 'Text'     the ExportFormatType enum now only has        NoFormat = 0,        CrystalReport = 1,        RichText = 2,        WordForWindows = 3,        Excel = 4,        PortableDocFormat = 5,        HTML32 = 6,        HTML40 = 7,        ExcelRecord = 8, How do I get the Text format back? Thanks a lot!  

    Try deleting the .plists for Adobe Acobat.
    Quit the application.
    You need to look in your user Library/Preferences for the .plist. Either hold down the option key while using the Finder “Go To Folder” command and select your user Library in your home folder or use the Finder “Go To Folder” command and enter ~/Library/Preferences.  Move the .plist(s) to your desktop.
    Open the application and test. If it works okay, delete the plist(s) from the desktop.
    If the application is the same, return the .plist(s) to where you got them from, overwriting the newer ones.
    If you prefer to make your User library permanently visible, use the Terminal command found below.
    Show User Library
    You might want to bookmark the command. I have to use it again after every update. I have also been informed that if you drag the user library to Finder it will remain visible.

  • Unable to save Photoshop files in original folder: file disappears

    Hi,
    At random moments when I'm saving layered Photoshop CS5 files, a message pops up with the following text:
    Could not save "\...\FileName..." because the file is locked or you do not have the necessary access privileges. Use the 'Properties' command in the Windows Explorer to unlock the file.
    Well the strange thing is that I'm the administrator, the only user of this PC and even when I set/check the properties of the folder containing the files this continues to happen. What is even more disturbing is that I have to save my file as a new file in a new location and when I check the original file, it is no longer in it's original folder.
    I save all my files to the local HD and I use an external device to backup my files. I regularly get notices on my backup device telling me that various files were deleted, but will be kept until I need the room. These are files which I did not delete, they are files which I'm still working on.
    I'm having to save to the original job folder first, save to the desktop when I get the notice saying I can't save, and then save back into the original folder when I can't save on the desktop anymore because of the same error message. I sometimes get a similar Adobe error message which is basically along the same lines, but I haven't noted the exact text yet.
    Recently I closed a file which I had saved and when I needed to return to it, it was nowhere on my computer. I'm very organised about file saving, so it's not a matter of saving files in the wrong place.
    I no longer run my back up continuously while I'm working because while it's great to have the peace of mind that I'm regularly backed up, my files can get up to 2GB in size and I think the backup running at the same time is slowing Photoshop processes down, so I most often pause it until I take a break. On this occasion, I had been running it while working (smaller file) and so I was able to retrieve an earlier version from my backup which saved me from having to re-do the job completely. I didn't get this problem when I was using CS5 on Vista, it's been since I've been using Windows7 and my back up drive.
    I only recall having had this problem with PSDs, but that could just be because these files can take up to ten hours to complete and there's a higher chance of getting an error message over a longer period of time.
    It doesn't happen very often by there has been the very rare occasion where two versions of exactly the same file have been visible in the original job folder (same name on both files). To check if files are where they're supposed to be or if they seem to exhist, I have to close the job folder and re-open it.
    I'll disconnect my back up drive while I'm working and see how it goes. It's not ideal, but probably worth a try.
    I don't know if there's a connection, but occasionally windows randomly sticks a lock on zipped folders which I create, regardless of the permissions I apply to the upper level folder they sit in.  I'm told by a friend that it won't affect other people accessing these zipped folders from other machines. I don't know if that's the case, I always change the zipped folder's permission to include 'Users' and that makes the lock disappear.
    I will run this file disappearance thing by Microsoft, but I thought I'd run it buy you guys first in case you can shed any light on it.
    Meanwhile here are my specs. If you have any suggestions on how I can boost my computer's performance for large format print work in Photoshop I'd be happy to know. It's not bad now, but faster is always more pleasant:
    DELL XPS 730X
    Total amount of system memory 6.00 GB RAM
    System type 64-bit operating system
    Number of processor cores 4
    Processor: Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz
    Memory: (RAM) 6.00 GB
    Graphics: NVIDIA GeForce 9800 GT
    Gaming graphics: 3323 MB Total available graphics memory
    Primary hard disk: 302GB Free (451GB Total)
    Single hard disc, no partitions.
    Adobe Creative Suite 5 Design Premium.
    Thank you,
    Charlie

    A great first chapter Charlie. Can't wait for the rest of the book.
    The only time I've had anything like this happen, was in a new build after hooking the drives from the old system, but the permissions really were screwed up, and it was a straight forward fix. Is the machine networked perhaps? The files open in another app? I expect you answered this already somewhere in your forum equivalent of War & Peace. ;-) The lads on the Premiere Pro hardware forum can be disparaging about Dell and HP machines, saying their proprietary hardware and software are inaccessible, so I wonder if it is something along those lines.
    I’d definitely unhook the second drive as a starting point, or at least double/treble check its permissions.
    The only other thing I can think of is changing the state of ‘Save as to original folder’ in Preferences > file handling, but this is all very tenuous and straw clutching.

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

Maybe you are looking for