Font formatting for my Blog

I'm a little new to iWeb but got the basics down, I think. However, can't seem to get the web page (via Safari) to accept font formatting changes I make on my Blog. I change the font, change the color, line spacing. Then I publish to .Mac. When I check out the site via Safari, the formatting changes aren't there. All other changes are there. Yes, I dumped cache and reloaded the page.Am I doing something wrong?

thanks, everyone for the help. Much appreciated

Similar Messages

  • Diferent font format for Parent/Child

    Hello,With Excel Add-In, we can format the letter font differently for parent and child, using the Essbase Option (Style -> Members -> Parent -> Format).How can we do, the same thing, using Analyzer.Any help is appreciated.SL

    Hi,Unfortunately there are no advanced formatting options in the current release of Analyzer (6.2.1). You can either format the data or the metadata (headers). I believe in the next release there are plans to incorporate more formatting options.Hope this helps.Paul ArmitageAnalitica Ltdwww.analitica.co.uk

  • Font formatting for Flat file generated in PI

    Hi,
    We have a File receiver scenario in PI wherein  we are generating a Flat file. While creating the file, the font needs to be of specific font type and size
    eg:
    Pyramid u2013 Lucida Console (Size 10)
    Aspheria u2013 I5_10N (Size 10)
    Is there any way this can be configured or implemented in PI?

    Hi ,
    This requirement we can achieve using XSLT Mapping,we can define the font size in mapping program it self,select output method in xslt program as TEXT,no need of any file content conversion in Receiver Communication channel.
    refer this link how to uses the methods for font sizes.
    http://www.xml.com/pub/a/2001/01/24/xsl-fo/
    Regards,
    Raj

  • Non viewable font format for smartforms

    HI All,
    Please tell me setting in font which displays during the print preview but when some one take printout then text with following font doesn't come.
    In print preview it displays but during printout it doesn't .
    Any suggestions welcome,
    Regards,

    If i install the font on my client and send the output to printer then hopefully it works .
    I want to display some characters in print preview but not in print out.
    Regards,

  • Flash Player and Ascender Compact Asian Fonts file format for fonts

    Hi all,
    Looks like ACAF file format for fonts has significant advantages in terms of memory to display CJK (Chinese, Japanese, Korean) characters presumably if embedded into SWF file.
    http://www.ascendercorp.com/pr/2006-10-05/
    Are there any plans to extend next Flash Player versions targeted at mobile phones to support this proprietary font file format?

    I've included also a much more simple example without the xml
    and the font symbol, only the class and a movieclip from the
    library, but I can't still see it on flash player 10
    http://www.forestonfire.com/research/flash/fontproblem/simplyfied.zip
    I have no clue about this problem.

  • How can I make lining number format for opentype fonts in Acrobat?

    How can I make lining number format for opentype fonts in Acrobat?

    I bought the Max OT font. I want the numbers on the right to look like on the left. I could do that in word, but not in adobe acrobat.

  • Can Someone Please Help Me Create a Blog Reader App For My Blog?

    Hi ! I am trying to create a blog reader app by using RSS feed for my blog. I found this tutorial on MSDN here Create a Blog Reader using C# and XAML
    But the problem is, it says some parts will not work with VS 2013. I even tried to follow each step of the tutorial but get stuck with some "navigation parameter" type-casted to a class. I couldn't understand what do I replace that with as it was
    never declared earlier somewhere. Can someone help me with the code? Please, I will be very thankful.
    I am using VS 2013 Community update 4 and Windows 8.1

    Here is the code and the error i am facing. I tried my best to do other changes like styles for buttons, textblocks etc that are new in 8.1
    protected override string DetermineVisualState(ApplicationViewState viewState)
    // Update the back button's enabled state when the view state changes
    var logicalPageBack = this.UsingLogicalPageNavigation(viewState) && this.itemListView.SelectedItem != null;
    var physicalPageBack = this.Frame != null && this.Frame.CanGoBack;
    this.DefaultViewModel["CanGoBack"] = logicalPageBack || physicalPageBack;
    // Determine visual states for landscape layouts based not on the view state, but
    // on the width of the window. This page has one layout that is appropriate for
    // 1366 virtual pixels or wider, and another for narrower displays or when a snapped
    // application reduces the horizontal space available to less than 1366.
    if (viewState == ApplicationViewState.Filled ||
    viewState == ApplicationViewState.FullScreenLandscape)
    var windowWidth = Window.Current.Bounds.Width;
    if (windowWidth >= 1366) return "FullScreenLandscapeOrWide";
    return "FilledOrNarrow";
    // When in portrait or snapped start with the default visual state name, then add a
    // suffix when viewing details instead of the list
    var defaultStateName = DetermineVisualState(viewState);
    return logicalPageBack ? defaultStateName + "_Detail" : defaultStateName;
    errors:
    Error 1
    An object of the type "System.Object" cannot be applied to a property that expects the type "Windows.UI.Xaml.Data.IValueConverter".
    I am using it here
    <TextBlock Text="{Binding PubDate, Converter={StaticResource dateConverter}}"
    //DateConverter.csusing System;
    using Windows.Globalization.DateTimeFormatting;
    using Windows.UI.Xaml.Data;
    namespace WindowsBlogReader
    public class DateConverter : Windows.UI.Xaml.Data.IValueConverter
    public object Convert(object value, Type targetType, object parameter, string culture)
    if (value == null)
    throw new ArgumentNullException("value", "Value cannot be null.");
    if (!typeof(DateTime).Equals(value.GetType()))
    throw new ArgumentException("Value must be of type DateTime.", "value");
    DateTime dt = (DateTime)value;
    if (parameter == null)
    // Date "7/27/2011 9:30:59 AM" returns "7/27/2011"
    return DateTimeFormatter.ShortDate.Format(dt);
    else if ((string)parameter == "day")
    // Date "7/27/2011 9:30:59 AM" returns "27"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{day.integer(2)}");
    return dateFormatter.Format(dt);
    else if ((string)parameter == "month")
    // Date "7/27/2011 9:30:59 AM" returns "JUL"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{month.abbreviated(3)}");
    return dateFormatter.Format(dt).ToUpper();
    else if ((string)parameter == "year")
    // Date "7/27/2011 9:30:59 AM" returns "2011"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{year.full}");
    return dateFormatter.Format(dt);
    else
    // Requested format is unknown. Return in the original format.
    return dt.ToString();
    public object ConvertBack(object value, Type targetType, object parameter, string culture)
    string strValue = value as string;
    DateTime resultDateTime;
    if (DateTime.TryParse(strValue, out resultDateTime))
    return resultDateTime;
    return Windows.UI.Xaml.DependencyProperty.UnsetValue;
    Error 2
    The name "DateConverter" does not exist in the namespace "using:WindowsBlogReader".
    (DateConverter.cs is a class, I really don't understand why this error comes, i have decalared a local resource in app.xaml for it)
    <Application.Resources>
    <ResourceDictionary>
    <local:DateConverter x:Key="dateConverter"></local:DateConverter>
    Error 3
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)' is a new virtual member in sealed class 'WindowsBlogReader.SplitPage'
    Error 4
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)': no suitable method found to override
    Here is the visual state code for my 1st Page : ItemsPage.xaml
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="96,136,86,56"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped,
    and the list representation is substituted
    for the grid displayed in all other view states
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    Visual State code for SplitPage.xaml (2nd Page)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscapeOrWide"/>
    <!-- Filled uses a simpler list format in a narrower column -->
    <VisualState x:Name="FilledOrNarrow">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="420"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="60,0,66,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The page respects the narrower 100-pixel margin convention for portrait, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,60"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When an item is selected in portrait the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    -->
    <VisualState x:Name="FullScreenPortrait_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="320"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,0,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When snapped and an item is selected the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    * Use a different font for title and subtitle
    * Adjust margins below subtitle
    -->
    <VisualState x:Name="Snapped_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,20,0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TitleTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemSubtitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource CaptionTextStyle}"/>
    </ObjectAnimationUsingKeyFrames>-->
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    and finally , a Basic Page(DetailPage.xaml)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!-- The back button and title have different styles when snapped -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentViewBorder"
    Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,5,20,20"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>

  • Can Pages 4.3 maintain defined text formatting for at a given list level?

    I'm hoping the answer to this question is a simple 'duh' solution that I some how over looked. I'm using Pages 4.3 and I am trying to create a tiered list to organize ideas into different sublevels. I want to be able to write at a particular level, then create sub levels (return -> tab) with different formatting so the levels are easily distinguished at a glance. When I move back to the higher levels (return -> shift + tab), Pages maintaines the text formatting I used at the lower level, rather than returning to the previously used format at the higher level. For example, what I want is ....
    Main 1             --- (Return -> Tab)
    Sub 1             --- (Return -> Shift +Tab)
    Main 2
    What I get is...
    Main 1             --- (Return -> Tab)
    Sub 1             --- (Return -> Shift +Tab)
    Main 2
    This means that anytime I move up or down in the tiers of a list, I need to redefine the formatting for each new bullet. I tried creating my own list styles, but that does not appear to preserve changes made to fonts or sizes. This seems like such a simple function and time saver that I feel like I must be doing something wrong. It has been a while since I used pages, but I don't remember having these problems before. Does pages really require one to reset the formatting everytime the move between list levels?

    Thanks Michael!
    So your suggestion is to create the pricing in ECC and then download it in CRM...
    Now tat would mean that first the mapping has to be performed in ECC for the existing paroducts and product category..then create pricing for those mapped prod. cat. in ECC and then download it to CR M..plz correct me if I am wrong...
    regards,
    Aneesh

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • Is there a format for a file that I can use for attaching a one page document with photos embedded that will open in everyone's email automatically?   I've tried PDF and Word, but worked only in Mail.  Lost formatting when just copied and pasted in email.

    Is there a format for a file that I can use for attaching a one page document with photos embedded that will open in everyone's email automatically?   I've tried PDF and Word, but PDF worked only in Mail.  Word worked in nothing.  I also tried copying and pasting the document but lost all formatting when just copied and pasted in email.  Is there a way to do this?

    Are you sure PDF won't work? It should as what you're trying to do is pretty much what it is designed for (PDF - Portable Document Format). On a Mac anywone who receives the file should be able to see it in all its page layout glory by using the app Preview or Adobe Reader. Same on a PC, the file should be viewable as a PDF file using Adobe Reader and probably some other viewer (don't use PCs so not sure what other apps).
    What application are you creating the file in and are you sure you're exporting it correctly in PDF format, fonts and images embedded?

  • How to find a word with different font format (e.g. italic and regular in one word)

    Hi people,
    I need to find a word, prefferably using GREP or simple Find/Replace tool.
    Sometimes, when I get source text to paste into InDesign, some word's format is messed up. First letter is italic and rest is regular or otherwise (or any other font format). How can I find such words automatically. For example:
    Example
    would really appreciate any help.
    best regards
    JMG.

    Hi,
    If I had to do that, using Multi-Find/Change, I would play it like:
    With MFC, I create a set of the 2 regex. So, one click to fix your problem.

  • Why does some published text maintain font/format randomly on a page?

    I'm pretty good with this stuff but can't figure this one out: When designing 1-word links on any given page, all using the same font/size, all in a vertical list, for no apparent reason some of the text/links, when published, maintain the font/format precisely, while some do not and by default choose a "similar" font? I've been forced to create picture files of individual links to maintain their look, thereby losing the roll-over and re-size capacity.
    Thanks in advance for any help!

    Does anyone have an answer for this? I'm stuck too. I make a beautiful looking web page in iweb 8.0, only to find that fonts have changed, sizes have changed etc when I go to publish. Need help!

  • Can I print a document formatted for a smaller page size on larger paper?

    I have a document that is formatted for a small size for a booklet using a customer paper size setup, 21 x 24 cm. I want to print this on A4 paper for proofreading. But when I do so, the printer (a Brother laser printer) spits out giant pages enlarged to A4. When I try to reduce the scale percentage, it reduces down to the right font size, but reflowed into the A4 size.
    Is there a way to just have it print in its true size in the middle of the A4 sheet?

    You could change the percent in File > Page Setup. But I think fruhulda's suggestion of using PDF would probably result in better resolution although any enlarging will likely cause some loss.

  • File formats for graphic standards manual

    I am developing a graphic standards manual for a university and will be providing art files for their logo in a number of formats for both inhouse use (PC Word, Powerpoint, Publisher, inhouse web master) as well as for outside professional vendor use (mac). I am a Mac print designer and know what I need to provide for their outside designers and vendors. Looking for advice on what formats to provide for their internal use. I need to make this as easy as possible for their internal staff to use or they won't use it. So I don't want to overwhelm them with more formats than needed. Do I need to provide separate Illustrator vector eps files for the pc and the mac...or would one version work for both? Do I need to provide separate tiff files for the pc and mac? Should I provide them jpegs as well as tiffs (I will be giving them tiffs at three sizes). pngs or giffs?
    Any suggestions would be greatly appreciated.

    I usually use pdf format for this kind of thing, although it's usually safest to outline fonts before distilling because PC fonts work differently than Mac fonts. Everyone can read pdfs and those that have the technical knowledge can open then in Illy or Freefoot* to extract the vectors and/or pictures.
    *Sorry Freefooters. No offense intended. It's just that "that application" is like Macbeth in the theatre. Not to be named in some circles :-)

  • How to set different pointsize  (Font Size) for different text range in the single textframe.

    I have a one textframe in which i want to  set three different pointsize(font size) for three different text ranges. I have set different tag name for different text ranges . So How can I set different pointsize in the single texmframe.
    Please reply me if anyone is aware of it.
    Thanks,

    Jack,
    Extending Martti's post, you can create an XSLT that will add an element around the ASD2.1 part when you import the XML file into FrameMaker. Then FrameMaker's EDD can format this added element with a font different from the one used in the content element.
    Van

Maybe you are looking for