More formatting (ordered lists)

I want to create an ordered list with some instructions for the Adobe Reader forum (thanks to Ankit_Jain for the original instructions):
Download Microsoft's SubinACL tool from http://www.microsoft.com/downloads/details.aspx?FamilyID=e8ba3e56-d8fe -4a91-93cf-ed6985e3927b
Install the same by double clicking on the "subinacl.msi" just downloaded.
Open Command Prompt window through the Run Dialog Box (Start -> Run and type cmd and click OK)
In the Command Prompt window, type in or copy/paste the following commands:
cd /d "%ProgramFiles%\Windows Resource Kits\Tools" (Hit Enter)
subinacl /subkeyreg HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\OptionalComponents /grant=administrators=f /grant=SYSTEM=f /grant=USERS=f /grant="Creator Owner"=f (Hit Enter)

That worked well, actually as expected.  In the original forum it did not work when I used <ol type="i"> for the sub-list, as below; the forum changed it to the default arabic numerals:
Download Microsoft's SubinACL tool from http://www.microsoft.com/downloads/details.aspx?FamilyID=e8ba3e56-d8fe -4a91-93cf-ed6985e3927b
Install the same by double clicking on the "subinacl.msi" just downloaded.
Open Command Prompt window through the Run Dialog Box (Start | Run, type cmd and click OK)
In the Command Prompt window, type in or copy/paste the following commands:
cd /d "%ProgramFiles%\Windows Resource Kits\Tools" (Hit Enter)
subinacl /subkeyreg HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\OptionalComponents /grant=administrators=f /grant=SYSTEM=f /grant=USERS=f /grant="Creator Owner"=f (Hit Enter)
P.S. now it changed it to "a." and "b." instead of "i." and "ii."...

