Trying to add HelveticaNeueLT Std to list of Available Fonts

I want to add a font in RH9. I have added the following test to the rhfontset file:
<fontset>
   <name>HelveticaNeueLT Std</name>
   <fontlist>HelveticaNeueLT Std</fontlist>
  </fontset
I save the file and go back into my project but the new font is not there. Is there anything further I may need to do? Thank you for any help you can provide.
nankinnankin

Hi RoboColum(n)
Thank you very much for your response. I believe the font is available because I can use it in Microsoft Word. Also, when I go to Control Panel>Appearance and Pdersonalization>Fonts it shows up (see image). Is there anything further you can think of that might be able to help me. Thanks!

Similar Messages

  • LOV/List of available Fonts

    Does anyone know how to get list of all available fonts on system?. I want to add available fonts to list item, or text item with LOV. using forms 6i
    Thanks

    i don't know how but I can give you a guide line. You can try.
    create another c or vb program that will count font in you system and create a list to text file. Then call that program and get list from that text field. Because you can import text from text file to you form or list.
    Thanks

  • List of available fonts

    Hi all.
    I would like to get a list of all available fonts on a system and store the names in an array. I know that a getAllFonts method exists in the GraphicsEnvironment class, but it's abstract. Are there any common implementations? Or are there any better ways to get the list (I would prefer to not extend my class any further)? Help would be greatly appreciated. Thanks in advance.

    Going back to your followup post - the function to
    return a concrete instance seems to be class
    specific, so then how do I know what the given
    function should be, You check the API.
    i.e. there was no
    getLocalGraphicsEnvironment() function in the API
    spec?Look again:
    [url http://java.sun.com/j2se/1.5.0/docs/api/java/awt/GraphicsEnvironment.html#getLocalGraphicsEnvironment()]getLocalGraphicsEnvironment

  • I tried to add docs to reading list, but I could not find it. Anyone can help how can I locate it. I appreciate your kind assistance.

    I have added docs to reading list, but I could not find it. Anyone can help how can I locate it. I appreciate your kind assistance.

    Hi..
    Tap Safari then tap the Bookmarks icon in the toolbar 
    Then tap Reading List.

  • BHOLD Default Supervisor not showing up in drop down list when trying to add a role.

    Hi All,
    I am trying to add a new role to one of my BHOLD installations, and when I do that I do not have a "default supervisor role" listed in the drop down. A supervisor role is required to be able to create a role. I am performing the operation as a
    B1 admin with the default supervisor role.
    In another installation I can do it just fine. I have found no delta between the two as far as permissions are concerned. Anyone have an idea? Thanks.

    Matt,
    Do you have a large number or roles, as in >500, maybe 1000s? I have seen an issue where a customer had 1000s of roles. There are some SPROCs that look for top 500 or something similar. I think a workaround was to change the SPROCs, not saying your should
    do that necessarily but I believe that is what they did to get around this.

  • I keep trying to add songs to my wish list but when I view the list there's nothing there.

    I keep trying to add songs to my wish list but when I view the list there's nothing there.

    You click on an item's price to buy it - there used to be a 'buy all' button on the wish list screen, but for some reason that has been removed from the current version of iTunes, so you can only buy items individually by clicking on their prices.

  • ITunes song list is blank in iPhoto (when trying to add a song to s slideshow). No issues with iMovie. Any idea? Cheers

    iTunes song list is blank in iPhoto (when trying to add a song to s slideshow). No issues with iMovie. Any idea? Cheers

    Even though no one replied, i fixed my problem.
    Don't know if it will work for anyone else with similar problem
    but all I did was a CHKDSK then a defragment of my laptop and now everything seems to be working fine.

  • I need to make a reservation but the Urbeats 2 are not listed. I tried to add them but there is no serail number for them.

    I need to make an appointment to have my Urbeats looked at they're not working. I tried to make a reservation but they where not listed. I tried to add them but I don't know the serial number or if they have a serial number. How can I get a reservation?  

    Try phoning them.

  • I am trying to add music on my Iphone 4S without deleting my current music list

    I am trying to add music on my Iphone 4S without deleting my current music list

    See this user tip: Recovering your iTunes library from your iPod or iOS device.
    tt2

  • When trying to add a song to a playlist I don't see all playlists listed on my screen.

    I am trying to add a song to one of my playlists. The name of it starts with an S and playlists with names that begin with A through P show on my screen only. When I click on add to playlist I only get A through P.

    And no one could answer this question????? I am struggling for two hours with this problem and can't solve it.
    I have several playlist folders. Here they are
    Then when I try to organize and add some files from the library and I drag a song, I don't see all the playlists folders at the right side on my itunes screen. Here is the pic.
    Do I have to change something in the settings that I am not aware of for other playlists to display? How do I solve this problem?

  • How to add item to a List with a bounded wildcard

    Hi,
    Is there a way to add a subtype instance to a List with a bounded wildcard? For example, say I have an
    abstract class called Car. Then I have 2 concrete subclasses--Ford and Toyota. Now say I have another
    class that contains a prepopulated list and is wildcard bounded like this: List<? extends Car> carList. I
    want to add a method where I pass in a Car subtype as a parameter and then add it into this list, e.g:
    public void addCar(Car car) {
    carList.add(car);
    Trying this, I keep getting "cannot find symbol" compilation errors. When I went back to read the Generics
    tutorial by Bracha, he mentions that explicitly adding a subtype, e.g. carList.add(new Ford()), can not be
    done. But here I'm adding the "upper bound" of the wildcard, i.e. the Car type. Therefore there should be no
    discrepancy between supertype and subtype an thus the carList.add(car) should be ok, IMO.
    Am I misunderstanding something with this logic? Also, if carList.add(car) can not be done, then how can
    I go about doing something similar which will allow me to add subtypes to a "generic" list?
    Thanks in advanced!
    -los

    I get a compilation error expecting an Object instead of a Car. Of course you did. List<? super Car> is a list into which you can put cars -- and possibly other stuff. List<? extends Car> is a list out of which you can get cars (possibly of different makes).
    Do you need a list that you can put cars in and get cars out? That's List<Car>
    This isn't a linguistic problem you are having; this is a design problem. If you have a function that takes an argument which is a list that you can put any kind of car into and be sure of getting a car out of, it isn't reasonable to pass in a List<Ford> (because the function might put in a Chevy) or a List<Object> (but there might be motorcycles already in there). By the requirements you have, you need a List<Car> and nothing else.
    Yes, you could use a cast, but all you are doing is circumventing the type system by saying "I know this List<Object> only has Cars in it."

  • Is there a way to add an existing distribution list to a document?

    i created a distribution list with CVI1 and i am trying to add it to a document, NOT via the distribution list but from the document itself.
    via the "environment" menu, I can create a new list or change a list in which the document is already written in: but i cannot add an existing list from the document.
    any idea?

    i am aware  of that: that i why i asked this question. i need to upload distribution lists to be added to documents and i did not find a way to add the documents to the list (cvi2) in a recording: the amount of document i can add is limited to the amount of lines i see on the screen;
    my final goal is to add existing lists to documents or documents to lists, via upload (excel sheet or txt file) LSMW or other methods!
    any idea is welcome: i have searched and not found solutions

  • How to add data into a List box

    CS3 SDk:Windows<br /><br />Hi all,<br />I am trying to add  data into a basic List box in CS3??<br /><br />// .fr<br />GenericPanelWidget<br />     (<br />     // CControlView properties<br />     kInvalidWidgetID, // widget ID<br />     kPMRsrcID_None, // PMRsrc ID<br />     kBindNone, // frame binding<br />     Frame(0,0,250,90) // left, top, right, bottom<br />     kTrue, // visible<br />     kTrue, // enabled<br />     // GroupPanelAttributes properties<br />     "", // header widget ID<br />     { <br />     <br />     WidgetListBoxWidgetN<br />     (<br />     kWFPListBoxWidgetID, kSysListBoxPMRsrcId, // WidgetId,RsrcId<br />     kBindAll, // Frame binding<br />     Frame(0,0,250,90) // Frame<br />     kTrue, kTrue, // Visible, Enabled<br />     1,0, // List dimensions<br />     19, // Cell height<br />     1, // Border width<br />     kFalse,kTrue, // Has scroll bar (h,v)<br />     kTrue, // Multiselection<br />     kTrue, // List items can be reordered<br />     kTrue, // Draggable to new/delete buttons<br />     kFalse, // Drag/Dropable to other windows<br />     kTrue, // An item always has to be selected<br />     kFalse,// Don't notify on reselect<br />     kFalse, <br />     {               <br />     }     <br />                    <br />),<br />},<br />),<br /><br />//-------ID.h--------<br />DECLARE_PMID(kWidgetIDSpace, kWFPListBoxWidgetID, kWFPPrefix + 2)<br /><br />//observer.cpp-----------WFPDialogObserver::Update<br /><br />//get currently selected/active widget <br />WidgetID theSelectedWidget = controlView->GetWidgetID();<br /><br />// ist it the text edit field? <br />if (theSelectedWidget == kWFPInsertButtonWidgetID && theChange == kTrueStateMessage) <br />{ <br /><br />IControlView* listBox = panelControlData->FindWidget(kWFPListBoxWidgetID);<br /><br />InterfacePtr<IListControlData> listControlData(listBox, UseDefaultIID()); <br /><br />//Insert the string into listbox <br />PMString strText = dialogCtrl->GetTextControlData(kWFPTextEditBoxWidgetID); <br /><br />// obviously there can't be a translation for text entered by user <br />strText.SetTranslatable(kFalse);<br />listControlData->Add(strText,kWFPTextEditBoxWidgetID); <br />dialogCtrl->SetTextControlData(kWFPTextEditBoxWidgetID, ""); <br />break;      <br /><br />I am not able to Add items into list box.<br /><br />I tried based on Discussion <br />http://www.adobeforums.com/webx/.3bc43877<br /><br />but not able to locate  SDKListBoxHelper file .it is not available in SDK.<br /><br />Please ,<br />Tell me Where I am going wrong.<br /><br />Thanks,<br />Adil

    resource VSPDialogWidget (kSDKDefDialogResourceID + index_enUS)
         __FILE__,
         __LINE__,
         kVSPDialogWidgetID, // WidgetID
         kPMRsrcID_None, // RsrcID
         kBindNone, // Binding
         Frame(5,0,491,266) // Frame (l,t,r,b)
         kTrue,
         kTrue, // Visible, Enabled
         kVSPDialogTitleKey, // Dialog name
              DefaultButtonWidget
                   kOKButtonWidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(9,234,89,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefOKButtonApplicationKey,  // Button text
              CancelButtonWidget
                   kCancelButton_WidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(394,234,474,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefCancelButtonApplicationKey, // Button name
                   kTrue,  // Change to Reset on option-click.
              WLBCmpListBox   //Tree view
                   kWLBCmpListBoxWidgetID, kPMRsrcID_None,     // WidgetId, RsrcId
                   kBindAll,                                                       // Frame binding
                   Frame(299,49,475,170)           // Frame
                   kTrue, kTrue,                                             // Visible, Enabled
                   kTrue,                               // EraseBeforeDraw
                   kInterfacePaletteFill,           // InterfaceColor
                   kHideRootNode | kDrawEndLine,     // Options. Display root node
                   kFalse,          // Use H Scroll bar
                   kTrue,          // Use V scroll bar
                   20,               // fVScrollButtonIncrement
                   20,               // fVThumbScrollIncrement
                   0,               // fHScrollButtonIncrement
                   0,               // fHThumbScrollIncrement
                   2,               // Items selectable, 0 = No Selection, 1 = Single Selection, 2 = Multiple Selection
                   kFalse,          // Allow children from multiple parents to be selected
                   kTrue,          // Allow discontiguous selection
                        //The tree view is dynamically created.          
    // added to support the list elements in the list box
    resource LocaleIndex (kWLBCmpListElementRsrcID)
         kViewRsrcType,
              kWildFS, k_Wild, kWLBCmpListElementRsrcID + index_enUS
    resource WLBCmpNodeWidget (kWLBCmpListElementRsrcID + index_enUS)
         __FILE__, __LINE__,
         kWLBCmpListParentWidgetId, kPMRsrcID_None,     // WidgetId, RsrcId
         kBindLeft | kBindRight,               // Frame binding
         Frame(0, 0, 194, 20),               // Frame
         kTrue, kTrue,                         // Visible, Enabled
         "",                                        // Panel name
                   // Just a info-static text widget with about-box text view to get white bg.
              WLBCmpTextWidget
                   kWLBCmpTextWidgetID, kPMRsrcID_None,          // WidgetId, RsrcId
                   kBindLeft | kBindRight,                                        // Frame binding
                   Frame(45,1,194,18)                                             // Frame
                   kTrue, kTrue, kAlignLeft,kEllipsizeEnd                    // Visible, Enabled, Ellipsize style
                   "",                                                                 // Initial text
                   0,                                                                 // Associated widget for focus
                   kPaletteWindowSystemScriptFontId,                         // default font
                   kPaletteWindowSystemScriptHiliteFontId,                    // for highlight state.
    If you still got problems, post you email here - I'll send you the complete project/code then.
    -Marc

  • Error message when trying to add a printer  -50?

    I'm using an HP LaserJet 2100M, connected to my iMac G5 with a JetDirect 610 networking card through the ethernet port.
    Usually it works, but now when I've tried to reset the printing preferences (often necessary to get it to work) and go to choose a printer, I get an error message: "An error occurred while trying to add the selected printer.....error -50."
    I've tried restarting, and using the disk utility, but it says nothing needs to be repaired. Anybody have any suggestions? Do I have to reinstall, or will any updates help? I'm using 10.4.3
    thanks

    Use the process outlined here:
    HP Printers (and others) not on compatibility list and Airport Extreme Printing
    http://tech.ifelix.net/1300.html
    Using the Gimp-Print drivers for the HP PhotoSmart P1000 printer.
    The supplied HP C3180 drivers will not work when the printer is connected to an Airport base station.
    iFelix

  • HT1800 Trying to add a wireless printer to my MacBook Pro.  It was working properly until we had to buy a new modem.  I have gone through the steps associated with my printer and the other laptop in the house (Dell) working right. MacBook says printer dis

    I am trying to add a wireless printer to my MacBook Pro.  It was working properly until we had to get a new modem.  I have gone through the steps with the printer customer service rep, and it was working properly for one day.  When I booted up the next morning, the printer was no longer "connected".  It will work if I have the printer and computer connected, but I much prefer the wireless capability.  Suggestions? The printer is a Brother MFC7860DW.  The other laptop in the house (Dell) can print wirelessly so I don't think it's an issue with the modem or the printer.

    Hello,
    Mac OS X: About the Reset Printing System feature ...
    http://support.apple.com/kb/HT1341?viewlocale=en_US
    10.5/10.6/10.7 instructions...
    In System Preferences>Fax & Print, Right click or Control+click on the Printers list Sidebar, choose Reset Printing System.
    if you hold option and click the "-" tab it resets the printing system.
    http://www.macosxhints.com/article.php?story=20031215144430486
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Any devices that previously appeared in your Printer List and Fax List will need to be added again after resetting the printing system.
    Resetting the printing system in Mac OS X 10.5.x+++
        1.    To use the Reset Printing System feature in Mac OS X 10.5.x, follow these steps:
        2.    Choose System Preferences from the Apple menu.
        3.    Choose Print & Fax from the View menu.
        4.    Control-click on list of printers on the left side of the window, then choose "Reset printing system" from the contextual menu. If you don't see a list of printers, Control-click on the text "Click + to add a printer or fax" and select "Reset printing system..." 
   
  As an alternative, if you currently have one or more printers listed, you can Option-click the "-" (Remove printer) button.
    http://support.apple.com/kb/ht1341
    Reboot.

Maybe you are looking for

  • Loop tempo not changing

    Hello, I'm fairly new to Logic Pro but I have a question I need help with please. I dragged over a blue loop from the loop folder on to my 95bpm logic song however the loop I dragged over (which was a 65bpm aiff file when I added it to the loop libra

  • IPhoto 11 won't launch and crashes every time I try to rebuild the library. Urgh.

    iPhoto 11 won't launch- it's another case of an infinite skinny wheel. I've tried rebuilding the library numerous times, each time it takes about a day and each time it crashes near the end. This is just ridiculous. Any tips folks? APPLE if you can h

  • How can I edit a table during a presentation?

    I'd like to use Keynote for a "game show" style activity at my school.  I created a presentation in Keynote that contains one slide with a large table.  During the presentation I would like to edit the contents of some of the table cells without goin

  • InDesign CC 2014 crashes on startup

    I am encountering an odd error every time I try and start inDesign CC 2014. It starts loading and then an APPCRASH error occurs. The log suggests the problem lies with PlugPlugOwl.dll If I uninstall inDesign and remove the preferences and then reinst

  • I can't update my iTunes

    I´ve got an iTunes 10.4 for PC and i want to update it to iTunes 10.5 in order to get the iOS5 update. I have successfully downloaded the Setup package, But when it comes to the "updating" comes the trouble. When the update progress is almost finishe