Using boxes TextInput to change small caps lettering with no....

Using two TextInput (fName and lName) boxes that write at the same time on a text box, (FullName) BUT change the data here automatically to 'small Caps' characters WITHOUT spaces.

I find all kinds of things, but nothing close enough. Any help would be appreciated!

Thanks in advance aktell

How about this:


http://www.Adobe.com/2006/mxml"layout ="absolute">
   
        protected function name_changeHandler(event:Event):void {}
var firstName:String = fName.text.toLowerCase ();
var lastName:String = lName.text.toLowerCase ();
fullName.text = firstName + lastName;
}
]]>
   

   
   
   
   
   

I think that's what you were asking.

Chris

Tags: Flex

Similar Questions

  • All my ICON Office descriptions are changed to white lettering with blue background. How can I change this back?

    All my ICON Office descriptions are changed to white lettering with blue background. Don't know how it happened. I would like to have black letters with NO background (background right). How can I make changes?

    Try the following:
    Right click on "My Computer"-> properties-> (Advanced tab)->
    Then click on 'Settings' in the section 'Performance '.
    Then click on "Custom" and make sure that in the window below (you may need to scroll) that there is a tick next to "shadows fall to use the desktop icon labels.

    HTH,
    JW

  • I have Outlook Express 6. When I want to fix anything, the attachment box appears in a size... with only 6-8 files/folders showing both. How to adjust the size of the box?

    I have Outlook Express 6. When I want to fix anything, the attachment box appears in a small... with only 6-8 files/folders showing both.  How to adjust the size of the box?  There is no minimize mazimize click or angle to slide.  It used to be adjustable, but no more.  Help?

    Like when you open a new message window and either click the button attach or insert | Attachment? I don't ever remember being resizable or a very large box. Change the display of list will give you a bit more, but that's all.

  • Script to replace the small caps that are typed in capital letters with capital letters (A = > a, B = > b, etc...)

    I am looking for a way to replace the small caps that are typed in capital letters by their normal equivalents.

    I have a text that contains many names that should all be set in small capitals.

    In fact, they are, but because the letters are used for the first letters that they don't fit.

    In short: I would like to be able to look for A, B, c... (in small capitals) and replace them with (a, b, c...) in small capitals only once.

    (compare two tables?-> is this possible in indesign scripting)

    Hi Cramik,

    Try this.

    var doc = app.activeDocument,
        _char = doc.stories.everyItem().characters.everyItem().getElements();
    
    for(var i=0;i<_char.length;i++)
    {
            if(_char[i].capitalization == Capitalization.SMALL_CAPS)
            {
                    _char[i].capitalization = Capitalization.CAP_TO_SMALL_CAP;
                }
        }
    

    Kind regards

    Cognet

  • In Acrobat, is it possible to have a form field to use small caps in place of lowercase text?

    I found online java script that forces a field to be all caps (use in the format tab > custom format script). But I was not able to find something to edit the text in lower case in small capitals. Anyone know how to do this (or if it can only be done in Acrobat)?

    There is no such setting in Acrobat. You can use a 'small caps', but

    That's all.

  • Why is InDesign uses fake small caps instead of the real ones included in the police?

    I tried to use the small caps Hoefler Text, I did by pressing the small caps button. Rather than use of true small capitals (which should be in proportion to the capitals), InDesign creates fake small caps by reducing the capitals (which is horribly ugly). I know that Hoefler Text includes real small caps because I can see them in the glyphs palette. How can I get InDesign to use true small capitals instead of creating the fake ones?

    Just checked the font file. "Hoefler Text" comes courtesy of Mac OS X, preinstalled with your system. It is an OpenType font with outline TrueType (actually a collection of four different styles in a single file), and typographic functions, including small caps charrington42 noticed in the glyphs Panel, are guided not by the OpenType features but by AAT Apple features.

    InDesign cannot use the features AAT; Only software specific Apple can. TextEdit, for example, real small capitals peut access:

    You may submit "Please support AAT" Adobe using the feature request form - I don't see anything against it. Or maybe just the fact that it is only applicable to a small amount of fonts and Mac OS X only.

  • How can I set small caps in the character style

    I use the opportunity that you people are online:

    I'm trying to define small caps in the character style and it does not work,

    It works in the paragraph style, why is this? and is it possible around it?

    I can see the option in the character Styles: isn't it of menu drop-down available in your dialog box?

  • Find without small caps italic and apply cstyle

    Hi all

    I have small capitals (nested) line with italic text (see the screenshot), I tried to apply the italic "small caps" style of characters successfully. After that I will apply the cstyle "small caps" to the text of the CAP as small, but my script works does not, can you if you please correct it.

    itals var = ["italic", "Light Italic", "LightItalic', 'Italic book', 'Cursive', 'Light Condensed Italic',"Book Condensed Italic","Ultra Condensed Italic","Ultra Italic","Condensed Italic", 'ThinItalic', 'BookItalic', 'LightItalic', 'BookItalic', 'UltraItalic']

    SmallCaps = var ["small capitals and old figures", "55Roman small capitals and old figures", "smallCaps"];

    Fix_All_SmallCaps_Italic()

    function Fix_All_SmallCaps_Italic()

    {

    Try

    {

    var myCStyle7 = app.activeDocument.characterStyles.item("15_Small_Caps_Italic").name;

    }

    catch (MyError)

    {

    var myCStyle7 = app.activeDocument.characterStyles.add ({name: "15 small caps italic", capitalization: Capitalization.SMALL_CAPS, fontStyle: "Italic" "})

    }

    for (i = 0; i < itals.length; i ++)

    {

    app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;

    app.findTextPreferences.fontStyle = itals [i];

    app.findTextPreferences.capitalization = Capitalization.SMALL_CAPS;

    app.changeTextPreferences.appliedCharacterStyle = "15 small caps italic";

    app.activeDocument.changeText ();

    }

    }

    ~ exit (0);

    Fix_All_SmallCaps();

    function Fix_All_SmallCaps()

    {

    Try

    {

    var myCStyle6 = app.activeDocument.characterStyles.item("15_Small_Caps").name;

    }

    catch (MyError)

    {

    var myCStyle6 = app.activeDocument.characterStyles.add ({name: "15 small capitals", capitalization: Capitalization.SMALL_CAPS})

    }

    for (sc = 0; sc < smallCaps.length; sc ++)

    {

    app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;

    app.findTextPreferences.fontStyle = smallCaps [sc];

    app.changeTextPreferences.appliedCharacterStyle = "15 small capitals;

    app.activeDocument.changeText ();

    }

    find the attribute and apply the character style

    myDoc var = app.activeDocument;

    mcstyle var = app.activeDocument.characterStyles.item("15_Small_Caps_Italic").name;

    app.findTextPreferences = app.changeTextPreferences = null;

    app.findTextPreferences.capitalization = Capitalization.SMALL_CAPS;

    app.changeTextPreferences.appliedCharacterStyle = "15 small capitals;

    var myFind = myDoc.findText ();

    for (var j = 0; j < myFind.length; j ++) {}

    If (. appliedCharacterStyle.name myFind [j] == mcstyle) {}

    Alert (myFind [j]. Happy)

    continue;

    }

    ElseIf (. appliedCharacterStyle.name myFind [j]! = mcstyle) {}

    app.activeDocument.changeText () ;}

    }

    }

    Screen shot 2015-03-05 at 5.34.11 PM.png

    Hello

    1. If your charStyles only has names?

    2. maybe disable this line:

    app.findTextPreferences.fontStyle = itals [i]

    so myFind table will match smallCaps all.

    Now to browse and use the switch... case loop

    I mean:

    //...
    switch (myFind[j].fontStyle) {
        case "Italic":
        case "Light Italic":
        case "LightItalic":
        case "Book Italic":
        case "Coursive":
              myFind[j].appliedCharacterStyle = myCStyle7;
              break;
        default:
              myFind[j].appliedCharacterStyle = myCStyle6;
              break;
        }
    //...
    

    Jarek

    (Changed; switch (myFind [j] .fontStyle))

  • Small caps ePub issue

    I'm working on placing the text in the ePub format and continue to operate in the same question.

    I want the title of the chapter to use small caps.  In InDesign, I have it look exactly the way I wish that it - '' Chapter One '' appearing with small capitals.

    I highlighted the expression '' Chapter One '' and applied a paragraph style that has the following characteristics:

    [no paragraph style] next [style]-Times New Roman-size: 24pt + needlepoint

    When I export to ePub to display the document in Adobe Digital Editions these changes are not present.  I have tried about everything the application of styles of characters and nested styles, but nothing works.  I want these appearances of small cap to work in versions ePub as well.

    Any thoughts on why it doesn't work?

    Any help is very appreciated.  Scouring the internet for some time didn't turn upward all the advice.

    Thanks in advance.

    Easy workaround solution. Map of H1 style and define H1 with small capitals in the CSS.

    But... I recalled that ADE is old enough and desperately needing an update. I would check the EPUB using something else. Even a web browser can be better.

    Bob

  • Running header mixed Small Caps

    I don't know there is a simple answer to what escapes me. In a running header where the small capitals are used, I have a question mark at the end of the header which itself should not be form of small cap, but full size. How can I change/expand just the question mark?

    Let me see if I can help, without stepping on the toes of Eugene. I tried, and it seems to work perfectly.

    You will need the character styles two, one that applies small caps (and does nothing else) and the one who assigns specifically Normal according to the case (and once again does nothing else), which will be used for style variables in the header. Give these useful names, as apply small caps and Normal cases, for example.  If you don't want the small capitals in the text itself, you will need a character style, what does nothing - you just need a name to use in the nested styles. You can call this character Style 1 or model one, or anything else that will distinguish styles to actually do something. You can do this simply by selecting the [none] character style and click on the new style button. The only thing to change is the name and only if you want to change it. I want to emphasize that this style is nothing more than a name, there should be no field actually apply or change if you select text and apply formatting style.

    Set the paragraph style for the text header or running but you love the other features of the police, but do not apply small caps. Move to the area of nested styles and add two styles nested in the definition. If you don't want the small capitals, apply 1 up to 1 character Style? and normal use through 1 case?. You won't see any change in the text at all, because the nested styles are not to intervene. If you want the small capitals, use the style applies Small Caps instead of character Style 1.

    Now set two new variables header (character Style) running using character Style 1 and style of Normal case (or, if you used the style of small caps in the nested style, use it in the definition instead of character Style 1). Insert these two variables in the header, and apply the style to small caps to the first variable and the style of Normal case in the second.

  • How to create small caps with MS Word 2016 for Mac?

    I've scoured the forums Microsoft and Microsoft Help to get instructions on how I can make the small caps in Word for Mac 2016, but nothing helped. I would not have same subscriber to Microsoft Office 365 was not for the fact that I needed it for a freelance assignment.

    Any suggestions?

    Select the text. Go to the Format menu and click on fonts. In the police top dialog box where it says advanced font, click Font. In the effects section put a checkmark in front of the small caps.

  • Satellite P70-A01D: change the drive letters after the 2nd SSD upgrade

    I think it's a generic UEFI / Win 8.1 question (not according to model).

    However, FWIW, I have a Satellite P70-A01D (bought locally here in Australia).

    It is a victory of 16 GB 17.3 inch Gen4 i7 4700MQ Intel HM86 8.0 64-bit RAM.
    http://www.MyToshiba.com.au/products/computers/satellite/P70/psplpa-01d002/specifications

    I updated the OS to Win 8.1

    The P70 is supplied with a drive Bay HARD vacuum #2 - I bought a 250 GB Samsung 840 EVO SSD that I want to use as the main system disk / boot Win 8.1.

    I installed this SSD in bays #2 and from there I had no problem using the wizard of Samsun cloning software provided with the SSD (VCC 4.0) to clone my 1 TB on the SSD system.

    There are a lot of instructions from Samsun and around the web on how to clone and "substitute" of a HDD with a SSD - however there are much less when it comes to 'Add' the SSD - in the #2 Bay - while always keeping the original HDD fully functional as an additional drive.

    After execution of the cloning software, I tried just go into the settings of the UEFI on reboot and change the order of the boot drive placing the SSDS over HARD drive.

    It worked but there are obviously questions still as I had not renamed readers SSD worked as system but he was editing as D: and HARD drive was still C: and most of the system/application paths were always scheduled to access C:!

    It led to the crash and restart cycles of the Bureau (? & or explorer.exe?) and two consistent error messages:
    -"SkyDrive engine Sync host has stopped working".
    -"Host for the synchronization setting process has stopped working".

    I saw in the Control Panel-Administrative Tools-Computer Management-Online Storage-online-online right click on each drive disk management online online that I can access > however
    (a) I'm not sure if the solution I need is this simple;
    (b) nervous about change of letter on a disk while running the system; and
    (C) uncertain steps in order of evolution [IE. C: (non - sys) becomes M; D: (sys) becomes C:...

    At the moment via UEFI I'm back to working with the system on the HARD disk rather than on the SSD seems stable and without compromise of my screwing around!

    Apologies for the long post by train to make sure to include all relevant information. I think that my final goal is double win bootable 8.1 / Ubuntu 12.04 of the SSDS probably with Ubuntu on a 50 GB partition leaving 200 GB (enough?). I want to keep a slab of SSD space available for photo and video editing: +/-100 GB!

    I wondered simply assign new letters to readers, however the notes at the bottom of http://windows.microsoft.com/en-au/windows7/change-add-or-remove-a-drive-letter state:

    You cannot change a drive letter if the drive is a system partition or a boot partition.

    Suggestions please?

    Hello

    I think you could try to change the letter to readers as suggested in the Microsoft article.
    Where this is not possible, try to use 3rd party such as GParted software.
    http://gparted.org/LiveUSB.php

    You could try changing the drive letters might start to the top of the unit using the live USB version.
    But it might be possible that your system would not initialize correctly after this change.

    So you should not forget to mark the partition as bootable.

    Your comments would be appreciated

  • When I try to open a bookmark I get a box that says: "that should make firefox with this file? When I try to change the 'open with Internet Explorer' I can't find firefox? This bookmark has worked well in the last week.

    When I open a bookmark a box appears that says "what should firefox with this file?" open with Internet Explorer? When I browse I don't find firefox to change. Last week this bookmark worked perfectly.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of your modules is causing your problem (switch to the DEFAULT theme: Tools > Modules > themes).
    See the extensions, themes and problems of hardware acceleration to resolve common troubleshooting Firefox problems and troubleshooting questions with plugins like Flash or Java to solve common Firefox problems

    If this does not work in safe mode and then disable all your extensions and then try to find out who is causing by allowing both the problem reappears.
    You can use 'Disable all add-ons' on the start safe mode window.
    You will need to close and restart Firefox after each change through "file > exit" (on Mac: "Firefox > Quit")

  • I use a Belgian keyboard and the CAPS of SHIFT or alt + tilde do not work for me

    Hi I have a similar problem: I use a Belgian keyboard and the CAPS of SHIFT or alt + tilde do not work for me. I can configure default Hiragana in the locale, but it is not honored - lights in romaji and I have to click the icon pon :-(

    I feel bad: I bought the expensive 'Ultimate' version of Windows to use it for the Japanese language, then I discovered that Microsoft IME is unusable. I can't click an icon all five words, I need the default to work as configured and shortcuts too (and I'm not the only one, a lot of people write Japanese under Windows I guess)

    Research in other forums, this seems to be a known gene since Windows XPand still not been resolved in Windows 7? I hope it's in Windows 8.

    I'm ready to upgrade to 8 or modify registry settings, install additional DLLs or something else, but I feel it too bad if I install a linux to be able to do what I bought Ultimate for :-(((

    Split from here:
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/changing-Microsoft-IME-language-input-default-it/a63cf759-d665-48b1-93fb-90d4a2d6cb72?page=2#footer

    Hello

    I suggest you to send your comments to the following Web site.

    Give us your comments for Windows 7
  • When we try to write in a pdf file. document, it changes the Danish letters Æ Ø Å to different signs. To do this, this om pc and Mac. Anyone know of a solution? Thank you

    When we try to write in a pdf file. document, it changes the Danish letters Æ Ø Å to different signs. To do this, this om pc and Mac. Anyone know of a solution? Thank you

    Hi, I found the problem, it seems that the pdf file uses a helvetica font, and when we write in a part of the PDF with the Danish letters A, Æ, O, it changes signs. I changed the Roman fonts in adobe acrobat pro, and then there's no problem. But he seem´s that the standard in pdf files is helvetica, and there is not time to change the files, because we get only the files on the day of the exams at school. It happens in all versions of adobe 11 and DC, it is also a problem on Windows 7, 8.1 and windows 10 more Macbook.

    Kind regards

    Med Hotel hilsen

    Price Patrick Simon

    TI-Vejleder

    Langeskov Skole

    Ronningevej 38

    Langeskov 5550

    Denmark

    FRA: meenakshin83966505 [email protected]<>[email protected]>

    SVAR til: "[email protected]<>[email protected]> ' [email protected]<>[email protected]>" "

    Dato: måndag den 18. January 2016 kl. 14.39

    Til: Simon Price [email protected]<>[email protected]>

    Emne: You have been mentioned by meenakshin83966505 in Re: when we try to write in a pdf file. document, it changes the Danish letters Æ Ø Å to different signs. To do this, this om pc and Mac. Anyone know of a solution? Thanks to the Adobe community

    You talked

    by meenakshin83966505https://forums.adobe.com/people/meenakshin83966505?et=notification.mention> in Re: when we try to write in a pdf file. document, it changes the Danish letters Æ Ø Å to different signs. To do this, this om pc and Mac. Anyone know of a solution? Thanks to Adobe Community - see the reference from meenakshin83966505 to youhttps://forums.adobe.com/message/8402116?et=notification.mention#8402116>

Maybe you are looking for