Add font types and sizes to ICWC HTML e-mail editor

Hi,
I'm working with ICWC e-mail component and I'm wonder to know how can I add more font types and sizes to HTML e-mail editor. At the moment i just have 5 font types and a few font sizes.
Thanks a lot in advance,
Nuno Moreira

Hello Nuno,
Just try this:
First you have to upload your .ttf font by using se73 transaction.
Then you must map it, using this tables:
SAP: TBTFFONTMAPDEF
Customer: TBTFFONTMAP
Just add a line in customer table TBTFFONTMAP with your font (or existing one), and the language that will be used by the users (It accepts wildcard * for all languages)
And it's done.
Best Regards,
Bruno

Similar Messages

  • Set default font type and size in formcreated using Acrobat X Pro

    I have a word document that I used Acrobat X Pro to create a PDF and then a Form.  The Form has over 200 text fields.  Is there a way to globally set the font type and size to one type, for instance Arial 10 so that when someone opens the Form and fills it in, the global font type and size is preset         

    Are you talking about fields that you create manually or field created with the Form Wizard? Exactly what version of Acrobat are you using? What OS?
    In any case, using a script is a quick and easy approach:
    for (var i = 0; i < numFields; i++) {
        var fName = getNthFieldName(i);
        var f = getField(fName);
        if (f.type === "text") {
            f.textFont = font.Times;
            f.textSize = 9;
            // Other properties go here
    I use this type of thing all the time to quickly alter a form. Such a script isn't added anywhere, just executed (e.g., JavaScript console). Over time a developer can build up a collection of utility scripts that can do all sorts of things to dramatically speed up development. It would be bad if this option were not available.
    If there is a bug, it should certainly be addressed, so don't think I'm arguing against that, but I'm not seeing it on any of my systems. I can successfully set the default field properties by selecting "Use Current Properties as New Defaults". The Form Wizard does not use these defaults, but that's a different matter.

  • Modifying Java font type and size

    Hi! I'm not sure if this is the right forum for this but I might as well try. I play a lot of Yahoo Chess which uses a java software to launch its program. I'm a new Macbook user and before when I was in Windows/PC, the font type and size setting was okay. Now I barely can read the font whenever I launch Yahoo Chess (using Java) in my Macbook.
    Any help would be appreciated. Thanks!
    Macbook Core 2 Duo with 2 GB Ram   Mac OS X (10.4.9)  

    Hi,
    Which font and font size did you use in your applet? Do you have sample code that could demonstrate the problem? This may have to do with the difference in font aliasing between MS VM and Sun JVM.
    Stanley Ho
    Java Deployment Tech Lead
    Sun Microsystems

  • How can I reset the font type and size on my email. It changed after I updated to Firefox 5.0 and I can't get it back.

    After updating to Firefox 5.0 the font changed on my email. I checked, and the default setting is what I had put in before the update but it's not working. How can I get my email to use the font and type size that I chose? The one that's currently being used (since after the update) is so tiny one can hardly see it. My email program is through yahoo but there doesn't seem to be a way to change it at the email site. I'm not terribly PC savvy so please respond with a detailed/explicit answer. Thanks for any help you can give me with this. I have Windows XP and use Firefox as my browser.

    Hi again...,,yes, I did try the "reset zoom" on the email compose message page and nothing happened. I'm not familiar with add-ons. Went to the address you suggested (DefaultFullZoomLevel) but don't know how to use it. Also, I don't want to enlarge the text on all web pages.....just the email page. By the way, if it makes a difference, I think I forgot to mention that I use AT&T/Yahoo webmail....not Outlook Express or Thunderbird or any other email program. I'm not familiar with those and don't want to change email programs. Thanks again for trying to help with this. I'm beginning to think this problem is "unfixable" and considering changing back to a previous edition of Firefox (IF that's even possible).

  • JLabel font type and size..

    JLabel font size and type, got any idea?
    Need to import any class?

    ??I agree. What the heck are you asking?
    If you want to know the default font size and type for a JLabel, then read the API. Hint you would use a get??? method.
    If you want to change the font size and type for a JLabel, then read the API. Hint you would use a set??? method.
    You can't program without access to the API so get a copy of one and use it.

  • Selection properties panel -  edit font type and font size

    "selection properties" bottom panel -  edit font type and font size
    In design view
    i can no longer find this option in CS5,
    how can i change font type and font size of highlighted/selected block of text? like previous DW versions ?
    by switching to CSS from html in "selection properties" bottom panel.
    i see an option to do that using CSS. Is this the only option now ?
    Thanks a lot for help.

    What happened if on some pages of my site, there are JS code inserted to display content pulled from other remote host.
    Will my own page or site CSS font setting override the JS code font & size setting as well ?
    or those JS code can display content using their font selection setting independently ?
    >> Yes. In fact it not only does it for the page you're working on, but for the whole site (that's the advantage of CSS vs properties)

  • Batch font face and size change

    Hi everybody,
    I'm looking to create a batch action/script the will select and change the font face and size in a series of .eps files of barcodes.
    I'm not sure if it's a scripting thing because I've never scripted before.
    If anyone could point me in the right direction or tell me how to do it (action or script)  I'd be very grateful.
    (Each image contains the barcode and three text elements, all Helvetica 24pt which I want to change to OCRB 18.5pt, on about 120 images)
    Thanks chaps

    Try something like this
    #target illustrator
    app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    Validate User Input.
    function validateInput()
         if(dlg.input_panel.input_edt.text == "")
                alert("Error, please define an input directory to convert.", "Error:");
                return -1;
        return 0   
    Define input Directory
    function getInput()
        var input_folder = Folder.selectDialog( 'Select the directory where you wish to open the files: ', '' );
        if (input_folder != null)
            dlg.input_panel.input_edt.text = input_folder.fsName;
    Open an eps file
    function openFile(open_file)
        var open_options = new OpenOptions();
        open_options.updateLegacyText = true;
        app.open(open_file, DocumentColorSpace.RGB,open_options);
    @Return return the index on the system for a font
    function getIndex()
        var fontIndex = -1;
        for(var i=0; i<app.textFonts.length; i++)
                if(app.textFonts[i].name == "ArialNarrow-Bold")
                        fontIndex = i;
        return fontIndex;
    Loop through text and change type
    function changeText()
        var index_value = getIndex();
        if(index_value > 0)
            var grayColour = new GrayColor();
            grayColour.gray = 100;
            for (var i = 0; i< app.activeDocument.textFrames.length; i++)
                    app.activeDocument.textFrames[i].textRange.characterAttributes.textFont = app.textFonts[index_value];
                    app.activeDocument.textFrames[i].textRange.characterAttributes.kerningMethod = AutoKernType.AUTO;
                    app.activeDocument.textFrames[i].textRange.characterAttributes.size = 10;
                app.activeDocument.textFrames[i].textRange.characterAttributes.fillColor = grayColour;
                    for(var j=0; j<app.activeDocument.textFrames[i].textRange.characters.length; j++)
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.baselineShif t = 0;
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.leading = 12;
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.tracking = 0
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.rotation = 0;
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.horizontalSc ale= 100;
                        app.activeDocument.textFrames[i].textRange.characters[j].characterAttributes.verticalScal e= 100;
                redraw();
            for( var i=0 ; i < app.activeDocument.textFrames.length; i++ )
                for ( p=0 ; p < app.activeDocument.textFrames[i].paragraphs.length ; p++ )
                    app.activeDocument.textFrames[i].paragraphs[p].justification = Justification.CENTER;
                    app.activeDocument.textFrames[i].paragraphs[p].selection = true;
            alert("Finished");
        else
            alert("Arial Narrow Bold is not installed on your system!", "Error:");
    Save and close File
    function saveFile()
        app.activeDocument.close(SaveOptions.SAVECHANGES);
    Main
    function main()
        if(validateInput() == -1)
            return;
        var input_folder = new Folder(dlg.input_panel.input_edt.text);
        var files_array = input_folder.getFiles( '*.eps' );
        logStatus ("c:\\boarder_report.csv", "SIZE", "FILE NAME", "STATUS");
        logStatus ("c:\\boarder_report.csv", "SIZE", "FILE NAME", "STATUS");
        for(var i = 0; i <= files_array.length; i++)
    openFile(new File(files_array[i]));
    changeText()
            saveFile();
        alert("Done Processing Files");
    Create GUI
    function buildGUI()
        dlg = new Window('dialog', 'RPSTL Add Box Tool', [100,100,480,225]);
        dlg.input_panel = dlg.add('panel',[5,10,375,80], 'Input Directory');
        dlg.input_panel.input_txt = dlg.input_panel.add('statictext', [10,12,125,25], 'Browse for Input  Directory:');
        dlg.input_panel.input_btn = dlg.input_panel.add('button', [10,30,110,50], 'Browse');
        dlg.input_panel.input_edt = dlg.input_panel.add('edittext', [120,30,350,50], '');
        dlg.start_btn = dlg.add('button', [250,85,375,110], 'Start Conversion');
        dlg.input_panel.input_btn.onClick = getInput;
        dlg.start_btn.onClick = main;
        dlg.show();
    buildGUI();

  • Email font style and size

    Lately my email font style and size setting will not save.  I have to keep setting them each time I type an email. I do not want to use the default style and size. Why is this not working even though I follow the suggested instructions in the Settings area? Thank you.

    I have the same problem as kakingsbury. THIS IS A SUDDEN PROBLEM WITH VERIZON EMAIL. PLEASE SEND A FIX TO YOUR USERS, VERIZON!
    Recipients of my email (browser is Chrome) cannot read it because though I send it in 12 font, they receive it in "too small to read" font even when I change the size to 16. Tried changing from RTF to plain text but since the New Verizon email does not allow email in plain text it automatically adjusts back to RTF. 
    Tried changing the settings in Chrome Advanced settings then logging out and closing browser. Seems to work. Not sure if recipients will be able to read it.

  • Creating form - want to change font style and size in more than one field at a time HOW??

    creating form - want to adjust font style and size in more than one field at a time - HOW??

    Select the fields with the mouse, right-click one of them, go to Properties
    and set the settings you'd like them all to have.
    On Wed, Jan 21, 2015 at 8:51 PM, chuckm38840797 <[email protected]>

  • TYPE and SIZE, 2 more columns to the variable in the Command behavior?

    DW 8.02 added 2 more columns to the variable in the Command
    behavior, TYPE and SIZE. What do you put in here?
    What is the difference for Access text, Date/Time, number and
    Memo columns.
    The Dreamweaver DOCS don't cover this update and you can't OK
    the COMMAND without these two columns

    This will be of some help:
    http://www.w3schools.com/ado/ado_datatypes.asp
    You should be able to gather the column size from the
    database's table
    definition. Typically, columns that hold text are one byte
    per character
    (two for Unicode), whereas integers are 4 bytes. Other
    numeric types and
    date types vary among database systems.
    "lovewebdev" <[email protected]> wrote in
    message
    news:ec0it5$h20$[email protected]..
    > DW 8.02 added 2 more columns to the variable in the
    Command behavior, TYPE
    > and
    > SIZE. What do you put in here?
    > What is the difference for Access text, Date/Time,
    number and Memo
    > columns.
    >
    > The Dreamweaver DOCS don't cover this update and you
    can't OK the COMMAND
    > without these two columns
    >

  • Is there any way to bring back the font type and background of Safari reader from iOS6 in to the iOS7 ? I really miss it, the new design is awful, simple and has now class at all.

    Is there any way to bring back the font type and background of Safari Reader from iOS6 in to the iOS7 ? I really miss it, the new design is awful, simple and has now class at all.

    I agree with you, many things in the ios 6.x were more elegant. The reader was the most one of them. I think the ios7 wants to be the windows 8.

  • Show columns for song "Type" and "Size" in v8 list view?

    I often sort songs and audio files by either type (mp3 / aif / AAC), or size (how many MB.)
    I can't find how to reveal these columns in v8 -- in 7 i would use command-J to reveal the "view options" dialog, then simply check the boxes to display "type" and "size"
    The new View Options dialog only has a few options for columns.
    Where did they go?
    Thanks.

    Try right clicking at the top of any column and choosing from the list that appears. If you what to display the file format/type (MP3, AAV etc.)choose "Kind".

  • Portlet image type and size

    Hi
    Are there any particular iamge types and size required for portlet banner, header,
    footer, etc...?
    Thanks a lots

    No. It all depends on what type of images your browser can render and
    the real-estate you have on the browser.
    Subbu
    david wrote:
    Hi
    Are there any particular iamge types and size required for portlet banner, header,
    footer, etc...?
    Thanks a lots

  • Saving multiple file types and sizes

    I design logos using Illustrator. After the design is approved I need to save it in multiple different file types and sizes. (ie. Jpg Hi, Med, Lo; tif; eps; pdf)
    Does anyone know of a script that can do this?
    Thanks,
    Mark

    I don't know of an existing script that does exactly this. You could make one though. Saving an Illustrator document to both 'eps' and 'pdf' formats is very straight forward once you know which options you want. Personally I would use Photoshop to create the required 'jpegs' Illustrator does not export to any given resolution only scaling at 72dpi… Open either the 'eps' or 'pdf' in Photoshop resize and save 3 times.

  • Webdynpro to limit MIME types and size

    Hi,
    I need to write an web dynpro application to limite the file type and size using IWDFileUpload API, does anyone has some suggestion ?
    Thanks a lot.
    Kind regards
    Ben.J.

    Hi Ben,
    I think you can restrict the file type and and also check the file size before uploading the file. You need to write the logic to check out the file type.
    Use the following code to check restrict the file upload of only txt file...
              IPrivateTestView.ITestElement pf =
                   wdContext.nodeTest().currentTestElement();
              IWDMessageManager mgr = wdComponentAPI.getMessageManager();
              if (pf.getFileResource().getResourceType().getFileExtension() != null
                   && pf
                        .getPatchResource()
                        .getResourceType()
                        .getFileExtension()
                        .equalsIgnoreCase(
                        "txt")) {
    // Check if file size is in valid range.. call getFileSize()
    mgr.reportSuccess("File can be uploaded");
              } else {
                   mgr.reportException("Kindly upload ont TXT files", false);
    And use following code for calculating File Size:
         private String getFileSize(IWDResource resource) {
              InputStream stream = null;
              DecimalFormat myFormatter = new DecimalFormat("###.##");
              double size = 0;
              String unit = "";
              try {
                   stream = resource.read(false);
                   size = stream.available();
                   if (size < 1024) {
                        unit = " Bytes";
                   } else if (size < 1048576) {
                        size = size / 1024;
                        unit = " KB";
                   } else if (size < 1073741824) {
                        size = size / 1024 / 1024;
                        unit = " MB";
              } catch (IOException e) {
                   wdComponentAPI.getMessageManager().reportException(
                        e.getLocalizedMessage(),
                        true);
              } finally {
                   if (stream != null) {
                        try {
                             stream.close();
                        } catch (IOException e) {
                             wdComponentAPI.getMessageManager().reportException(
                                  e.getLocalizedMessage(),
                                  true);
              return myFormatter.format(size) + unit;
              //@@end
    This way you can restrict the users. As far as I know there is no standard way of restricting the same
    Hope it helps
    Regards
    Abhinav

Maybe you are looking for

  • Please help. I can't email or open an ai file

    Hello, I have an online design class deadline for illustrator cs3. i created a jpg file and saved it as save for web. this was semi successful. I then took the same high resolution jpg document and saved it as the apparent original, ".ai" file. ***Fo

  • I have become unable to print from a webpage

    I have used Firefox for several years w/no major probs. Recently, however, I cannot print from a web page on my Lexmark 7675. I can print saved documents. When I click "print preview" the screen just shows up as gray all over. If I click "print", I g

  • Firefox goes to mobile version of yahoo mail in laptop

    i'm using firefox 5 ... when i open yahoomail in my laptop browser using the link mail.tyahoo.com or yahoomail.com it automatically redirects to the mobile version of yahoo mail i.e m.yahoo.com... this has resulted in my webmail notifier add on also

  • Script external subroutine for multiple fileds display

    Hi, can anybody tell how to write external subroutine in script. i want to display multiple fields data in script by using external subroutine. Regards, Kumar.

  • Accessing Setup in Motorola QUIP 6416-2

    I want to change the video options in my STB.  I cannot access the setup menu for the STB.  When I push the menu button, I get the FIOS menu not the STB menu. How do I get to the STB setup menu?