Similar Messages

  • The definitive field order list for all formats

    WANTED: The definitive field order list for all formats, NTSC and PAL.
    I have seen several such lists, but are they trustworthy?
    This one http://www.dvxuser.com/V6/showthread.php?t=125817 looks promising, but, for instance, how can HDTV 1080/24p have a field order of upper field first? - Isn't "p" without any fields?
    Anyway, if someone has seen such a definitive list, preferrably from some "official" source, please share.
    Thanks 

    Hi kalione,
    We’re always looking for ways to make browsing BestBuy.com easier. With the recent merger of the My Best Buy website into the main BestBuy.com page, it sounds like there may have been some changes to how you can view upcoming games! My apologies if there has been an added element of difficulty here.
    The method that zztoluca has explained is actually how I generally check for pre-orders we have listed, as I like looking at them by individual platform. If you start at the main “PRODUCTS” tab at the top of the main site, choose “Video Games, Movies, & Music” and then choose the console of your choice. Once there, there should be an option on the left under the “Games” section for browsing by Pre-orders. Here is an example of pre-orders listed for Xbox One.
    I hope this helps! Keep an eye on BestBuy.com as it’s constantly changing and evolving.
    Cheers,
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Workaround for nested ordered lists in EPUB?

    I am slowly converting a book I laid out in InDesign into an EPUB that echoes the logic (not rigidly the visual presentation) of the print version.
    Most of it has gone smoothly, because I test and fix at different stages, and have tagged the hell out of everything from the beginning. I view the test files on an original iPad, a Nook Color, and an iPhone. I have the Kindle Previewer.app and Kindle.app that I use when converting to .MOBI.
    However, there are two problems I’m having when viewing the book on a Nook Color that I do not know how to fix.
    The first problem is vertical line spacing when there are character styles (span classes) applied to specific words in a line of text. This book has many book title references and some foreign words that are italicized, for example, and wherever they occur, there is additional line space above and below that line of text. This also occurs where characters have been tagged as bold (either using <strong>, <b>, or <span class=bold>—I have tried all three ways of tagging these instances of text. You can see what a page looks like on the Nook Color at http://www.girsbergerdesign.com/Nooktest/nooktest.html.
    The other problem I’m having is with nested ordered lists. There are some outline-style lists, with levels 1. and a. While I can edit these in Sigil to maintain the type=1 and type=a of these lists, on the Nook Color, they are still showing up as 1., with the a. level indented properly but numbered 1. You can see a sample below (top) and a sample of the same page on the iPad in iBooks (bottom):
    Within iBooks on the iPad and the iPhone, the correct outlining system is maintained, after I change the value of the type of the lists to "1" and "a". So I know that works. I just don't see why it wouldn't work on the Nook Color.
    In the Kindle previewer.app, the bolds and italics and other span class formatting behaves properly (i.e, does not cause unsightly linespacing), but it too ignores the a level of the outline-style format, although it honors the indent.
    Does anyone have any advice about this? I'd like to be able to map the list styles to HTML for structure, but this is driving me crazy!
    Thanks in advance.

    Thanks for your response, seddybell. This got me thinking, and I believe I have found a solution to the linespacing situation (still working on the outline situation).
    I think the line-height attribute is the issue. Because so many textbooks in print start out with something like 10/12 spacing (the book I’m converting is 11/14 Kepler Std), the line-height in the CSS file (or the leading of the paragraph style in InDesign, before exporting) has to be increased to roughly 164% of the font-size (in this case, from 1.27 to 2 em in the CSS file) to ensure that the <em> and <strong> characters don't throw off the linespacing for viewing on the Nook. This way, whether the user has “Publisher Defaults” turned on or off, the linespacing won’t be affected.
    I noticed that when I turned on “Publisher Defaults”, my text looked fine, but when I turned it off, THAT was when the spacing problems slapped me in the face!
    Here was what I did with my basic p.TX tag, and then made proportional adjustments to other tags:
    Original CSS style exported from InDesign:
    p.TX {
    font-family : "Georgia", serif;
    font-weight : normal;
    font-style : normal;
    font-size : 0.92em;
    text-decoration : none;
    font-variant : normal;
    line-height : 1.27;
    text-align : justify;
    color : #000000;
    text-indent : 18px;
    margin : 0px;
    Line-height value increased:
    p.TX {
    font-family : "Georgia", serif;
    font-weight : normal;
    font-style : normal;
    font-size : 0.92em;
    text-decoration : none;
    font-variant : normal;
    line-height : 2;
    text-align : justify;
    color : #000000;
    text-indent : 18px;
    margin : 0px;
    I do something similar to your p.space-above on the InDesign side. I always add styles with a space above or below attribute that ports over as a margin quite nicely, so I'm glad I've already developed this good habit! But I'll definitely be adding more space between lines now to accommodate this oddity on the Nook (assuming that's what it is).

  • Downloading the open purchase order list

    HI Friends,
    Please let me know how to download the open purchase order list from SAP aong vth buyer codes.
    Regards,
    A.S.kumar

    Hii
    Go to ME2N, give the details what ever u want in that screen and in Scope of list - select ALV.
    If u select ALV , it will show in the format of excel sheet , so u download as lik that .
    In selection parameters - u mention WE101/WE102 ...etc , according ur requirement.
    Any clarification , let us know
    Thanks
    SAP-MM
    Edited by: MM group on Feb 19, 2010 6:04 AM

  • How to get unordered/ordered list in ADF JSF

    Hey,
    So I'm thinking this is a pretty simple task but I just can't get it to work or find anything on it. I just want a simple unordered or ordered list in my JSF view, the text of each list element being an <af:outputText> value. At the moment I have something like:
    <ol>
           <li>
               <af:outputText value="something" />
          </li>
          <li>
                <af:outputText value="something2" />
                <af:goLink text=" text " id="gl1" destination="/faces/mypage.jsp"/>
                <af:outputText value="something3" />
          </li>
    <ol>So I expect it to output the below, but instead its completely messed up.
    1. something
    2. something2 text something3
    It's getting messed up because ADF is adding divs around the <af:outputText> tags, as well as completing the li tags before my ones. Surely there is a way to do this either through the framework or other means? Anyone know?
    Edited by: Ross on 30-Nov-2011 22:08

    An option is to wrap your elements in an af:panelList with listStyle='list-style-type:decimal', such that the af:panelList does the numbering of the elements for you. More information on the af:panelList can be found here: http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_panelList.html
    For the second list item made up of your 3 components, try wrapping them in a horizintal af:panelGroupLayout.
    eg:
    <af:panelList id="pl1"  listStyle='list-style-type:decimal'>
      <af:outputText value="something" />
      <af:panelGroupLayout layout="horizontal">
        <af:outputText value="something2" />
        <af:goLink text=" text " id="gl1" destination="/faces/mypage.jsp"/>
        <af:outputText value="something3" />
      </af:panelGroupLayout>
    </af:panelList>CM.

  • SharePoint Purchase Order List

    Hi All,
    I want to develop small purchase order system in sharepoint. I already started working on this but I stuck in below points where the purchased Qty is comming on different dates. For example :-
    Order Qty = 100, Purchased Qty (Qty deliverd to godown more than one time in three different date like 20+20+60=100).
    Now the list which I've created it's strait forward like below :-
    Order Date,Purchased Date, Order Qty, Purchased Qty,Balance Qty (calculated),Status(Pending / Completed)
    For this particular scenario the Qty was purchased in three lots so not sure how to archive this.
    Please advice. Also if you have some link or steps please provide

    Thanks Romeo for your comment,
    I already created list as per requirement but below I've mentioned my problem. I think the way you are saying to use two list that will work but if you provide some steps it will be helpful for me.
    My Created list name is 'Order List' and below are the columns :-
    Purchase No, Part No, Purchase Order Date, Pu. Order Qty, Deliver Date, Deliver Qty, Balance Qty
    Here the problem is filtering the data for report purpose.
    As I'm entering the details in one row (as per the above column name) if Order Qty is deliver with same Qty / full Qty then my Balance Qty will show zero. And I can easily filter with Purchase No to check the order with Deliver Date & Deliver Qty when we
    received.
    But now the problem is if Order Qty is deliver on split basis for example (pfb print Screen) 800 Qty deliver in three dates (500+100+100=100) then I'm not sure how to enter the data to trace the Deliver dates and Deliver Qty as per Purchase No.

  • How to add ordered list, subscript in RichtextEditor?

    Hi,
    In the richtexteditor I need to add the ordered list button(like the bullet) and a button for subscript, is ther any way to that.
    I have the information how to add a Find/Replace button.
    Also can anyone provide me the format for ordered list.
    Help me regarding this.
    TIA

    Hi,
    Try this :
    super.processRequest(pageContext, webBean);
    OADefaultListBean list =
    (OADefaultListBean)createWebBean(pageContext, OAWebBeanConstants.DEFAULT_LIST_BEAN,
    null, "popuplist");
    list.setListViewObjectDefinitionName("oracle.apps.per.selfservice.competency.profile.server.CompSearchVO");
    list.setListValueAttribute("compType");
    list.setListDisplayAttribute("compType");
    list.setMultiple(true);
    list.setName("poplist");
    OAMessageComponentLayoutBean listboxlayout = (OAMessageComponentLayoutBean)webBean.findIndexedChildRecursive("searchFiltersRN");
    if(listboxlayout!=null)
    listboxlayout.addIndexedChild(list);
    Check for the correct id of the OAMessageComponentLayoutBean as this is the correct code to add the list bean.
    Thanks,
    Gaurav

  • Formatting a list

    Hi everyone,
    I need help special-formatting a list of names and info.  The general format will look like this:
    Name
    title
    organization
    email
    website
    I usually give each element a unique paragraph style, then link them all via "next style".
    This usually works great. However, some people will not have websites or even e-mail addresses....which will screw up the "next style" formatting. Is there any way to get around this?
    Thanks,
    gmannib

    No, "Next Style" does 'Exactly What It Says On The Tin'. It does not "know" if you are applying the styles to an email address, or a web site address, or to the first paragraph of your autobiography.
    You could create duplicates of your first paragraph style and of all the "next" ones linked to that, with different "next style" orders.

  • Why does cutting and pasting ordered lists no longer preserve the line numbers

    I often cut and paste ordered lists from web sites (track listings) to put with my downloaded tracks. Until the last update (not sure which version I was using with ubuntu 8.04 but it would have been the latest for that distro.) the line numbers were copied along with the ordered list, but they are not any more, so I have to type them all back in manually, which is a pain.
    I have uninstalled firefox 9 to try to downgrade, but don't know which version would still work.

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Unordered Lists Print as Ordered Lists?!

    The only way I can figure out to indent text in iWeb is with the "Text Indent" parameter under "List" in the Text Inspector. I used that to format the following page:
    http://homepage.mac.com/william.blattner/ISPS/2006.html
    It looks fine on the screen, but when you try to print the page, phantom numbers appear at the beginning of every indented line. When I inspected the source code for the page, I noticed that iWeb is using the "OL" tag – the ordered list tag, which will generate numbers by default.
    Three questions for anyone out there:
    1. Is there another way to produce the indent, without using the "Text Indent" parameter?
    2. Has anyone else had this problem?
    3. Is it possible that this is a product of my publishing to homepage.mac.com, rather than web.mac.com?
    iBook G4   Mac OS X (10.4.8)   iWeb 1.1.2
    iBook G4   Mac OS X (10.4.8)   iWeb 1.1.2

    I understand that it's an invalid property, the property is not defined at all. The web standard is that if you have an unordered list (ul) then it uses bullet points, and if you use an ordered list (ol) then it uses numbers. This is completely backwards on the new update, and since we develop over 400 websites, it will be a waste of our time to go back through every site and add a style type.

  • Seeding in Ordered List.

    How to Seeding In Ordered list?give example.

    I'm not sure if there is a question here for Small Basic.  If there is then please provide more details.

  • Implement Ordered List using Links

    hey guys! i need to write a program that implements an ordered list using links. My first step has always been to find examples and read them over for help. However, i am having a hard time finding this one and i was wondering is anyone had or knows where to find an example of a OrderedLinkList using LinearNodes. It would be great if it had these classes, but not necessary:
    ListADT<T>
    OrderedListADT<>
    LinkedList<T>
    OrderedLinkList<T>
    LinearNode<E>
    LinkedIterator<T>
    Any help would be greatly appreciated and thanks in advance!
    scottybh

    This is clearly some kind of exercise, otherwise you'd just use LinkedList<T>. LinkedList is ordered (always returns the elements in the same order) and can be sorted by providing a Comparator<T> to Collections.sort().
    I'd suggest you do the exercise or ask a more specific question.
    Brian

  • JTextPane ordered-list, unordered-list

    Hi
    I am using RTFEditorKit and want to implement " ordered-list, unordered-list " in a JTextPane. Does anyone has some solution to this?
    Thanx
    Hamza

    Start a new, blank HTML page. Put your lists on it. Are they
    behaving as
    expected? If so, and I suspect that it's so, then it's
    something else on
    your original page. Can we see it?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "synchronised" <[email protected]> wrote in
    message
    news:gmhvop$ghi$[email protected]..
    >I have endeavoured to use both the ordered and unordered
    list in CS4 and in
    > both cases it does not indent as expected. The bullet
    point or number is
    > left
    > hanging off the left of the page and the text lies right
    next to the
    > left-hand
    > margin.
    >
    > I have checked out the Preferences - Code Format and
    this is set up and
    > the
    > indent box is checked with 2 spaces.
    >
    > I have used this facility in the past and used a nested
    unordered list!
    >
    > Can anyone help with this problem or point me in a
    particular direction,
    > please?
    >
    > David
    >

  • Inserting ordered List in JEditorPane

    Hi All
    I am having problem in implementing Ordered List with Nesting Feature. Please if anyone can help me with some advice as to how to proceed.
    Thanks in advance

    An option is to wrap your elements in an af:panelList with listStyle='list-style-type:decimal', such that the af:panelList does the numbering of the elements for you. More information on the af:panelList can be found here: http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_panelList.html
    For the second list item made up of your 3 components, try wrapping them in a horizintal af:panelGroupLayout.
    eg:
    <af:panelList id="pl1"  listStyle='list-style-type:decimal'>
      <af:outputText value="something" />
      <af:panelGroupLayout layout="horizontal">
        <af:outputText value="something2" />
        <af:goLink text=" text " id="gl1" destination="/faces/mypage.jsp"/>
        <af:outputText value="something3" />
      </af:panelGroupLayout>
    </af:panelList>CM.

  • Ordered list vs Unordered list in RichTextEditor

    Has anyone successfully created a RTE toolbar button that formats text into an ordered (numbered) list instead of an unordered (bulleted) list? I would love to know how you did it.

    http://macmost.com/creating-bullet-lists-in-pages.html
    Ordered list work much better in Pages '09, if you have it or can still get it.
    Peter

Maybe you are looking for

  • Clicking on the View More in Outlook....hyperlink does nothing!!

    Does this work for anyone using Lync 2013 FE, Lync 2013 client on Windows 7. Exchange version is 2010 SP3. Everything in the client works just fine but when I click on the Conversations tab, I see conversations going back about 6 months. I have conve

  • Using Two Different Printers

    I use my wife's printer, and my MBP identifies it and prints.  I just added another one for myself so I can additionally print from my MBP. How can I switch from one to the other? I went into SPref, and highlighted my wife's printer, figuring it woul

  • How to update NPSWF32.dll

    As I understand the file c:\WINDOWS\system32\Macromed\Flash\NPSWF32.dll is part of the Flash? When updating flash I expect this file to be updated as well as the Flash10*.ocx file? (my current version is that latest -  Flash10l.ocx) For some reason t

  • Please explain what this program doing- I see the results but don't underst

    public class Mystery2{ public static void main(String []args){ int count = 1; while (count <= 10){ System.out.println(count % 2==1? "****":"++++++"); ++count; }//end while }//end main }//end class

  • CS4 - problem with timeline zoom bar

    I am in process of updating my systems from PPro2 to CS4. The timeline navigation (zoom/pan) bar above the timeline seems to be functionally inoperable. When I try to zoom in or out of the timeline by grabbing the right or left end of the bar and dra