Correspondence Management - Customizing bullet/numbering style

Hi everybody,
I'd like to customize the CM Editors View a little bit - the bullet/numbering-styling - to be exact. When I browse to "ip:port/lc/crx/de/index.jsp#/content/cm/" I found the file called "tbxeditor-config.xml". There I'm able to add/remove fonts, etc. But I couldn't find any hints to change bullet/numbering-styling e.g. changing from 1,2,3 to $1, $2, $3. Any ideas?
Thanks in advance

Have you had a look at the custom numbering in List Module If that suits your requirement ?
You will have to create multiple text modules of each bulleted item and create a list with custom bullet numbering that contains all the text modules.
--Santosh

Similar Messages

  • Using custom bullet images in paragraph styles

    R8 HTML.
    Hello all,
    Bit of an edit to this one.
    I've got several sections of text through my doc, Tips and Notes, currently this text is just highlighted and box bound. But I instead want it to have a custom bullet image, like a ! or something similar. I've found the images I want to use in the 'Bullet and Numbering..' menu of RH, but using these to create a style creates a new list style, I instead want to edit my existing Note and Tip styles so the image is used, otherwise I have to re-apply the list style all over the doc in place of the Tip and Note styles I have now. Would be very nice if I didnt have to do this.
    Hope someone can help.
    Cheers.

    Hi Nick
    Coming in a bit late on this.
    I just successfully changed to picture bullets by performing the following actions.
    Added the image I wanted to use for the bullet as a Baggage file.
    Edited the Lists item in the Style Sheet editor so that lists were presented in an unusual font. (did this so I could easily locate the appropriate CSS section when editing later)
    *NOTE: I'm unsure why Lists is listed as a separate entry of its own, but I used the Lists found within the Other category.
    Now hand edit the CSS using Windows Notepad. Certainly you may view the files in Windows Explorer and right-click to edit, but I much prefer to launch the CSS in Notepad right from RoboHelp HTML. To do that, you click Tools > Options > Associations tab. Then associate Notepad with CSS files. This allows you to right-click the CSS in the RoboHelp HTML Explorer and choose View. The CSS should then display in Notepad.
    Okay, once that was done I edited Notepad and saw that my lists item looked as below:
    I amended it to add the reference to the image as shown below:
    Seems a lot has been tried and nothing seems to work for you. I'm hopeful this will either help you solve it or spark a thought that will.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How do I completely enable a new custom asset in Correspondence Management?

    Hello!
    I'm trying to add a new custom asset to the Correspondence Management Solution Accelerator, and have it behave like all other assets in the system (ie searchable, updateable etc).  I'm almost there, but there's obviously something I'm missing, and I was hoping someone here might have done this before, or have a link to some documentation regarding the matter that I may have missed.  The asset I'm trying finish creating is for a LiveCycle user in a specific domain.  This is what I've done so far...
    I've created the asset definition MyUser.fml and placed it in the FSIApp\Portal\webapp\WEB-INF\assetDefinitions folder.  I've then registered this fml file in the spring-config.xml file in both the 'lc.cm.assetDefinitionsDeployer' and 'lc.cm.assetTypeRegistryBootstrapper' beans.  In the 'lc.cm.assetTypeRegistryBootstrapper' bean, I set the key to 'MyUser', and the value to the class path of my Java class that represents this asset.
    On the Java side I've created the MyUser.java class, as well as MyUserService.java and MyUserServiceImpl.java to allow the searching, updating etc of the MyUser assets.
    After running the Bootstrap process, I can log into the Manage Templates application, select Data Dictionaries from the 'View' dropdown, and view/edit the MyUser data dictionary properties with no problems.  So I'm happy that the asset has successfully been registered with the application.
    Where I'm stuck is choosing the MyUser asset from the drop down, and searching the system for assets of that type.  I can choose the MyUser asset type from the 'view' drop down, but the search result returns an empty array.
    From digging into the existing Manage Templates code, I've created the following classes:
    public interface IMyUserService extends IEventDispatcher -  containing the following function definitions:
              function getMyUser(id:String):IAsyncToken;
              function getAllMyUsers(param1:Query=null):IAsyncToken;
    public class MyUserSeviceProvider extends ServiceProvider - containing a getter/setter for MyUserServiceDelegate
    public class MyUserServiceDelegate extends ServiceDelegate implements IMyUserService - containing the functions defined in IMyUserService, as well as creating the RemoteObject to perform the actions.
    The MyUserServiceDelegate constructor is:
         public function MyUserServiceDelegate ()
                super();
                _service = new RemoteObject("myapplication.services.myUserService");
                _service.showBusyCursor = true;
    This is the code for the function in getAllMyUsers in MyUserServiceDelegate:
         public function getAllMyUsers(param1:Query = null):IAsyncToken
                var operationToken:AsyncToken = this._service.getAllMyUsers(param1);
                var token:IccToken = new IccToken(this.className + ".getAllMyUsers");
                operationToken.addResponder(getDefaultResponder(token));
                return token;
    I've also made changes to the following config files to register the RemoteObject destination specified in the MyUserServiceDelegate constructor:
    spring-http-config.xml:
         <bean name="/service/UserService" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
            <property name="service" ref="myapplication.services.myUserService" />
            <property name="serviceInterface" value="com.mydomain.lc.services.MyUserService" />
        </bean>
    remoting-config.xml:
         <destination id="myapplication.services.myUserService"/>
    flexmessagebroker-servlet.xml
         <flex:remoting-destination ref="myapplication.services.myUserService" />
    Above my Java class definition of MyUserServiceImpl.java I have the following line:
    @Service("myapplication.services.myUserService")
    So......
    My problem is that when I choose the MyUser asset from the drop down, no search results are returned (an empty array is returned).  I have logging code in the getAllMyUsers function in the MyUserServiceDelegateclass.as, as well as logging in the MyUserServiceImpl.java class (not shown in the above code snippets) and neither of them fire when selecting the MyUser asset from the drop down.  So neither of the classes are being called on the search.  If I force a search via the following line:
    MyUserSeviceProvider.getMyUserService().getAllMyUsers();
    the logging in both the Flex and Java classes works (and the java class returns the results as expected).  So I'm happy that these functions, as well as the linking between the Flex and the Java side is working correctly.
    The step that I can't seem to work out is having the selection of the asset in the drop down call the desired function automagically.  I've been digging into the SearchManager, the ServiceLocator and heaps of other classes, but I'm falling deeper and deeper into the rabbit hole...
    Can anyone shed some light on what they think might be needed to make the final link here?  I've been digging and digging into the code for days now and my brain hurts!!
    Any advice appreciated!!
    Thanks,
    Kristian

    Hi Saket,
    By 'not really complete' I'm assuming (hoping) that some work has been done on this already.  Our project requires the use of custom assets, so it's very important that we get this functionality running as soon as possible.
    Any help, unsupported or otherwise, would be great.  Feel free to email me any details if you'd prefer not to post anything public on the boards.
    Cheers,
    Kristian

  • Need help for Customizing Correspondence Management

    Hi,
    Could anyone provide me some documents or reference links which will be helpful for Customizing Correspondence Management in ES4?
    Many Thanks!!

    Hi Santosh,
    Sorry for the late reply.
    I have a XDP file having both static and dynamic content. I need to populate the dynamic content with some value which I will be getting from the XML which is stored in the body of the SOAP request. I want the letter to be generated dynamically (like no user selection of XML etc) because I want to avoid manual input in the correspondence management.
    Could you please let me know if the above can be achieved. If yes, could you please provide any useful stuff related to above requirement.
    Many Thanks!!!

  • Creating Custom Bullets & Lists in Pages 5.0

    I cannot figure out how to create a custom numbered list in Pages 5.0. I had custom LISTS on my 4.3 Docs that did not migrate to 5.0. How do I create duplicate LIST STYLE in 5.0?
    Thank you for your help.

    On the format menu on the right side, there is the font section, alignment section, spacing section, and bullets & lists section. Next to the bullets & lists section is a drop-down menu of preset lists. At the top-right of this menu is a plus sign. Clicking on this will allow you to create a new list in that menu and title it. From there, you will have to manually create your custom list change the type of bullets (numbers, roman numerals, letters, etc.) -- you might need to click on the disclosure triangle to the left of the bullets & lists title to see this part. When you finish with your custom list, there will be an asterik next to the title of the list, and if you click on that title, the drop-down menu will open up again and you can hit "Update" next to your list name. This should save the style for that custom list. Here is the most important part: When you have finished making this list, make sure you save the document as a template and select that template if you ever want to use that list. I have found that a custom list in a document (saved or deleted) that is not made into a template does not carry over into other documents. Setting up this custom list may take a while, but hopefully it will work and make things easier. I hope this makes sense, and let me know if you cannot understand something. Hopefully this picture will help too.

  • How can I make a bullet item with a custom Bullet character such as a check mark ?

    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem

    Cem777 wrote:
    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem
    Search InDesign help for "change bullet characters" (without quotes,) and use the technique described there with the Zapf Dingbat font as suggested by Peter S.
    You can also use InDesign's glyphs panel (Window > Type & Tables > Glyphs) to scroll through all the character sets in all the fonts that InDesign has access to on your system, to look for check mark characters.
    After you have created a paragraph style that applies the customized check-mark-bullet that you want, every time you apply that paragraph style, the custom bullet appears. So, while it's a few steps to set up the style the first time, from then on it's automatic.
    If you really need a particular bullet that's not in any font you have, you'll need to search for fonts that have check mark characters and buy one or use a free one. Caution: free fonts aren't always created to the same strict standards that commercial fonts from reputable font foundries observe; free fonts sometimes cause problems when printing or exporting to PDF. You can search Google for "fonts with check mark" (without quotes.)
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Change item to be managed by serial numbers

    Hi All,
    I know this is not an SDK/development question, but have no idea where else to search for answer. So any suggestions will be appreciated!
    I have an item that is created as not to be managed by serial numbers. I then do a goods receipt for the item. Then afterwards I want to change the item to a serial item. Is there any way that I can allocate serial numbers to the items already in stock (those that were created before manage serial was switched on?)
    Thanks a lot in advance,
    Adele

    Hi Ibai,
    Thanks for your reply. I have tried this, but it adds the quantity I type in the Initial Quantity to the existing quantity, so I have double the required amount in stock after this operation. I have sent a query to SAP and their response was:
    Hi, unfortunately it is not possible to assign serial numbers to items in stock that was entered BEFORE you turned on the serial number management. The system assigns the numbers only to the items that had 'manage item by serial number' ticked before they were purchased/sold. But it is possible to add serial numbers to items with transactions, but you can only add them trough new receipt documents (not update the "old" items that were in stock before you turned on the "serial management") This also means that you cannot add serial numbers to this item in a salesorder, delivery or invoice that was made before the management was turned on - unless you cancel the document and enter it again. The "drawback" with this is that you will not have equal numbers of serial numbers and actual items in stock. (The customer will always come to a point where they need to receive more quantity of this item to create new serial numbers again.) The solution can be at some stage to issue the stock with no serial numbers to a different warehouse or to get rid of this stock in other ways. The other option is to issue all stock from warehouse, and enter them again trough an opening balance, this time WITH serial numbers. You will then have equal number of stock and serial numbers.
    So, it doesn't seem to be possible.
    Adele

  • How to manage customer provided raw materials?

    Hi,
    How to manage customer provided raw materials? Same raw materials are bought from external vendor and sometimes provided by customers. How to receive customer provided parts into inventory so that Inventory value wont get affected? My client doesn't want to maintain 2 materials numbers for the same part.
    Thanks
    Nag

    Hi,
    Maintaining two different materials is not required. These are the steps to be followed.
    1) You can create the Customer as a vendor in XK01.
    2) Extend the material with "Purchasing view" in MM01.
    3) create Purchase order in ME21N.
    4) Do Goods Receipt in MIGO.
    5) Do Invoice in MIRO.
    Please note that if the Price control of this material is V(Moving Average) then there will be valuation change with every purchase. With price control S(standard price) the valuation will be constant.
    Raw materials in common is maintained with V normally.
    Regards
    Binoy

  • How to manage custom document properties (e.g., company name, project name)

    Hi,
    How to manage custom document properties (e.g., company name, project name, event date...) in Apple iWork Pages like it is possible in Microsoft Office Word ?
    The idea is to simplify the management of multiple instances of same piece of information in a document by writing them once as a "properties" of the document that can be referencing in different places of the document. Changing the property value, will automatically change all its instances.
    Thanks in advance for your help

    Thanks for your help Peter.
    Search-Replace and Auto-Substitution are not requivalent for me since I'm looking for something more complex.
    Suppose you have a document about an Event which occur on a specific date (e.g., 11-09-2003).
    In your document, you may be interested in...
    - sometimes display the date as '11-09-2003',
    - sometimes display the date as 'Novembre, 2003',
    - sometimes display the date as 'Sunday, November 9, 2003'.
    With a document property, you would be able to define the EventDate as 11-09-2003, and then define different specific format (e.g., 'mm-dd-yyyy', 'mmmm, yyyy'...) for each reference to the EventDate document property.
    Using Search-Replace of Auto-Substitution, it will be painful since you will have to define as one token per format of a document property (e.g., EventDateAsMMDDYYY, EventDateAsMMMMYYYY...).
    More than that, suppose you have a Numbers table inserted in your Pages document.
    You may be interested in using some document properties in formulas.
    This can't be solved using Search-Replace.
    But its ok, I will wait until this feature will be supported in Pages.

  • Custom bullet suddenly shown incorrectly when generated

    Please  help  - need fix!!
    I'm working with RH 9 and have several projects based on the same CSS. Yesterday in one of the projects, one of my custom bullets suddenly became incorrectly depicted in view or generated form.
    Everything looks fine in the editor but when viewed or generated, it changes. However only on of many custom bullets?
    In the default CSS the bullets look similar in HTML:
    This one works fine:
    <ul>
    <li class="p-tip"><p class="tip">Text.</p></li>
    </ul>
    This one is the troubled one:
    <ul>
    <li class="p-Vigtigt"><p class="Vigtigt"><span style="font-weight: bold;">Text.</p></li>
    </ul>
    Enclosed: screen shot of custom bullet in editor and in viewer

    Hey,
    If I under stand you correctly, the "P.Vigtig{" entry above shouldn't have a "list-style: url(../../about.png);" entry at all!? But it should be present in "LI.p-Vigtigt {" ?? Should I weed these out in the CSS??
    At the moment It looks like this - and works:
    P.Vigtigt {
    line-height: Normal;
    font-style: italic;
    font-weight: normal;
    x-next-class: ;
    x-next-type: P;
    margin-left: 14pt;
    margin-bottom: 4pt;
    margin-top: 10pt;
    list-style: url(about2.png);
    LI.p-Vigtigt {
    line-height: Normal;
    font-style: italic;
    font-weight: normal;
    list-style: url(about2.png);
    LI.P-Number {
    line-height: Normal;
    list-style: decimal;
    Concerning upgrade, Yes we upgraded about 12 months ago, but haven't really had any snags? All projects were converted automatically the first time they were initiated.
    And no, we never tampered with the CSS just resued the same for several projects? I'd enclose the CSS but  this is not supported, sorry!
    Cheers,
    Erik

  • Customized bullets in RH 7

    Hi,
    Has anyone created a customized bullet in RoboHelp 7? I'm trying to create a nested bullet that uses a dash. The only way that I can figure out is to manually type the dash for each bullet item. Is there another way?
    Thanks.

    Hmm, if you've got your own bullet graphic it used to work well in good old RH X5: Right-click the bullet item > Select Bullets and Numbering > Specify a Bullet image
    RH7 (less old, but in my humble opinion also less good than X5) has same fuctionality, but it has stopped working for me:
    When using the Bullets and Numbering dialog for inserting an image as a bullet, it initially works fine. In my case the path to the graphic is a relative one (e.g. ../../MyGraphics/MyImage.jpg). But only until I close the topic. The next time I open it, RH has forcefully corverted the path so it points to a non-relative location on the C: drive (where of course the graphic is not located). Consequently I get the dreaded red placeholder square instead of my bullet graphic.
    This has effectively made it impossible for me to use own graphics a bullets since I upgraded to RH 7. I wonder if there any reason behind this behaviour?
    All best,
    Morten

  • Photoshop CS5.1 crashes when trying to open Manage Custom Sizes in print window. Help??

    I have OS 10.10.2.  When printing and trying to access the "Manage Custom Sizes" in the print window, my Photoshop CS5.1 crashes.  I have not had problems up until now.  Not sure what changed. Can anyone help me figure this out?

    A preferences reset should fix it.
    Macintosh - CMD-SHIFT-OPTION immediately after you double-click the PS icon.
    Release those keys when you see the Delete Photoshop Settings dialog. Click "Yes" to do this.
    You may have to go into the CS5 application folder and directly double-click the Photoshop.app there.

  • Photoshop CS5 crashes when attempting to "Manage Custom Sizes" in Epson r3000 printer dialogue window

    I'm trying to print a gallery wrap image on an Epson R3000 printer using 13" wide Epson roll canvas. Every time I select "Manage Custom Sizes" in the printer's dialogue window, Photoshop CS5 crashes. I've been using Photoshop software for more than 15 years with a variety of Epson printers including Stylus Pro 7600 and this problem has never occurred previously. I can't seem to find a solution. Anyone have a suggestion? Thanks in advance!

    That means that there is a bug in your Epson printer driver.
    Please contact Epson for updates to their printer driver software.

  • What's a good way to manage custom schema for DS  5.1?

    What's a good way to manage custom schema?
    Custom Schema for Object Class and Attributes
    The reason I ask this is because there might be a need in the future where I need to export those custome schema into different branded directory server. I just want to make this as painless as possible.
    Right now, I thought of 2 options
    1) Create my own LDIF file with my custom attributes and object classes, so if one day I need to export to another directory server, I can just copy that custom created LDIF file over. (Will this work?)
    2) Create a JAVA application using JNDI. What this Java App. will do is read through a XML file and create those object classes and attributes on-the-fly. (of course, the XML structure will be predefined by me, so that my Java App. will be able to parse through it correctly. Will this work?)
    Anymore suggestion? I would want to hear more advices and suggestions.
    Also, I assume that will work even with replication. All I need to update is the master server, and the slaves will replicate automatically.
    Thank you very much! :)

    Demo: I'm using the nul character to represent the end of the word, so that the data structure can represent that "hell" and "hello" are both in the vocabulary:
    import java.util.*;
    class Node {
        private SortedMap<Character, Node> children = new TreeMap<Character, Node>();
        //0 <= index <= word.length()
        private void add(String word, int index) {
            if (index == word.length()) {
                children.put(Character.valueOf('\u0000'), null);
            } else {
                char ch = word.charAt(index);
                Node child = children.get(ch);
                if (child == null) {
                    children.put(ch, child = new Node());
                child.add(word, index+1);
        public void add(String word) {
            if (word == null || word.length()==0)
                throw new IllegalArgumentException();
            add(word, 0);
        public String toString() {
            return children.toString();
    public class Example {
        public static void main(String[] args) throws Exception {
            Node root = new Node();
            root.add("hello");
            root.add("how");
            root.add("who");
            root.add("hell");
            System.out.println(root.toString());
    }

  • Problem Managing Custom Paper Size Using Epson RX500

    Since updating my Mac to the latest version Yosemite, when I now try to Manage Custom Paper Size in the Epson print box via my Photoshop Elements 11, Photoshop crashes. Has anyone experienced this problem? If so have you found a solution please?

    Hello Bridge. Thanks for the reply. I am not sure where the Elements Print dialogue is but, having come back to answer, I can see the "More like this" box on the right and viewing those posts confirms what you say. It would appear from one of the posts that Apple is aware of the problem and may be working on it. However, one of the posts opposite suggested using Print Preview to set the custom print size and print from there. I found this works for me. So, thanks again for your consideration. Regards. Brian.

Maybe you are looking for

  • Hyperlinks don't work in PDF Form

    We use Acrobat Pro 10 / LiveCycle Desginer to create our fill-able forms to then publish on our website.  Our users can click the form on our webpage, the PDF opens in Chrome just fine and they can fill in the fields.  But when a user trys to click o

  • Input Check in Table Control

    A table control is created in screen painter and an internal table was used to store particular data in ABAP program. Information were entered into the table through ABAP program(insert value into internal table). The input check generated by data di

  • Macbook pro running slow  after removing charger.

         HI I REALLY NEED SOMEONE TO HELP ME MY MAC HAS BEEN RUNING SLOW. EVERYTIME I TAKE OFF THE CHARGER IT RUNS SLOW, WHEN I PUT IT BACK ON IT RUNS GREAT BUT IF I TAKE IT OFF ITS REALLY SLOW. I RESET IT TO FACTORY MODE BUT THE SAME PROBLEM CONTIUNE. D

  • IPad2 and Adobe Flash Player

    I am unable to view videos because Apple does not support Adobe Flash Player. Is there a solution? Thanks for any replies.

  • COFC error

    Hi Guys, I need some basis information on COFC transaction, 1. In which process of CATS record tranfer to PS does errors occur which are listed in COFC,m either during CATA or CAT5. 2. In my case both CATA and CAT5 are done by back ground job, but in