2 queries: Indian Rupee font and direct typing of Indic fonts

I got a MacBook Pro 2 months ago.
How do i do these:
Use and install the Indian Rupee font?
Type indic fonts (sanskrit, tamil, kannada) directly (a la Baraha which, alas, is made only for the PC) into documents on my macbook pro? The Devanagari keyboard etc. that I installed produce gibberish when i try to type using them!
I need both for my work and I am handicapped without the ability to do these.
Help!

On OSX 10.9 Mavericks and Numbers 3.1 its simply `(Alt +` - ie Alt + the key to the left of 1). Then select that character and change the font to Rupee Foradian. Of course, the font Rupee Foradian must be installed. It can be found at:http://www.civilspedia.com/2010/10/get-rupee-symbol-from-your-keyboard-by.html#. UvJNnXl22PE or any other site.

Similar Messages

  • I installed Armenian fonts in my computer (Foreign font) and now firefox displays these fonts instead of English fonts

    I installed Armenian fonts in my computer (Foreign font) and now firefox displays these fonts instead of English fonts

    You can try to clear the font cache(s).
    * http://www.creativetechs.com/iq/garbled_fonts_troubleshooting_guide.html - CreativeTechs Tips: Garbled Fonts Troubleshooting Guide
    * http://www.thexlab.com/faqs/multipleappsquit.html - Font Book 2.0 Help: Checking for damaged fonts

  • Indian Rupees Symbol In samrtform

    How to print new Indian Rupees Symbol In samrtform , which recently comes from RBI,
    Moderator Message: Duplicate post. Did not search and either way you've got enough replies.
    Edited by: kishan P on Oct 12, 2010 7:17 AM

    Hello,
    Please check the SAP note 1503523 for your problem.
    A summary of the content is given below:
    -The Unicode Consortium plans to encode INDIAN RUPEE SIGN on code
    point   U+20B9. It is planned that this encoding decision is formally
    released  on October 11th with Unicode 6.0.
    - We recommend to postpone usage of the new character INDIAN RUPEE
      SIGN until the character and its code point have been formally
    released with Unicode standard 6.0.
    - When you decide to use INDIAN RUPEE SIGN before it is formally
      released, make sure, that your input methods and fonts use the code
    point U+20B9 for the INDIAN RUPEE SIGN and that the official  layout of
    the INDIAN RUPEE SIGN is used.
    - Using a different code point for the INDIAN RUPEE SIGN will cause
    future problems with data consistency, data communication and
    searching. Especially code point U+20A8 RUPEE SIGN may not be reused
    for the  INDIAN RUPEE SIGN since the technical behaviour of the to
    characters is different.
    - SAP currently does not provide input methods or fonts which cover
    the INDIAN RUPEE SIGN nor has any suggestions, which input   methods or
    fonts can be used.
    - INDIAN RUPEE SIGN cannot be used in Non-Unicode SAP systems.
    Regards,
    David

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

  • Fonts and Mac OS 10.6.5 Snow Leopard - any guide available?

    FONTS: I am trying to find an Apple pdf guide or information on how to work with Fonts, where they are stored etc. For example - in HD/Library/Fonts I have 185 items - of which 184 are fonts; and 1 is a Microsoft fonts folder, in which there are 131 items - all fonts - some which are duplicates (exact??) of the other 184 fonts in the fonts folder.
    Then there are NO fonts in /scschulte(user)/Library/Fonts but 4 files that seem to contain information about fonts.
    There are protected fonts in the system folder/Library/Protected fonts;
    There are disabled fonts folders and font collection folders...
    even fonts in iMovie!
    How to manage this, reduce the number without causing problems; how to know when to use / keep a Microsoft font vs another etc. etc....?!
    Thanks for any info here-- and is this similar (or exactly the same) in SL as in Leopard?? (I have the Missing Manual for Leopard, but not Snow Leopard).
    Best regards,
    Steve Schulte
    Sunday 28 November 2010

    Thanks very very much! I bought the eBook (pdf) and 2 others as well on other subjects within 2 minutes of getting your reply last week. Sorry to be late in replying - SUPER!!
    Have a great December!!
    Steve

  • Setting font and color TextItems

    This script is failing to set font, and how can I set font color?; I am new to PS Scripting:
         var originalUnit = preferences.rulerUnits
          preferences.rulerUnits = Units.INCHES
         var docRef = app.documents.add( 11, 17, 300, "Test", NewDocumentMode.CMYK)
        MyLayer = docRef.artLayers.add()
         MyLayer.kind = LayerKind.TEXT
         var myFont = app.fonts.getByName("ArialMT");
         // Set the contents of the text layer.
         var textItemRef = MyLayer.textItem
         textItemRef.font = myFont;
         textItemRef.size = UnitValue(36, 'pt');
         textItemRef.font = '_Aviano-Regular';
         textItemRef.style = "Italic";
         textItemRef.contents = "Sample Text";
         // Restore original ruler unit setting
          app.preferences.rulerUnits = originalUnit
    Thanks

    The font needs to be the postscript name, this will give you a list of them.
    var Dlog =
    "dialog{text:'Script Interface',bounds:[100,100,500,270],"+
    "FontName:DropDownList{bounds:[30,40,370,60]},"+
    "PostScriptName:DropDownList{bounds:[30,100,370,120]},"+
    "statictext0:StaticText{bounds:[40,10,200,30] , text:'Font Name'},"+
    "statictext1:StaticText{bounds:[40,70,141,87] , text:'Postscript Name'},"+
    "button0:Button{bounds:[140,130,240,150] , text:'Ok' }}";
    win = new Window(Dlog,"Use the Postscript Name in your script.");
    var item;
    var item2;
    for (var i=0,len=app.fonts.length;i<len;i++) {
      item = win.FontName.add ('item', "" + app.fonts[i].name);
      item2 = win.PostScriptName.add ('item', "" + app.fonts[i].postScriptName);   
    win.FontName.selection = win.FontName.items[0] ;
    win.PostScriptName.selection = win.PostScriptName.items[0] ;
    win.FontName.onChange = function() {
    win.PostScriptName.selection = win.PostScriptName.items[parseInt(this.selection)] ;
    $.writeln(win.PostScriptName.items[parseInt(this.selection)]);
    win.PostScriptName.onChange = function() {
    win.FontName.selection = win.FontName.items[parseInt(this.selection)] ;
    win.center();
    win.show();
    Here is your code with colour addded...
         var originalUnit = preferences.rulerUnits
          preferences.rulerUnits = Units.INCHES
          var FillColor = new SolidColor;
        FillColor.rgb.hexValue = 'ff0000';
         var docRef = app.documents.add( 11, 17, 300, "Test", NewDocumentMode.CMYK)
        MyLayer = docRef.artLayers.add()
         MyLayer.kind = LayerKind.TEXT
         var myFont = "ArialMT";
         // Set the contents of the text layer.
         var textItemRef = MyLayer.textItem
         textItemRef.font = myFont;
         textItemRef.size = UnitValue(36, 'pt');
         textItemRef.font = myFont;
         //textItemRef.style = "Italic";
         textItemRef.fauxItalic = true;
         textItemRef.contents = "Sample Text";
         textItemRef.color = FillColor;
         // Restore original ruler unit setting
          app.preferences.rulerUnits = originalUnit

  • Upgraded to 10.4.6 now books chang fonts and sizes when imposed

    Hi,
    I upgraded the OS to 10.4.6 aday before yesterday, edited one of my books today, and tried to impose it for printing.
    The InDesign 4.0.2 book imposed okay on InBooklet but came out with some pages in a different font and some of the different font areas highlighted in pink.
    Times 12pt was changed to Garamond 11pt after about20 pages of a 75 page manual.
    This is a big deal for me because I have quite a few years worth of books and what was once a thoughtlessly easy thing to do has turned into a new and unusual problem every week or so. Sometimes it might be Adobe (as in agonizingly slow printing).
    Garrett

    Have you tried downloading the latest MacOSX drivers from the Brother web site? They might have updated the driver for that printer since you got it.
    lenn

  • Asian fonts display in font book but show as Western fonts in apps!

    Adobe apps still display Asian fonts as Western characters, even though I've changed language settings via the "international" control panel of System Preferences. Perhaps I have not done this correctly? I've restarted the machine after changes to Systems language prefs. Asian and other calligraphic fonts are all installed and display fine in Font Book. Is there a fix?

    As my aim is to access character sets without the
    need to change the language settings on my machine
    That's exactly what Character Palette does.
    think the ideal solution is to get a copy of
    Fontographer and copy all the decorative fonts and
    save them as standard fonts.
    A total waste of time in my view.
    True Futhark has several
    characters that stand for phonetics not compatible
    with plain roman alpha/qwerty keyboard use. I
    understand the same is true of other fonts-there are
    bound to be discrepancies.
    Most of the characters in the world are not compatible with qwerty keyboard use. That's why in general people don't use that method to produce them, or try to jigger fonts so they might be able to.
    Perhaps this is why so
    many characters come up as "?" even when inserted
    via the Finder's character palette?
    This may be because your app is set to Latin-1 or some other limited encoding. It should be set to UTF-8. Try Character Palette with TextEdit and you will not get any ?'s.
    Control+T does nothing in Adobe apps, as far as I can
    see. Apple+T brings up the Type palette but there is
    no "insert special character" option there.
    I got that wrong. The combo for Apple apps is Option + Apple + T. I don't know if that works in Adobe (don't use them myself).
    I did notice a wonderful
    Tibetan font that must be on my machine somewhere,
    though it does not show up in Font Book under "All
    Fonts"!
    These are part of the ST series of Chinese fonts. If you go to the Tibetan range in Character Palette you can see this and you can also input them in TextEdit or a UTF-8 doc. Or you can examine the contents of an ST font by putting Character Palette in glyph mode.
    I guess ideally, for graphics use, one should get the
    characters into a standard font file, as I suggest
    above, and then type away merrily qwerty-style.
    Some Asian scripts have thousands of characters. Using a qwerty keyboard to try to access a few of them from a recoded font is not something that anyone does as far as I know. They use a specialized Input Method or the Character Palette or a similar utility. Also unless you are truly transforming your output into graphics/photos, your input would be seen as qwerty on other machines.
    suppose these decorative fonts are available on the
    web somewhere, where those who sell them have gone to
    the trouble of transcribing the characters in to an
    'ordinary' font for you?
    Never seen such things myself.
    It seems a shame that Macs OSX can't grant you access
    to all these decorative fonts (indeed, to all
    installed fonts) in a more straight forward manner.
    The Character Palette is the most straightforward manner possible for accessing such scripts, if you do not want to switch keyboard layouts. All computer system use a similar mechanism. It even has a Favorites section where you can store characters you want to use frequently so you can avoiding looking them up each time. If you have some specific problems using it, I'd be glad to help, here or by email (click on my name for the address).
    Am I correct in these assumptions?
    No, I think all of them are wrong myself.

  • My iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

    my iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

    my iphone apps shows price in indian rupees but not in dollars. My selected region and address is USA? How can i change it to dollar again

  • Apple Mail font  and colour changes while typing!

    I'm having an issue whereby the font and colour changes back to the default while I'm typing an email!
    I have several signatures.  When I select a signature and start typing, at apparently random moments, the font reverts to the default!
    This will happen when I'm typing a line and, when it changes, if I cmd-z to undo my typing character by character - at some random point it suddenly reverts back to the signature font and colour.
    Has anyone else experienced this, and is there a cause and/or solution?
    Thanks,
    Geoff

    I'm having an issue whereby the font and colour changes back to the default while I'm typing an email!
    I have several signatures.  When I select a signature and start typing, at apparently random moments, the font reverts to the default!
    This will happen when I'm typing a line and, when it changes, if I cmd-z to undo my typing character by character - at some random point it suddenly reverts back to the signature font and colour.
    Has anyone else experienced this, and is there a cause and/or solution?
    Thanks,
    Geoff

  • My iphone font for typing and receiving emails is stuck in large font and I can not reset it to small

    My font size for typing and receiving emails is stuck in large and I can not reset it using, settings, mail, font size buttons.

    Jim, where were you when i asked the same question a couple of months ago?! After updating software two months ago my email font was stuck in large and couldn't get it to change. posted issue on forum, called apple support, went to genius bar, went to 1 to 1 and NO ONE could figure it out. Your solution is right on. You the man Jim!

  • WHY do we get a %*# update every 2 weeks while the 1 really bad bug (fonts and sizes randomly changing when typing) persists????

    Is there any way to STOP TB from sending updates every couple of weeks (and BTW this has slowed down/crashed TB increasingly in the past couple of months) UNTIL they fix this really irritating bug of randomly changing fonts and sizes when writing a mail? Outlook doesn't do this, Apple mail doesn't do this, so TB stop spamming and start addressing real problems for a change!!!!

    It would be helpful perhaps to focus on "the real issue" of font size and compose, rather to digress into how vendors choose to deliver the product.
    font issues arose in the past year. I forget exactly when. It is quite a bad problem. My recollection is it was a serializer change not done by Thunderbird developers, and that part of it was fixed in version 24. But I could be wrong.
    Would you be willing to try version 31?
    https://bugzilla.mozilla.org/buglist.cgi?list_id=10733810&short_desc=font%20size&chfieldto=Now&query_format=advanced&chfield=[Bug%20creation]&chfieldfrom=2013-04-01&short_desc_type=allwordssubstr&component=Composition&component=Message%20Compose%20Window&product=MailNews%20Core&product=Thunderbird

  • I have a font and typing question

    How do you type the copyright symbol using Photoshop Elements 6?  I just can't figure this one out.

    There are 3 different ways.
    Method 1:
    1. Use the Character map applet if on Windows. Use it's equivalent if on mac. See this thread for how to use it...also included are a couple of links about the mac counterpart.
    http://forums.adobe.com/thread/449338?tstart=0
    Method 2:
    2.. There's a copyright symbol in the custom shape presets. (Hold in the shift key as you drag.)
    Method 3:
    You can simplify the custom shape or a copyright symbol font  and define it as a brush preset.  This would allow you to brush on the copyright symbol. Keep in mind if you go this route it would be raster (pixel based) and will degrade if it is resized...this includes resizing the brush tip.  (The symbol can be resized without quality loss using method 1 and method 2 as long as you don't simplify them.)

  • Indian Rupee Symbol in Smartform

    Hi All
    I have got a requirement in which i need to use the recently announced Indian Rupee Symbol in my Smartform. I need to use it in the table being displayed in the Smartform, in front of the Amount in each row, i need to dispaly the symbol.
    I have no idea of how to do it.
    Kindly help me out
    Thanks in Advance...

    Hi
    I Am Just New in the sap abap .
    i also have this type of requirnment for my smartform.
    i got the soluction
    here is the steps of rupee symbol in smartform.
    Step:- 1 Download Rupee Font From [http://blog.foradian.com/font-with-indian-rupee-symbol-download-and-us|http://blog.foradian.com/font-with-indian-rupee-symbol-download-and-us]
    Step:- 2 Open T-CODE SE73
    Step:- 3 Install True Type Font And Give Name To Font
    After sussfully instalation you can use that forn in your smartstyle and u can use that symbole
    NOTE:- To Insert Rupee symbole You Have To Press ` Button Near To 1 Key
    Soem Times it will not display in editor or in print Priview  but it will print in the hardcopy.
    Later On I Will Put Step By Step Step With Screenshot .
    If Anyone Have Emergency Then Replay Me i Will DO it
    Edited by: SAPABAP.IN on Nov 1, 2010 11:43 AM

  • Indian Rupee sign

    Hi Experts,
    I have installed New Indian Rupee Symbol in Control Panel/Font.
    Also selected in SAP/Admin/System /initialization/General Settings.
    But how to set by default currency new symbol instead of INR.
    plz help.
    Regards,
    Ravi
    Edited by: RAVI_JHA_SAP on Apr 3, 2011 1:42 PM

    Hi Ravi.....
    Once you started your transactions under INR currency you can not set other currency as your local.
    You can do it by other way.
    Put all the business partners in All Currencies and set the ex. rate for Indian Rupee 1 equal to INR currency...
    and when you select any of the BP into marketing form just select BP currency and select Rupee Currency.
    This way your transction goes under Rupee Symbol......
    Regards,
    Rahul

Maybe you are looking for