Sizing text with key commands

I recall seeing a co-worker use a sequence of key commands to resize text, but I can't recall what they were. Rather than highlighting text and going through a series of adjustments at regular increments until the text looked about right, the writer used this combination of keys to resize text in one step. I don't think she used free transform. Whatever she did, it was a great timesaver. Anyone have info on how to do this?

On Windows:
1. (You're typing away, then when you want to resize some text) do:
2. Select the text you want to resize: Ctrl+A: all text in the current story; Esc: current text frame only; Shift+Ctrl+arrows: some characters. words, paragraphs. When you're through selecting,
3. Once or twice Ctrl+T (you should see the Character panel with the typeface name selected), now two taps on the Tab key. You're now in the point-size field, to resize,
4. Up/down arrows to set a different type size (Shift+up/down arrow to resize in bigger increments).
5. Press Enter to return the cursor to the text.
When you've done this once, you can go to the font-size field in one go by pressing Ctrl+` (Ctrl+` returns you to whichever entry field you were last).
Peter

Similar Messages

  • Acrobat won't open pdfs on clicking file icon and won't quit with key command

    Acrobat won't open pdfs on clicking the file icon and won't quit with key command.

    IF you command I on any .pdf file, what does open with show?
    Restore the Acrobat preferences files (Mac OS)
    Restore the Acrobat preferences files to eliminate problems caused by a damaged preferences file.
    Note: Re-creating the Acrobat preferences files restores settings to their defaults. 
    Quit Acrobat.
    Drag the following files from the Users/[Username]/Library/Preferences folder to the Desktop:
    Acrobat WebCapture Cookies
    com.adobe.Acrobat.Pro.plist or com.adobe.Acrobat.Pro_x86_9.0.plist
    Acrobat Distiller Prefs and com.adobe.Acrobat.Pro.plist (if you are troubleshooting an issue with Distiller)
    The Acrobat folder, which contains preferences for forms (MRUFormsList), collaboration (OfflineDocs), and color settings (AcrobatColor Settings.csf)
    Restart Acrobat

  • Close one tab at a time with key commands

    Hi all,
    I'm a big key command guy. I think I've figured out most things so I rarely have to go for the trackball and leave the keyboard.
    But recently (I think since an upgrade to Safari, but I can't be 100% sure), my previous command-W that used to close the frontmost tab now closes the entire window...bummed! How do I get my key command back?
    Thanks all.

    Start with resetting all shortcuts to their defaults, restarting, and see if that fixes the problem. As I said, it works here w/o any changes made, so I suspect you or some other app mucked things up.

  • Cut and paste with key command?

    hi, I've looked at the remote desktop help, and it does seem possible to cut and paste using the "Get the remote clipboard contents" button.... but is there a way to do this with a key command? Shouldn't this be possible with just the keyboard?
    thanks

    No. Just use Pages '09 if you still have it.
    Pages 5 is just missing a lot of features.
    Peter

  • ITunes 10.4.1 Problem with Key Command Go to Current Song - Doesn't always work

    Since updating to iTunes 10.4.1, I've noticed that the key command, command + L doesn't always work to display the current song.

    I have this problem in iTunes 10.7 (21). The "Go to Current Song" option exists in the Controls menu, but even when audio is playing it is disabled.

  • Scaling with key commands not working with objects or text frames

    Suddenly, I can no longer hold Shift+Option+Command to proportionally scale anything in InDesign CC 2014. Any suggestions?

    Which file do I want to trash or rename?

  • Using attachments in work-flow and creating custom text with key values

    Hi,
    I have 2 simple requirements.
    1. how to attach a tcode or trigger method of business object for work-flow item. The user should be able to navigate to transaction to see data before approval or rejection.
    2. I have created custom task for long text that will be displayed in the SAP inbox. How do I provide key values in this long text.  I was able to do in the subject line using Substitution parameters(&Name1& etc..)
    Regards
    Kasi

    I did the same thing. see details.
    Created Workitem and attached a task "TS92500097". in the task, I mentioned Business Object and method to be called. I have set the binding also for this business object. the method I am calling is nothing but just "display" which is using call transaction.  2 problems here.
    1. How do I show  this "BusinessObject.Display" as an attachment or link in the mail.
    2. how do I assign key values during exection of this attachment or link.
    Regards
    Kasi
    2.

  • STANDARD TEXT with BITMAP command in SMARTFORM

    Hello,
    I'd like to customize my smartform with picture defined by standard text.
    I defined standard text in SO10:
    /:   BITMAP 'xxx' OBJECT GRAPHICS ID BMAP TYPE BMON DPI xxx 
    .. and this standard text included to my smartform.
    But no picture appears.
    Best regards,
    Josef Motl

    Hi Josef!
    If you want to use the graphics from SO10 you have to change the syntax. Instead of "bitmap" you should use "include", the object should be text and you need the textid. If you use the bitmap-call you should upload the image with SE78. If you're transporting your syntax from one system to the other you have to include the image in your transport order or you have to upload it in each system.
    If you want good quality you should use SE78 and the BITMAP-call instead of SO10.
    Best regards,
    Ingo

  • Trigger an event with key command?

    In InDesign CS3_Scripting Guide quote "The following table lists events to which eventListeners can respond. These events can be triggered by any available means, including menu selections, keyboard shortcuts, or script actions." I currently have a script that activates a UI when the user presses save. I am interested in changing that action to happen when a user presses a key.
    I do not see any documentation on this. The UI popping up on save all the time is kind of annoying. I was thinking maybe option or command H or anything really.
    listen();
    function listen(){
    var mySampleScriptMenu = app.menuActions.item("$ID/kSave");
    var myEventListener = mySampleScriptMenu.eventListeners.add("beforeInvoke", myFunction, false);
    I am using CS5 mac.

    I found this in the Script UI 1-9 PDF.
    Listening to the keyboard
    To listen to the keyboard, define an event listener using the keyboard event
    keydown. Here is an example that prints some properties of the keyboard event
    (this doesn't work properly when you target the ESTK):
    var w = new Window ("dialog");
    var edit = w.add ("edittext");
    edit.active = true;
    edit.characters = 30;
    w.addEventListener ("keydown", function (kd) {pressed (kd)});
    function pressed (k)
    $.writeln (k.keyName);
    $.writeln (k.keyIdentifier);
    $.writeln (k.shiftKey ? "Shift pressed" : "Shift not pressed");
    $.writeln (k.altKey ? "Alt pressed" : "Alt not pressed");
    $.writeln (k.ctrlKey ? "Ctrl pressed" : "Ctrl not pressed");
    w.show ();
    I think this is something I might try. I am currently using key board shortcuts in Indesign now but if I write this into the code I will not have to set up on each machine and each version of indd. I am currently using option T to get my script going.
    Can you tell me what the d stands for in this function?

  • Advice needed on Key Commands presets in Logic

    Hi, just upgraded to Snow Leopard and Logic 9 and very happy. Now I'm planning to work more with key commands. While watching many Logic 9 tutorial video's on youtube etc. I find different Logic users seem to work with different (default) key commands. For example: on http://www.youtube.com/user/groove3Inc#p/search/2/BSE3VdlkZJM he's using Ctrl * for 'Capture as recording', while for me the default command is Ctrl Alt Cmd R
    Now my question is:
    1. What is the default / standard key command preset in Logic
    2. Which Key Command preset in Logic would be best to use (also considering that on a different location I sometimes work with Protools)
    3. Which Key Command preset in Logic would be best to use considering the many tutorials I find on the web
    Or any other advice / tips on key commands...
    Thanks!

    You can easily create your own set of key commands, according to your own needs. I mean, you still can learn some built-in key commands, but you can also change them as you please. Probably, in your case it might make sense to have the same set of key commands for both Logic and Pro Tools, to make life easier.

  • LPX Key Commands acting weird???

    I have 2 problems with Key Commands window.
    1.-I have opened the KeyCommands window and it opens up at the top of my screen.
    The top of the Key Commands window is under the task bar and I can not pull it down.
    2.- My LPX Key Commands started to act weird.
    Space bar does not work for play/pause.
    It creates a small MIDI region instead.
    X does not show the mixer and any other thing does not really work.
    It worked at the beginning when I firs installed it.
    Could this be a bug?
    If I choose Logic 9 set the everything works like the LP9 and it is fine.
    But, I wanted to learn the new set and I cannot use it.
    Any ideas?

    hi
    Do you have installed another language for typing?
    If so check that your keyboard is in US typing
    Logic respond strange when another language is active
    hope it helps
    B

  • The problem I have since I upgraded to Mavericks version 10.9.1 The problem appears only with Mail not with other programs, not even with my browser. When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command   to e

    the problem I have since I upgraded to Mavericks version 10.9.1
    The problem appears only with Mail not with other programs, not even with my browser.
    When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command + to enlarge the text, although I can reduce it with Command -.
    As I have a problem with my eyes, This is a serious matter for me.
    When I write an e-mail, if I select text and press Command +, it just displaces the text to the right.
    Now, my husband has a USB keyboard. If he connects it to my computer, his regular Command + does not work either, but  he uses the extended keyboard, then it works. Unfortunately, he needs it for a musical application which does not work with a wireless keyboard.

    Firefox 3.6.4 and 3.6.6 use a process called, "plugin-container.exe" which was using up most of my CPU when I opened up multiple tabs that contained Adobe Flash files, and caused Firefox to lock up.
    My solution was to use Firefox 3.5.10 which you can get from the Mozilla website at [http://www.mozilla.com/en-US/firefox/all-older.html]
    I am using Adobe Flash 10.1.53.64 without any problem in this version of Firefox. Check the release notes, I believe it contains all the latest security fixes in "Firefox 3.6.4".
    Hopefully, they will fix Firefox 3.6 in the next version (e.g. Firefox 3.6.7), until then you should probably use "Firefox 3.5.10".

  • PRINTING KEY COMMANDS/ EDITING VOCALS/LOGIC PRO 7 compared with Logic 8

    Dear all,
    q1: i am trying to print the key commands. A way to do this is by Copy Key Commands in the Options pull down menu and then paste it onto a text editor (e.g word). My problem is, when I paste it onto word the names of the commands appear but the actual key commands on the right do not, and some symbols appear on the left of the names where they should not. Is there a simple way to print the key commands. My word processor is a 2004 word version and my Logic Pro 7 about a year old.
    q2: I am recording a multitude of vocals. Which window would you find most practical for quick and effective editing? the arrange window or going into each region by double click and trim detail there? I somehow seem to prefer the arrange but would welcome any suggestions.
    q3: I feel much more comfortable using Logic Pro 7 as Logic 8 does not advance my workflow yet. Am I alone in thinking in these terms. Would you agree on the possibility of users sticking at 7 for quite some time, maybe a year or two before they switch to 8 if at all. I d be very interested to hear anyones thoughts on this
    Thank you all for reading. if you can spare a thought ot two I d be so thankful.
    Nik

    My experience is that I only learn a few key commands at a time.. ie really use them and remember them. Therefore go to the KC window and open up the commands where you want to concentrate your learning. Then take a Screenshot
    (Command + Shift + 4 and draw a box) which appears as a Picture 1 on your desktop. Then just refer to that
    many users ( me included) are still working in L7 with occasional experimental forays into L8
    Those really on top of L8 have committed early on and really gone for it.. if you dont have a high new info tolerance or are not particularly software savvy.. stick with L7

  • Using key commands while editing text...?

    I love key commands. They help get things done sooo much faster...UNLESS I'm in the middle of editing text with the type tool and I want to, say, change to the arrow/selection tool. I can't just hit "A" or "V", since it will just add this to my text.
    To all you folks out there who are like me and love key commands, isn't there some way to get around this? Either a key command that can be used while editing text, or a key command for "exit type mode"?
    I'd welcome any thoughts on the subject. Thanks!

    I did try to add a Control modifier, but it seems that tool shortcuts don't allow you to use Control or Alt or function keys.
    Thanks for the Esc suggestion. That's just what I was looking for--something simple that I had overlooked!
    Thanks, Scott!

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

Maybe you are looking for

  • G4 and Xgrid node question

    I am currently running Logic on a G4 and thinking of the most effective way to expand my capabilities in order to work on film scoring. I was thinking of buying a mini mac and running and xgrid to utilize both computers for processing (with the node

  • Audit log missing in message in Message Monitor

    Hi, I am facing a weird problem. I found this in one of my scenario where we are using AS2 adapter and its an IDoc to file scenario. When I go to details of messages in message monitor in RWB,sometimes the Audit log is empty. It is happening randomly

  • K8D Master-F not recognising 2nd processor

    Hello, I have just built a system based on this motherboard and a pair of Opteron 242s. Running with one processor is fine - but if I add a second processor the system says that it still only has one. I know both processors work because I have tried

  • Problem with ICX message file

    I work on localization of EBS and made some updates to FND_NEW_MESSAGES table for Self-Service Web Applications. When I tried to generate message file for ICX through adadmin I've got next message: "No Oracle message file selected for generation". I

  • .Mac Gallery sort order

    Is there any way to influence the sort order of my galleries posted on .Mac? It seems the last one published is shown first, but I'd like to get them in chronological order. Thanks.