How do you group connected objects?

Is there a way you can group objects (in my case text boxes) that have been connected?  When I try to the "Group" button is greyed out, and if I group them first, I'm unable to connect them (greyed out).

You can't group them, but you can pass them through Preview and get them to one item. To do this, select them all and copy, them open Preview and command-n (or File>New from Clipboard), copy this and paste back into Keynote. Before you do this, make sure your text is how you want it as you can't change it after you do this.

Similar Messages

  • How can you move the objects from one server to another?

    how can you move the objects from one server to another?

    Hi,
    Collecting objects for Transporting
    1. rsa1->transport connection
    2. left panel choose 'object type', middle panel choose 'infocube' and 'select objects'
    3. then choose your infocube and 'transfer'
    4. will go to right panel, choose collection mode 'manual' and grouping only 'necessary objects'
    5. after objects collection finished, create request
    6. If they are $TMP, then change the package.
    7. When you click the Save on the change package, it will prompt for transport. Here you can provide an existing open transport request number, or if you like here itself you can create a new one.
    8. You can check the request in SE09 to confirm.
    Releasing Transport Request  
    Lets say you are transporting from BWD to BWQ
    Step 1: In BWD go to TCode SE10
    Step 2: Find the request and release it (Truck Icon or option can be found by right click on request #)
    Note: First release the child request and then the parent request
    Steps below are to import transport (generally done by basis )
    Step 1: In BWQ go to Tcode STMS
    Step 2: Click on Import queue button
    Step 3: Double Click on the line which says BWQ (or the system into which transport has to be imported)
    Step 4: Click on refresh button
    Step 5: High light the trasnport request and import it (using the truck icon)
    Transport
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/224381ad-0701-0010-dcb5-d74236082bff
    Hope this helps.
    thanks,
    JituK

  • How do you select an object that is directly under another object?

    How do you select an object that is directly under another object?
    I was working from a template and I wanted to make a text box the same size as a column box that was put there in order to keep the text in the confines of the paper that is was being printed to.
    I could actually put text in each column fine but I wanted it to be in a text box so that I could slightly tilt the test box to compensate for my printer feeding it in slightly wrong. I accomplished this on another template but I could not on this one. If I was working in InDesign or something I know I could just select that layer but I'm at a loss of what to do here. How do I select a column right under a text box? I just thought of something. Once I make the text boxes the same size as the columns I think I can just delete the columns from the inspector. But that would be kind of a work around. I know you can hold down command when nothing is selected from outside the document and then highlight but this is not working. Does anyone have some tips and tricks when it comes to having control over which objects you are selecting when it comes to objects that are overlapped as well as directly over each other.
    Thanks.
    Tim

    I'm not sure it's documented any where, but it's not too difficult. First, ⌘-click outside of the layout area to enter object mode then drag the cursor towards the two objects until you see the handles. Now, again ⌘-click on the top object to deselect it. You can now move the underlying object to the front to edit, delete, etc.
    After typing this, it dawned on me, why not just click the top object to select it & move it to the back? I've only done the other way a bazillion times & now I think of this.

  • How do you remove an object from a picture.  Newbie to program CS6

    how do you remove an object from a picture.  Newbie to program CS6

    Well, generally you can use the clone-stamp tool for one, shortcut is S. It basically allows you to take data from any part of the image and copy that over. What I do is draw on a new layer above the one to modify- make sure you select Sample:"This layer and below" in the top toolbar when doing so. Other ways include blending something on top of the object too, using different blending modes. Painting over it works too at times (rarely). It'd be easier if we knew a specific case though...

  • How do you group icons on your screen

    How do you group icons, like making a games folder for your screen?

    From the iPad User Manual:

  • How do you auto connect to a PC server resource on re boot w/o having to type the username and password to that resource?

    How do you auto connect to a PC server resource on re boot w/o having to type the username and password to that resource?

    Open the server as you normally would. When you enter your password, click the box to "remember Password". Once mounted, select the server icon from your desktop and hit Command + L to make an alias. You can move that alias to some place out of the way if you wish. The go to System Preferences/Users and select your user profile, then Login Items. Simply add the alias you just created. Now every time you boot you will automatically be connected to that server.

  • How to rectify a connection object if it was entered wrong in a premise

    Hi,
    Please guide me how can we rectify the cases where  connection object was entered wrongly in the premise.
    Thanks and Regards

    Hi,
    I request you to please suggest some functional transaction.
    Please guide.It is very urgent.
    Thanks and Regards
    Edited by: MPVash Vash on Oct 20, 2008 10:59 AM

  • How to send a Connection Object via CORBA

    Hi.
    I've got a question.
    How can I send a java.sql.Connection object
    using CORBA to a client? Tried to use a class
    MyConnection extending org.omg.CORBA.portable.ObjectImpl
    as a wrapper class. Didn't work.
    When a request was invoked for a Connection,
    no object was send. On client side an error occured:
    code 202 completed:maybe.
    In the IDL we used:
         typedef Object MyConnection;
         interface ConnectionPool{
              MyConnection getCon();
              void freeCon(inout MyConnection c);
    We were suggested to use structures. But ain't it
    inventing java again?
    Can anyone help us?
    Thx anyway.

    Try inserting it into an Any object and sending the any object over the IDL, the client can then extract the connection object.
    You might have to typedef the Connection object in the IDL to generate the helper class.
    /P/

  • How do you add an object to a collection typed witha wildcard?

    Hi All,
    I want to add an object to a collection typed with a wildcard but I can't figure out how to do it.
    I've been thru the generics tutorial again and I now understand that I can't do exactly what I want to and why. However I don't know how to do it right. I copy some code below to show the problem:
    private List<? extends HasCriteria> dataList;
    private HasCriteria dataObject;
    public HasCriteria getDataObject() {
            return dataObject;
    public List<? extends HasCriteria> getCollection() {
            if(dataList==null){
                refreshDataCollection();
            return dataList;
       }/*I want to be able to do the add() below but the generics tutorial assures me, as does the compiler, that I can't. So how do I get an object into the collection?? */
    public void create(){
    getCollection().add(getDataObject());
    }/*I don't understand why I can do this setCollection() call below as the compiler has no idea that the resultList is of type HasCriteria, however I accept that it is ok with this*/
    protected <T extends HasCriteria> void setCollection(Collection<T> m) {
                dataList = new ArrayList<T>(m) ;
                for(HasCriteria t: dataList){
                    t.setStatus(HasCriteria.Status.SAVED);
    public void refreshDataCollection(String jpaQL, List modelParameters){
                Query q = em.createQuery(jpaQL);
                List rl = q.getResultList();
                if(rl != null){
                    setCollection(rl);
                    setModelQuery(jpaQL, modelParameters);  
    }

    class GenGen <K extends Shape> {
      private List<K> dataList;
      private K dataObject;
      public K getDataObject() {
        return dataObject;
      public List<K> getCollection() {
        if(dataList==null){
          //refreshDataCollection();
        return dataList;
      public void create(){
        getCollection().add(getDataObject());
      protected void setCollection(Collection<K> m) {
        dataList = new ArrayList<K>(m) ;
        for(Shape t: dataList){
          // t.setStatus(HasCriteria.Status.SAVED);
      public void refreshDataCollection(String jpaQL, List modelParameters){
        List rl = null;
        setCollection(rl);
    }Note that in that final setCollection, you'll get an unchecked conversion warning, if you haven't turned them off.

  • How do you unlock an object in Fireworks CS5?

    Hi There,
    I locked a few objects but now I can't find an unlock command - how do you do this in Fireworks?
    Found a menu in the layers palate which did the trick - pretty cryptic though!
    Cheers
    Ben

    First, make sure the objects are not on a master page. If not, you can either click on the little lock icons next to the objects in the layers panel, or open the layers panel menu and select Unlock All.

  • How do you disable "Connect to iTunes to Enable Push Notification" Message when opeing an app? Thie message is compeleyely annoying and theres is no way to cancel it. You have to clcik on "OK" to use the app.

    How do you disable the "Connect to iTunes to Enable Push Notifications" prompt when opening apps on an iPad (OS7)? The message is completely annoying and there is no way to cancel it. You must click on "OK" to use the app. I have already disabled notifications on those apps in the Notification Center.

    The best way to do this is to leave all files unchanged, but render the file containing that horrendous bird noise unreadable to the system. Open a terminal window, and paste this command:
    sudo chmod 000 /System/Library/Frameworks/Social.framework/XPCServices/com.apple.twitter.xpc/C ontents/Resources/TwitterSent.caf
    That's it. Your Tweets should hereinafter be silent unless you change TwitterSent.caf's permissions again.

  • How do you "un-unite" objects

    In Pages 5.+, you can "unite" objects. This is Apple's pathetic attempt at allowing linked text boxes, among other things. However, there is no way to "un-unite" text boxes. At least, I can't find one--aside from using the undo feature to undo everything back to the point where I united the text boxes in the first place. Anyone help?

    Nope that's it.
    Why do you persist with Pages 5.5 if that is important to you?
    Peter

  • How do you know the object is from another database through db link

    I have a table named a2z_people. I searched dba_objects, I found this is a public synonym.
    How can I know the real table name in the another database. Where is this table come from? In another words, what's the source database?
    Thanks!

    In DBA_SYNONYMS, there is a DB_LINK column that names the database link being used (assuming the real object is on a remote database). Is that what you're looking for?
    Justin

  • So how do you declare an object?

    Okay I have a program I'm trying to build that lets me navigate between menus...
    Main Menu starts up:
    (Unimportant)
    Then it takes me to another Menu.
    When this is over I want to go back:
       System.out.println("Select: ");
            System.out.println("1: to Return to the main menu");
            System.out.println("or");
            System.out.println("0 to Exit");
         if(input.nextInt()==1){
             main(); // <-- error here
         else if(input.nextInt()==0){
             System.exit(0);
            }   It doesnt find the main method because I didn't declare it as an object at the top...
    How do I do that?
    Edited by: tark_theshark on Mar 30, 2008 5:24 AM

    Nah, this has nothing to do with declaring an object, and you really don't want to do this. What you really want to do is to have a loop of some kind, say a while loop and have the loop repeat until the user presses "0". Something like so:
        public static void main(String[] args)
            boolean done = false;
            while (!done)
                if(input.nextInt() == 0)
                    done = true;
        }Edited by: Encephalopathic on Mar 30, 2008 6:27 AM

  • How do you break connections?

    I have a crapton of clips that I have to sync with a voice over, which involves trimming both the audio and the video on all the clips. For some obscure reason however, Apple thinks that I'll always want my audio to connect to the clip that it's directly under, so whenever I make an edit on a video, the audio in front of it gets messed up and starts layering itself due to the stupid magnetic timeline. Is there any way to break those connections so that whatever I do to the audio will not affect the video and vice versa?
    Also, how do I make this program not suck?

    I do similar things with voice-overs.  Right Click (or Control CLICK) on the video clip you want to remove the audio from.  Select Detach Audio.  The audio, as you pointed out, will be connected below the video clip it came from with a little attaching line on the left side of the audio clip connecting it to the video clip.  Remember there is a main "story line" in FCP X.  Any video clip on that main "track" (primary storyline) will be treated as independent, or non-subordinate, to other clips.  Thus, you can now drag your detached audio clip away from the video clip it came from and onto another clip on the "primary storyline" track.  Or ... you can simply drag it to the end of the clips on the "primary storyline" and let it off there.  Now it will be treated as a clip that is not associated with other clips, and you can delete it if you wish ... just like any other clip.  It will not affect the video in the parent clip it came from when it resides on the main story line "track" .  Note that all this requires you to get familiar with and work with the "primary storyline" concept.  Other than that, the program isn't as bad as I thought it might be after seeing all the negative reviews.  It really is revolutionary ... it just works differently and requires us to learn some really new, "out-of-the-box" ways of doing things.
    stephen

Maybe you are looking for

  • Error Message - Moving a Folder

    Please help! I just tried to move a folder from my portable hard drive to my MacBook Pro desktop. Therefore, I used the following key combination: "Command + C" and "Option + Command + V". For some reason an error message appears, and I am not able t

  • Adding a new field to an existing BDoc.

    I posted this message in other forum, but I think the correct one is this. I need to add a new field to bdoc BUS_TRANSACTION_MESSAGE, so I've added a field to structure BAD_BUS_TRANSN_MESSAGE, to the substructure PRODUCT_I. What I need to know is how

  • Transporting an application from one server to another

    Would like to find out what's the best practice for transporting/migrating a forms/workflow application from one LC-ES server to another. This is the process that I know of: 1) export the application (create an LCA file) 2) import the LCA to the 2nd

  • Embeded images in paragraphs

    I have seen some iBooks Author books where there are images places embedded integrated in the paragraphs, so they can be displayed both in vertical and horizontal orientations, but the text properly wraps around these images. According with my experi

  • Datasource via function module

    Hi, I am building a function that is due to be used by a Datasource (via Function Module). This function uses table WDRD. It applies to this table a code that needs the use of an internal table for the calculation (for intermediary calculation storag