Copying attributes of object/text using shortcut keys!

Hello!
I want to copy attributes of one paragraph to another using shortcut keys. Is it possible in InDesign CS3 version? If yes where it is?
I know Mx Freehand can do it.

Define a paragraph style using the formatting you want (just highlight some text and define the paragraph style from the panel -- it will pick up the attributes). You can assign a keyboard shortcut as part of the style definition.
That isn't 100% keyboard, at least to start, but it's how ID works. Styles are extremely powerful. Edit the style and all text using the style changes instantly. Base one style on another, edit the base style, and the based-on text will change attributes not overridden in the based-on style.
Peter

Similar Messages

  • Using shortcut keys in the block diagram

    i want to use shortcut keys in the block diagram. is this possible?
    Thanks!
    ~drycsr~
    Attachments:
    S1.jpg ‏318 KB
    shortcut.jpg ‏155 KB

    thank you guys, actually i want to move objects to a pane by using mouse (drag and drop to pane). there are more than one objects (as boxes). then when an object (box #1) which is clicked by mouse is active, the other objects are passive. so,i think maybe i can use shortcut keys as commands.
    for example when i drag second box to same coordinates of the first box, it places on top of the first one. i dont want to stow objects. i want to put them side by side. sorry about mess!
    Thanks!
    ~drycsr~
    Attachments:
    move.jpg ‏142 KB
    front_panel.jpg ‏115 KB

  • Is it possible to use shortcut keys in VC apps???

    I'm really struggling to understand whether or not it is possible to use shortcut keys (via keyboard) instead of the mouse (Click on an action button) for user actions to be submitted within a Visual Composer model I have created. I'd apprecaite your help on this. Thanks in advance

    Hi,
    there are no shortcut keys available in Visual Composer. You can not define an event onkey... as you may know from other development environments like .NET and so on. But I think this is ok, because VC is a tool for BPX. It should be simple for BPX, because they aren't developers. When I think about Web Dynpro there are also no shortcut available only onEnter e.g. for a input field. So when you need shortcuts I think you have to use another environment as I mentioned like .NET.
    I think this isn't the answer you wanted to hear, but I'm sorry this isn't possible.
    Best Regards,
    Marcel

  • Custom text entry shortcut key

    I have a text entry field on my page. The user is to click
    the ? key. When they do this, I need to validate on key entry NOT
    on an ENTER or a TAB. ? is not an available shortcut key. Is there
    a way to make this work? I could even do an "any key" sort of
    thing, I just can't have them tab or hit enter.
    Any help is greatly appreciated.

    Rather than chase after a custom text entry control, perhaps
    it's time to think outside the box?
    Are you testing the user's knowledge of a specific text
    string that needs to be entered in a particular field? If so, use a
    question slide with a picture of the field and/or screen for
    reference. The question can be multiple-choice, fill-in-the blank,
    whatever.
    If you're not testing the user's knowledge, then I assume
    you're testing their ability to use a keyboard? If so, ask yourself
    whether that's really the goal of your training.
    Text entry is an often and necessary evil of the training I
    develop, but the actual text to be entered is usually arbitrary
    based on the scenario. For this reason, we let Captivate record all
    text entry as animations and save "real" text entry boxes for times
    when specific text needs to be entered. I cover the first few
    animations by saying "to save time, we have entered the text for
    you" and then don't even bother with that.
    People have commented that the materials seem to go much
    quicker when they're not asked to type a bunch of pointless
    stuff.

  • Looking up values from Map/HashMap  when Objects are used as keys

    I'm trying to understand why Map/HashMap don't test for equals() when looking up a key ( which is an Object that overrides equals() and hashCode()) in the Map.
    I've written this code, based on some code from the SCJP book, but it is not exactly the same, this code talks about a different issue not addressed in the book.
    I've added my questions inside the comments below, I think that is the best way I can ask it.
    import java.util.*;
    class Bird{
         public String name;
         public Bird(String name){
              this.name = name;
         //Override equals()
         public boolean equals(Object o){
              if(((Bird)o).name.equals(this.name)){
                   return true;
              }else{
                   return false;
            //Override hashCode
         public int hashCode(){
              return name.length();
    class TestMapLookup{
         static public void main(String[] args){
              Map<Object, Object> hashMap = new HashMap<Object, Object>();
              Bird b = new Bird("crow");
              hashMap.put(b, "somevalue");
              //according to the book, the map object calls the key's (Bird object's)
              //hashCode() first and then equals()
              //to find this key in the map
              System.out.println(hashMap.get(b));
              //Using the b reference to lookup value
              //ouputs - somevalue
              System.out.println(hashMap.get(new Bird("crow")));
              //Using a new Bird object to lookup value
              //outputs - somevalue
              //because Bird overrides equals and hashCode
              //otherwise we'd get null
              //Now change the name of the bird in the b reference
              b.name = "sparrow";
              //Notice that the crow's hashCode is 4
              //sparrow's hashCode is 7 , in the above implementation of hashCode
              System.out.println(hashMap.get(b));
              //Again using b reference to lookup value
              //ouputs - null
              //because the hashCode of b.name does not match
              //the hashCode of any of the keys stored in the map
              System.out.println(hashMap.get(new Bird("crow")));
              //This also outputs null
              //for the same reason that there's no key in the map
              //with a hashcode of 7
              //This is where it becomes strange......................
              //Change the name of the bird in the b reference
              //so that the new name has the same hashCode, as the key in the map
              b.name = "dove";
              System.out.println(hashMap.get(b));
              //In the above - the hashCode matches
              //but equals() fails
              //even though equals() fails, the key is still located and the value is output
              //output is "somevalue"
              //same here:
              b.name = "1234";
              System.out.println(hashMap.get(b));
              //output is "somevalue" instead of null
              b.name = "abcd";
              System.out.println(hashMap.get(b));
              //output is "somevalue" instead of null
              //why does it output "somevalue" instead of null , even though when the map
              //looks up the key , equals() returns false?     
              System.out.println(hashMap.get(new Bird("crow")));
              //In this case ( new Bird reference ) it prints null
    }I'm aware of best practices in coding and coding conventions but haven't used them here, because this is in preparation for SCJP - which tests on a lot of different things.
    I appreciate any info.

    It is correct that b is referring to the same object that the map's key is pointing to, but why does the following
    print null , instead of "somevalue"?
    at these lines in the code above.
    b.name = "sparrow";
    System.out.println(hashMap.get(b));Because the hashCode used when you stored b was 4, and now it's 7. You should read the Wikipedia article on Hashtable, but a simplistic explanation is that a HashMap has a bunch of "buckets," say 10, each indexed with a number 0-9. To decide which bucket to put a new key-value pair in, you take the hashcode (say 2112) and take the remainder of hashcode/number of buckets (in this case, 2112%10=2). So when you store the key-value, it gets "put" in this bucket.
    When you change the hashcode of b by changing its name attribute, it doesn't change the fact that the pair is in that bucket. But, it now looks in the wrong bucket and so can't find the pair.
    A hashtable gets its good efficiency by not having to look through all values to find the pair. It can jump directly to the correct bucket, which takes constant time instead of being dependent on the number of items in the collection.
    endasil wrote:
    You should never, ever change an object being used as a key in a map.I guess this is a best practice, I just wanted to try changing the key object to test a few things for SCJP, which does not test on coding best practices but tests on how the code behaves.Yep, and what you should take away is that this is WHY it's bad to change the key :).

  • How to trigger button using shortcut keys

    Hi Friends i want to trigger a button in java swings using keyboard keys.
    for ex: a button called "Enter" either i click mouse or i press ALT+E to trigger it.
    Plz give me sample coding if u have
    By
    vinod

    Try looking at the tutorials...
    http://java.sun.com/docs/books/tutorial/uiswing/events/keylistener.html

  • Can't select text using shift key

    Really weird thing...
    Suddenly can't use the shift key to select a block of text... but only in certain apps.
    Unfortunately, have read through 20 or 30 articles and getting nowhere, so posting here in case anyone has had a similar issue!

    Checked that. Wasn't anything there.
    But doesn't matter much as it suddenly randomly started working again. *sigh*

  • Satellite A300-15K: Polish character does not appear using shortcut key

    Hi,
    I am a fresh user of A300-15K and from the start I have discovered that it has combination of Alt+Ctr+C assigned to starting up ATI software (Catalyst Control Centre). Unfortunatelly this combination normally should produce Polish character "?" ( it doesn't look properly on this page somehow after I have copied it from Word - it is "c" with stong accent over it - here is its capital version "?").
    I entered Catalyst Control Centre and unmarked the use of so called HotKeys (first this particular hotkey and then the use of hotkeys generally), but all I achieved was that Catalyst Control Centre stopped starting up after the combination usage.
    However, the needed Polish character did not appear. I can get its capital version with Alt+Ctr+Shift+c, but no normal version.
    A guy from service centre advised me to assign a different letter as startup combination for Catalyst Control Centre and I did, but it still did not make the Polish character appear.
    I guess there must be a fault in regional settings so I tried to change them to English and back to Polish with zero result.
    Please help with some word of advise.
    Message was edited by: Koster62

    Its easy to turn off.
    Just enter the catalyst driver and there must be option like 'shortcut'. Turn it off.
    I had the same problem.
    I remember only it was really easy to turn off.
    You shouldn't have problem with that.

  • How to use shortcut keys on wireless keyboard with ipad

    i just purchased an ipad 4 with a wireless keyboard and do not know how to use the function keys on the wireless keyboard to access the homescreen, scroll up and down, etc.  please help with anything i need to turn on/off or download . thanks

    If you have more than one keyboard active, you may be using a different one than you want.  Use the "globe" key to make sure your virtual keyboard is set to Japanese Romaji or Japanese Kana.  Which one do you use?
    On the hardware keyboard, use apple/command plus space to switch between different keyboard layouts which may be active.

  • Cannot use shortcut keys on Firefox.

    I noticed it a week or so ago and thought it was just the website that I was working off of, but ever since then I have been unable to work using the "Ctrl+C" to copy or the "Ctrl+v" to paste. I don't understand what is going on, can anyone help?

    tnx but that didnt work, instead i took the AC out, ran the battery dead, removed battery, re-inserted it, plugged AC back in ,started it up n they all seem to work again now :)
    tnx again anyways

  • Must use shortcut key twice

    I wrote some simple scripts to do things such as create new event in Entourage. The script is:
    tell application "Microsoft Entourage"
    set newItem to make new event
    open newItem
    end tell
    The script is saved as "New Event\oE"
    Some of these scripts work okay. This one for instance when I hold down option and type E, the script menu is executed, but nothing happens unless I press option-E a second time. I must consistently use the hotkey twice to get the desired action. What gives?
    MacBook Pro Duo Core2 2.16 GHz   Mac OS X (10.4.9)  

    I can't tell you why this is happening, but I can tell you that it's a known quirk with Entourage. Many users, including this one, have remarked elsewhere that even keyboard shortcuts created in the System Prefs panel require a second stroke to provoke their execution.

  • Gimp program won't let me type anything it just tries to use shortcut keys when I type

    I got the gimp app and it won't let me use the keybard to type in to rename, or anything, it keeps trying to use the keyboard for shortcuts

    Solution to this known bug is to upgrade to GIMP 2.8.10. Worked for me.

  • Copy text attributes using shortcut in ID CS 4!

    Hi!
    I want to copy text attributes using shortcut keys. Is it possible? It is possible in MX Freehand.
    Here, I want to copy attribute (Magenta colour) and apply to another word (Magenta colour).
    Thanks.

    You use the Eyedropper too for this. The shortcut is i, unmodified, so you can’t call it while editing text. But you can click on the tool. You then click once to load the eyedropper with the desired formatting, then click wherever you want it applied. Click and Drag, like selecting text, to apply formatting to a word or words. I have not tried editing the shortcut so it can be called while editing text, but you can try. Go to Edit > Keyboard Shortcuts, and go to Tool under Product Area.

  • Establishing new shortcut keys WITH coordinate values

    Hello,
    I don't know if it's possible, but I am trying to make a shortcut key that will let me move a text box to a specific place. I have a bunch of text boxes on each page, and I want to move each one to a specific area. Going to the transform window and entering the X and Y coordinates is time consuming, so I would like to make shortcut keys I could use for the text boxes. I've looked at the shortcut keys and couldn't find a place where I could enter X and Y coordinates.
    Unfortunately when I started out on this project, I didn't know much about InDesign and I disassociated all the text boxes from the master page (yup, went and did it over the course of 2 hours, boy do I regret that now!) otherwise I'd just move the boxes on the master page.
    For example, I'd like to move a box from it's current position to
    X: 23.44 mm
    Y; 243.00 mm
    Or, if there is an easier way to do this without using shortcut keys, I'd appreciate any help.

    I still get an error message. I copied Gerald's script exactly as it appears above, and the error message says "bad argument move" line 2.
    Sorry to not get this, but I really have no idea how the script Gerald gave me should appear. Should the entire thing be on one line, should the spaces appear exactly as he has them??? I copied and pasted it in just as it appears below - the same form as above:
    for (n=0; n<app.selection.length; n++) {
    app.selection[n].move([23.44, 100.05]);
    Maybe there was some slight adjustment I should have made? Please bear with me, I want to get this right, sorry if I am missing something that everyone else already knows.
    I was able to get the "helloworld" script from the tutorial to work, btw, so I know that there isn't some glitch keeping me from executing scripts.

  • Keyboard stuck using shortcuts

    Hello all,
    I am currently using a MacBook OSX 10 and my keyboard seems to be stuck using shortcut keys only.
    I am using an external keyboard right now but would like to be able to just use my keyboard on the Mac.
    I disabled the command, option, alt, and control keys in the system preferences, but the keyboard still only acts as shortcut keys.
    The keyboard as mouse is also not on.
    Thanks for the help!

    Then, you're using a nonstandard combo. According to Safari->Debug->Keyboard & Mouse Shortcuts->*Cmd+/->Show/Hide Status Bar* as noted by nerowolfe. What happens when you use CMDCNTLD?
    To activate the Debug menu, type (or copy) this command into the Terminal app, hit the return key, and relaunch Safari:
    *defaults write com.apple.Safari IncludeInternalDebugMenu 1*
    To turn it off, use:
    *defaults write com.apple.Safari IncludeInternalDebugMenu 0*

Maybe you are looking for

  • Gap appearing in table

    Hi I am using Id cs6 on a pc.. win8.. I am creating a catalogue with a huge table. Data was entered and is now being rearranged via cut/paste and merging /deleting cells. The problem is that a gap has randomly appeared of almost a whole page length.

  • I bought tracks from iStore and burned them onto a CD but my car CD player won't play it

    I bought tracke from the iStore and burned them onto a CD, but my car CD player doesn't recognise the CD, why?

  • ATI Radeon Replacement for Probook 4720s

    I believe my video card is malfunctioning. My laptop freezes upon startup.... it use to freeze once in a while whilst gaming or heavy loaded operations. It now freezes before the desktop even loads. It doesn't simply freeze for a few seconds. It will

  • Monitoring Multiple RFCs with CCMS

    Hi, I have created a Z data collection method as per NOTE 1069130,mapped it to the standard MTE Class " "Availability_RFC_Destinations" But i dont see the data in RZ20 monitor  Plese help me with this

  • How to activate WAD on WAS

    Can any body Help me to give me detail that How to activate WAD on Web application server,I will be thank to all bi gurus