HTML Font alignment

Hi All.
I am using the FM WWW_HTML_FROM_LISTOBJECT to convert my list to HTML.
Users want to change the font to ARIAL.
So I changed the template in SMW0 to change the font. But then all my alignment got lost.
I then coded 2 test HTML scripts to see how font behaves. Here is it :
<HTML>
<HEAD> </head>
<body>      
<font face="Courier" size="2.0"> Testing font
     Second column
<br>
2nd row test      second column
</body>
</html>
Re-run the above script changing the face to ARIAL and you'd see a different alignment.
Now, is there any way to preserve my alignment so that even if I change the font face, my alignment remains the same. I tried <PRE> tag, but doesn't work. Any clues anyone please?
Thanks in adv.

hi
good
i dont think there is no such process which can help you to preseve the current font setting, and HTML behaves as per the change ot the font color and font size, but it does not change the alignment of the page,if it is changing the alignment of your page than check out if there is any box you have put in the HTML screen and the lengh of any other window that you have put in the HTML page.
thanks
mrutyun^

Similar Messages

  • How does "HTML font size"  work ?

    I spent a long time fighting with the <html> <Font. face=serif size=xxx>
    Originally I tried to set the size to 24, 20, 18 or -1, or -2. This gave strange results. Either my letter size was much higher than I was expecting, or very small when using negative numbers.
    After many tries, I noticed that by using size=1, size=2, size= 3, and so on, works much better.
    So I'm looking for information about the relationship between these values and the heigth (or width) number of points.
    Thanks to anyone who may help me.
    Gege

    The <font> tag is depreacted.
    "What's Wrong With FONT?" - http://www.mcsr.olemiss.edu/%7Emudws/font.html
    Use something like styles instead. You'll see that the font sizes aren't as surprising this way.
    Example:
    These should all be about the same size (using IE).
    Note that the third (using percentage) will change when
    the user changes their browser's text size (ie: View -> Text Size)
    <span style="font-size:16px">Text</span><br/>
    <span style="font-size:12pt">Text</span><br/>
    <span style="font-size:100%">Text</span><br/>See also - http://www.w3schools.com/html/html_fonts.asp

  • [JLabel] HTML + Font

    Hi,
    I have a JLabel in which I use HTML to color my text (the color is not the same for all the text)?
    ex :
    JLabel label = new JLabel("<html><body>font color='blue'>hi</font> to <font color='red'>you</font></body></html>);
    Then, I set a customized font that I load dynamically:
    InputStream inputFont = this.getClass().getResourceAsStream("my_font.ttf");
    Font font = Font.createFont(Font.TRUETYPE_FONT, inputFont);
    MY_FONT = font.deriveFont(24f);
    label.setFont(MY_FONT);
    *My problem is:*
    When I do that, the font is not applied (problably because of HTML font tags). I just see for a moment my font with the HTML tags, and when the HTML is parsed, the default font comes back. I've tried to change <font> by <span>, it does just the same)
    When I remove HTML tags from my JLabel, like new JLabel("plop") and apply my customized font, I have no problem and my font is applied (but I don't have the colors that I want).
    Problem is I want both of it! My customized font AND colors.
    Do you know how to do that?
    I hope I made myself clear,
    Thanks :)

    I've been playing with this a bit more with very peculiar results.
    Run the code. Without resizing the window, scroll down. Many fonts (Symbol, Wingdings ...) are rendered as square boxes in the right (non-html) list but the font names are readable in the left (html) list.
    Now maximize the window and look again. What's going on here?import java.awt.*;
    import javax.swing.*;
    public class FontHtmlProblem {
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new FontHtmlProblem().makeUI();
       public void makeUI() {
          GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
          Font[] fonts = ge.getAllFonts();
          JList listHtml = new JList(fonts);
          listHtml.setCellRenderer(new DefaultListCellRenderer() {
             @Override
             public Component getListCellRendererComponent(JList list,
                   Object value, int index,
                   boolean isSelected, boolean cellHasFocus) {
                Font thisFont = (Font) value;
                setFont(thisFont.deriveFont(16f));
                setText("<html><body>" + thisFont.getName() + "</body></html>");
                return this;
          JScrollPane scrollHtml = new JScrollPane(listHtml);
          scrollHtml.setColumnHeaderView(new JLabel("HTML"));
          JList listPlain = new JList(fonts);
          listPlain.setCellRenderer(new DefaultListCellRenderer() {
             @Override
             public Component getListCellRendererComponent(JList list,
                   Object value, int index,
                   boolean isSelected, boolean cellHasFocus) {
                Font thisFont = (Font) value;
                setFont(thisFont.deriveFont(16f));
                setText(thisFont.getName());
                return this;
          JScrollPane scrollPlain = new JScrollPane(listPlain,
                JScrollPane.VERTICAL_SCROLLBAR_NEVER,
                JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
          scrollPlain.setColumnHeaderView(new JLabel("Plain"));
          scrollPlain.getVerticalScrollBar().
                setModel(scrollHtml.getVerticalScrollBar().getModel());
          scrollPlain.removeMouseWheelListener(
                scrollPlain.getMouseWheelListeners()[0]);
          scrollPlain.addMouseWheelListener(
                scrollHtml.getMouseWheelListeners()[0]);
          JFrame frame = new JFrame();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setLayout(new GridLayout(1, 2));
          frame.add(scrollHtml);
          frame.add(scrollPlain);
          frame.pack();
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
    }db

  • JEditorPane displays html font very large.

    I have a JEditroPane embedded into a JScrollPane. The url for the EditorPane is an html file. It laods and displays. However, my html font is set to 8 but what is displayed appears to be at 12 point or higher. Is there a way to alter the font size of the html text displayed inside the JEditorPane?
    Thanks.

    Can anyone explain how to change the font size for the
    entire html document set to the JEditorPane? The
    default size is too large and any attmept to perform a
    setFontSize fails.
    Thanks.I'm posting this to save you time by letting you give up hope on finding some simple solution to your problem.
    There may not be any.
    I've just tried loading my html file into a JEditorPane and all characters appear in default regular size. It seems JEditorPane is not processing any stylesheets info which I use to define all text attributes.
    The API document says:
    "text/html
    HTML text. The kit used in this case is the class javax.swing.text.html.HTMLEditorKit which provides HTML 3.2 support. "
    3.2 is pretty old, isn't it? What's the HTML version you used to create your HTML files?
    How do you set font size in your html files? A sample html file from Sun for a Text demo program uses the following and it seems to work:
    <font size=-2>from</font> a
    <font size=+2">URL</font>
    If you decide to modify your existing HTML files, use the above format.
    (Wait! Why do we need to modify perfectly working html files to make them appear normal in Java programs? It should be the other way around! :D)

  • While creating pdf from html, the alignment is not proper

    Hi,
    In my application, I am creating a pdf report from html using (using Generate pdf 1.1 - HTML URL To PDF activity) which contains certain images and descriptions.
    But, while generating pdf the alignment is not proper. In the HTML there is no paging, but in the output pdf the image div is getting broken when new pages are generated.
    Some blank areas are coming the report.
    Actually I need an exact replica of the HTML as a pdf, with paging.
    Thank you in advance.

    What is the LiveCycle version?
    Is it possible for you to share an example(somewhere on public file sharing sites)?

  • Embedded html font removes spaces!

    I have a dynamic html textField which has embedded fonts.
    When I provide it with html, it is displaying formatted text
    (italic, bold, underline, etc) incorrectly. it removes a space
    directly in front of the formatted word.
    e.g. unformatted:
    hello world
    formatted:
    hello
    World
    I have tried placing the space inside and outside the format
    tag and it makes no difference. Switching off the embed makes the
    field display correctly, however my client wants embedded,
    anti-aliased text.
    This seems to occur quite randomly so that some formatted
    text in the same textfield does not display incorrectly, while some
    does!
    There are font symbols for all my formatted fonts in the
    library.
    Can anyone shed some light?

    Is the SPACE character included as well?
    smon_ed wrote:
    > Thanks for your reply.
    >
    > I have included all my required fonts seperately in the
    library. So all my
    > fonts are embedded as symbols and available to my
    dynamic textfields, which I
    > believe does the same thing as placing embedded
    texfields on frame 1 of the
    > movie, which I tried and which did not help.
    >
    > This seems to occur not just for ordinary formatting,
    but also for underlining
    > and font changing, which is specific to TextFormat
    object formatting. I donlt
    > see this effect when not using TextFormat object and
    when not using htmlText.
    >
    > I am greatly, massively, annoyingly stuck on this and
    it's a really really
    > really important thing! Pretty much crucial to the whole
    application!!
    >
    Manno Bult
    http://www.aloft.nl
    [email protected]

  • JEditorPane HTML font style changing problems

    I have tried changing the font size using the action:
    StyledEditorKit.FontSizeAction("12", 12)
    but that seems to have problems. When I change it on the editor and write and re-read the change html the font size does not look the same.
    Is there a bug in changing the font size of htmls using the JEditorPane or JTextPane component?
    How/What does the "font-change-bigger" or "font-change-smaller" work with in the HTMLEditorKit? Should I be using these members somehow instead?

    Hello,
    When you use HTMLEditorKit, you can not specify font out size of HTML. For Example, use FONT tag in html to set your font. There are many ways to change font in html. tags like h1, h2 etc..
    O.K.

  • HTML font anti-alias issue (Windows)

    I'm using an HTML component in my AIR app to display a bunch of content.  I recently changed over to using the HTML component instead of other Flex components like Text and TextArea.
    The problem I have is that text in the HTML component is always displaying anti-aliased on Windows, whereas it didn't before when I was using other Flex components.  Is there a way I can prevent the HTML component from rendering fonts with anti-aliasing?  I've tried several WebKit CSS properties, but none of them have seemed to work (including text-smooth and text-shadow).  I also didn't see any properties on the HTML or HTMLLoader components which allowed me to change font rendering.
    Does anyone know how I might solve this?

    No one knows?

  • Problems setting HTML font

    Hello people.
    I'm having troubles setting the font face in an html table
    that I am displaying in a text member.
    Here is what I am trying:
    -- set font for HTML
    put "<FONT FACE="ARIAL">"&RETURN after htext
    I'm getting an error message claiming that I am using a
    variable before it has been assigned (I assume that it thinks that
    ARIAL is a variable). Am I right in thinking that the extra
    quotation marks aren't helping?
    Any tips?

    That doesn't seem to be doing the trick.
    Here is the complete Lingo for the HTML table (using one of
    Sean Wilson's suggestions ):
    -- display a list of all the students using HTML
    on displayDatabase
    -- HTML header
    htext = "<HTML><BODY
    BGCOLOR=#FFFFFF>"&RETURN -- need to specify font for table
    display
    -- set font for HTML
    put "<FONT FACE='ARIAL'>"&RETURN after htext
    -- put the table headings
    put
    "<TABLE><TR><TH>Username</TH><TH>Password</TH></TR>"\
    &RETURN after htext
    -- loop through database and create table rows
    repeat with i = 1 to gDatabase.count
    put "<TR>" after htext
    put "<TD>" & gDatabase.getPropAt(i) &
    "</TD>" after htext
    put "<TD>" & gDatabase[gDatabase.getPropAt(i)]
    & "</TD>" after htext
    put "</TR>"&RETURN after htext
    end repeat
    -- close out table and HTML
    put "</TABLE></BODY></HTML>" after htext
    -- place HTML in text member
    member("Student Database Display").html = htext
    end
    Any ideas?

  • HTML font size in Oracle Reports 11g

    I am migrating from Oracle Reports 10g in OAS to Reports 11g in WebLogic.
    However when I display all changed reports using Web Browser (same), the font size is changed(comparing the 10g reports to 11g reports). I would like to keep unchanged.
    (command using DESTYPE=HTML)
    May anybody can give me some guidance? (would like to see if there are any file or setting in EM which can alter the size of font in web)
    Thanks.
    Edited by: 817748 on 2011/7/19 上午 9:45

    There is a better forum: {forum:id=84} for your question

  • Can not get proper font , alignment while generation pDF using Itextsharp

      
     I am developing a winform in which i m taking html data from  which have in line css so when i m genrating pdf it is 
    not properly aligned.
     private void HtmlToPdfConvert()
                try
                    string ClientID;
                    string AssociateID;
                    string DocumentType;
                    //styles.LoadTagStyle(HtmlTags.H1, HtmlTags.FONTSIZE, "16");
                    //styles.LoadTagStyle(HtmlTags.P, HtmlTags.FONTSIZE, "20");
                    //styles.LoadTagStyle(HtmlTags.P, HtmlTags.COLOR, "Green");
                   // styles.LoadTagStyle(HtmlTags.DIV, HtmlTags.COLOR, "Green");
                    string file1 = ConfigurationManager.AppSettings["Pdffilename"].ToString();
                    HtmltoPdfBusinessLogic htmlpdf = new HtmltoPdfBusinessLogic();
                    ds = htmlpdf.GetContent();
                    if (ds != null)
                        for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                            file2 = file1;
                            label2.Text = ds.Tables[0].Rows[i]["PdfFileName"].ToString();
                            string fname = label2.Text.ToString();
                            string[] words = fname.Split('_');
                            for (int j = 0; j < words.Length - 2; j++)
                                ClientID = words[0];
                                file2 = file2 + ClientID;
                                AssociateID = words[1];
                                file2 = file2 + "\\" + AssociateID;
                                DocumentType = words[2];
                                file2 = file2 + "\\" + DocumentType;
                            //Directory.CreateDirectory(file2);    
                            pdffname = file2 + "\\" + label2.Text + ".pdf";
                            if (System.IO.Directory.Exists(file2))
                                string[] files = System.IO.Directory.GetFiles(file2);
                                if (files.Length > 0)
                                    foreach (string file in files)
                                    File.Delete(file);
                                    ConvertHtmlToPdf(i);
                                else
                                    ConvertHtmlToPdf(i);
                            else
                                ConvertHtmlToPdf(i);
                        this.Close();
                        //if (ds.Tables[0].Rows.Count < 1)
                        //    MessageBox.Show("Documents Are Not Exist");
                        //    this.Close();
                    /*  System.IO.Directory.CreateDirectory((file2));
                      outputFile = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), pdffname);
                      label1.Text = ds.Tables[0].Rows[0]["TM_Content"].ToString();
                      string htmltxt = label1.Text.ToString() + imgpath;
                      // HtmlStream = label1.Text;
                      Document document = new Document(PageSize.A4, 5, 5, 15, 5);
                      FileStream fs = new FileStream(outputFile, FileMode.Create, FileAccess.Write, FileShare.None);
                      PdfWriter w = PdfWriter.GetInstance(document, fs);
                      document.Open();
                      List<IElement> objects = HTMLWorker.ParseToList(new StringReader(htmltxt), styles);
                      foreach (IElement element in objects)
                          document.Add(element);
                      document.Close();
                      file2 = string.Empty;
                catch (Exception exp)
                    MessageBox.Show(exp.Message);

    iText is a third party library to create PDF originally written for java. iTextSharp is the C# adaptation of that library.
    Question regarding iText are better asked on the iText forum, rather then the Microsoft Forum:
    http://itextpdf.com/support
    They mostly use StackOverflow and SourceForge for the free support, so either of those might be a good place to start.
    Let's talk about MVVM: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b1a8bf14-4acd-4d77-9df8-bdb95b02dbe2 Please mark post as helpfull and answers respectively.

  • Muse website exported to html, fonts differ on tablet.  how can I fix this so font is same on all, using comic sans

    When viewing website on desktop, font is as it should be.  However on my tablet and phone font is different.  What can I do to correct this ... Do I need to create a separate website for Desktop, tablet and phone? 

    Hi Abhishek,
    I reviewed your screenshot.  Fonts selected are web safe.  I edited the global stylesheet in Dreamweaver after exporting to html to reflect the desired web safe font.  Now fonts are very inconsistent.  Some are as they should be and others are not.  See screenshots. 
    Is there anyone else that knows of a solution or is this a glitch that has not been resolved yet?
    See my screenshots below from the iPad version of the website that I created originally in Muse and then exported the HTML for fine -tuning in Dreamweaver

  • Chinese fonts in html not showing up properly sometimes

    I have the following lines in my program :
    JLabel A_Label=new JLabel("<Html><Font Size=3>\u8F93\u5165</Font></Html>");
    JPanel A_Panel=new Jpanel();
    A_Panel.add(A_Label);
    Sometimes the Chinese shows up correctly, but sometimes it shows up as blank rectangles, if I change the font size to 5, it will always show up, why ? How can I make it always show up in size 3 font ?
    Frank

    Hi, thanks for replying.
    I know it works for JLabel without html, but I need to display a lot of information in the label, there are formatted tables, different size fonts, html input fields, etc. , so my only choice is to use html to format them.
    I found it has something to do with the power of the PC running it, isn't it strange ? When the program starts, it needs to initialize, takes a while, from a few seconds to half a minute, sometimes if it didn't have a lot of data to load, the fonts shows up correctly, other times when it takes a while to load a lot of data before it displays the html formatted JLabel, the fonts may not all show up correctly. Size 5 always shows up correctly, the size 3 & 4 font sometimes could show up as blank rectangles.
    I wonder if there is anything I can do in my program to stabilize this when I use html in JLabel ?
    Frank

  • Can HTML emails be aligned left instead of center?

    Is it possible to tell Apple Mail to align HTML emails to the left instead of center? All Text emails are aligned to the left and most HTML are aligned center (which gives a lot of empty space to the left on a wide display). However, some HTML emails are aligned left. I wonder what determines this and how it can be affected?

    It's not really controlled by the sender either. There is no guarantee that html will render any particular way. Use pdf is appearance is important.

  • What html code will start an EXE (program) with a click on a webpage link?

    The code in bold below worked. After I switched my browser from IE 11 to Firefox to get the hover on hotspots to work, the program gave me this error message. I moved the EXE file to my local file folder and tried it as shown below. Still no success. Any suggestions?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Family Tree Charts</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css">
    <!--
    body,td,th {
        color: #000;
    -->
    </style></head>
    <body link=blue vlink=blue>
    <table width="100%" height="25" border="0" cellpadding="4" cellspacing="0">
      <tr>
        <td width="93%" height="27" bgcolor="#EFEFEF"> <div align="center"><font color="#999999">
        <b>This Software Allows You To Review Neat Charts of Your Family Tree </b></font></div></td>
        <td width="7%" bgcolor="#CCFFFF"> <div align="center"><A href="Mementos_Menu.html"><font size="2">Back</font></a></div></td>
      </tr>
    </table><BR><center>
    <br>
    <FONT color=#ff00ff><strong>Click the link below to download a special software program for your PC.</strong></FONT><br>
    <br>
    <a href="http://jdmcox.com/"><strong>Cox Website</strong></a><br><br>
    <strong>ITEM 1</strong> (AT THIS  WEBSITE) IS  THE <strong>FAMILY TREE CHART</strong> PROGRAM.<br>
    It is called <strong>Simple Family Tree</strong><br>
    <table width="80%" border="2" cellspacing="2" cellpadding="2">
      <tr>
        <td width="49%" align="left" valign="top"><FONT color=#ff00ff><strong>Click the link below to use this special software program after you download and install the program.</strong></FONT><br>
    <br>
    <!--<a href="C:\Program Files (x86)\Simple Family Tree\Simple Family Tree.exe"><strong>Family Tree Charts Program by Doug Cox</strong></a><br><FONT color=#ff00ff>
    -->
    <a href="C:\Users\Tom and Polly\Documents\Genealogy CD\Simple Family Tree\Simple Family Tree.exe"><b>Family Tree Charts Program</b></a><br><br>
    <FONT color=#ff00ff><strong>Click  the &quot;run&quot; button for both warning messages.<br>
    Click the &quot;READ THIS!&quot; menu option when the program opens.<br>
    Click  "X" in the upper right to close the program.<br><br>
    You can update the family data in future years with this program too.</strong></FONT>
    <br></td>
        <td width="51%" align="left" valign="top"><FONT color=#ff00ff><strong>NOTE 1: Be sure your HTML code for this webpage has a proper line to link to the location where the software was installed. You can use NOTEPAD to make HTML code changes. My existing line is: </strong></FONT><br>
          "c:\<u>program files (x86)</u>\simple family tree\simple family tree.exe"<br><br>
          <FONT color=#ff00ff><strong>The underlined portion will need to agree with where the program was installed. Just change the directory (see underlined sample above). Good luck. If I am still living, call me.<br><br>
          NOTE 2: After you download, install, and try to use the program, you may get an error message window that looks like this -&quot;0 FAMS @F191 @ FAM&quot;. This means you have an individual record in your GEDCOM file that does not have a parent. Be sure all GEDCOM records have at least one parent even if you must name the parent UNKNOWN.</strong></FONT></td>
      </tr>
    </table>
    <br></center> 
    <table width="100%" border="0" cellpadding="2" cellspacing="0" bgcolor="#CCCCCC">
        <tr>
          <td bgcolor="#EFEFEF"> <font size="2">&copy;2002 Sales and People</font></td>
        </tr>
    </table></body>
    </html>

    Herbert:
    Here is my latest code attempt, but I get messages about the lines in BOLD that I do not understand.
    Perhaps you will see what I need to fix. Sure appreciate what you have found and shared with such a neophyte (aka dumbo).
    Tom
    <!--
    body,td,th
    -->
    function RunExe(path) {
    try {
    var ua = navigator.userAgent.toLowerCase();
    if (ua.indexOf("msie") != -1) {
    MyObject = new ActiveXObject("WScript.Shell")
    MyObject.Run(path);
    } else {
    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
    var exe = window.Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
    exe.initWithPath(path);
    var run = window.Components.classes['@mozilla.org/process/util;1'].createInstance(Components.inteinterfaces.nsIProcess);
    run.init(exe);
    var parameters = ["/c start Simple Family Tree.exe"];
    run.run(false, parameters, parameters.length);
    } catch (ex) {
    alert(ex.toString());
    This Software Allows You To Review Neat Charts of Your Family Tree
    Back
    Click the link below to download a special software program for your PC and your GED file.
    *Cox Website*
    ITEM 1 (AT HIS  WEBSITE) IS  HIS FAMILY TREE CHART PROGRAM.
    It is called Simple Family Tree
    Click the link below to look at my GEDCOM file contents.<br>Instructions are provided in the READ THIS menu option at the top of the window.
      *Show Yarnall Chart*
    *Return to this webpage by clicking on the backarrow after looking at the chart.
    You can update the family data in future years with this program too.*
    ©2002 Sales and People
    Date: Thu, 2 Jan 2014 02:09:18 -0800
    From: [email protected]
    To: [email protected]
    Subject: What html code will start an EXE (program) with a click on a webpage link?
        Re: What html code will start an EXE (program) with a click on a webpage link?
        created by Herbert2001 in Dreamweaver support forum - View the full discussion
    Perhaps this might be helpful:
    https://addons.mozilla.org/en-US/firefox/addon/opendownload-10902/
    It allows executables in Firefox to be run - it is an extenstion, though, so it must be installed in Firefox before your page will work.
    Another option is this solution, but it will still require a manual change in Firefox:
    http://forums.mozillazine.org/viewtopic.php?f=19&t=803615
    Or this: http://stackoverflow.com/questions/6472435/running-exe-in-firefox-why- do-i-get-an-error
    However, you will still have problems with getting it to work cross-browser. Honestly, browsers are not supposed to have access like that to the client side file system, which absolutely makes sense for the web.
    That is why you may have to approach the solution from a different angle - perhaps create a server side cloud version of your application(s) which can be easily accessed and run by your family members. I believe you used C to develop the applications? Although I have no experience with this framework, Wt might be a solution to convert your projects to server side applications:
    http://www.webtoolkit.eu/wt
    Good luck!
         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/5972893#5972893
         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/5972893#5972893
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5972893#5972893. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum 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

  • Can I send data from one icloud account to another

    Can I send spreedsheets from one icloud account to another?

  • Migration Assistant can't find External HD on MacBook Pro Mid-2012

    Hi, I have a MacBook Pro Mid-2012 running OS X Mountain Lion 10.8.2 and I am trying to use Migration Assistant to transfer Time Machine backups that are on my external hard drive, that I backed up from my old MacBook Mid-2010. The problem I am having

  • Is there a way to prevent HTML from being displayed in forum?

    Is there a way to prevent HTML from being displayed in forum in BC to avoid linking to other sites on an eCommerce site?

  • JTable in 1.2.2 and 1.3

    I am using JTable in 1.2.2 and it works perfectly . My table has column group. But when I compile the same code by 1.3 and run in 1.3 I get the NULLPOINTER exception a line marked by =>: TableColumn aColumn = columnModel.getColumn(column); TableCellR

  • Flash Websites - content panel

    Hi There I am new to flash and am looking for a tutorial which will help me create a specific end product.   I am trying to make a flash website (which i have the designs for) which will have links down the right hand side, but when the link is click