Can't grab Object under another Object

Hi,
I hope somebody can help me with this:
In one of my slides I have two highlight boxes which occur at
different times during the slide. One is larger than the other, and
the smaller one fits entirely within the border of the larger one.
The problem is that I can't grab the smaller highlight box to edit
its position because the larger highlight box is always selected no
matter where I click. I can click on the smaller highlight box in
the timeline and double-click to edit its size and position using
screen coordinates, but this is very hit and miss. The only way
I've been able to do it so far is to move the large highlight out
of the way, edit the smaller one's position, and then move the
large one back to its correct location. Is there a way to grab the
smaller highlight box without having to do this?
Thanks,
Eric

Hi Eric
You didn't say, but hopefully you are using Captivate version
2. If so, this will be infinitely easier.
If you are using Captivate 2, just click the Object row in
the column where the eye icon is at the top to hide the object in
front. Then you are free to double-click the highlight box that is
behind.
If it's Captivate 1, you might try right-clicking the one in
front and sending it backward a layer or two. Or, you could cut it
and temporarily paste it to another slide, work with the one you
want, then cut from the other slide and paste back.
Cheers... Rick

Similar Messages

  • 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.

  • Function Module which gives complete list of objects that another object to

    Hi All,
    Is there any standard FM that can give us complete list of objects that another object(Order/Cost Center) settles to??
    Thanks in advance,
    Prathima

    Hi,
    Question is not clear.
    Revert back,
    Regards,
    Naveen

  • How can I select an object located under another object?

    IS there a shortcut like in QuarkXPress to select an object located under or behind another object?

    Press the CMD-key while clicking or use the layers panel.

  • How can i send a MESSAGE from an object to another object?

    i've following code:
    class Receiver {
         private String str = "Your message is recieved to me.";
         String sendBack() {
              return str;
    class Sender {
         public static void main(String[] args) {
              Receiver r = new Receiver();
              System.out.println(r.sendBack());
    }I'm confused with the concept of MESSAGE in java. All i gather about it is that when two objects want to communicate with each other they send messages to each other. One object is sender of message and other is its receiver.
    Here reciever object 'r' itself performs its method and does not communicate with any other object. How do i change this code into where two objects communicate with each other?

    Well the OO theory says that objects comunicate via messages, now that information must be taken as knowledge only, not for programming issues really. What you need to know is that when you need to pass any data from onw object to another you can send them via parameters of defined methods.
    For example you have an Object called R of a receiver class and that object needs to pass a String (text message) to another object. you can do it via a method.

  • Design Problem: Object reference another object at different states

    Hi,
    This is a problem I came across today while developing a simple prototype. Imagine I have a class Boy which has a one-to-many relation with a class Dog.
    The class Boy has the following methods: getName(), setName(), getAge(), setAge(), getDogs().
    The class Dog has the following methods: getName(), getOwner()
    When the application starts I load a Boy from the database as follows:
    Boy peter = BoyFactory.loadBoyByName("Peter");
    peter.setAge(10);
    I then add peter to a static list which can be accessed from everywhere within my application.
    At a different stage in the application I want to load a dog (just a dog). So I use the following code:
    Dog dog = DogFactory.loadDogByOwnerName("Peter");
    The dog object (using JDO or Hibernate) would also have a reference to the Boy object. However when calling the getOwner() method, the boy returned will not be the same boy stored in that static list (I expect the age, which was not persisted in the database, to be different).
    Is there a way how when loading the Dog object, since its Owner of type Boy is already loaded in my object model, a Framework such as Hibernate or JDO will use this object rather then re-build a new one.
    I am planning to use either Hibernate or some JDO framework and that is why I am asking this question.
    If I where going to use some custom made way to load Dog then I would just search if the Owner was in that static list and if yes then set the owner of the dog equal to the object found in the static list.
    However I was wondering if there is some design I should consider (study) to handle such a problem.
    Thanks and Regards,
    Sim085

    Thanks uj :) I had another thought...
    I will give another scenario so things are more clear.
    Imagine having a class Teacher which has one-to-many relation with a class Student.
    If you where programming the classes for these two entities then would you program the student class as follows:class Student{
    Teacher t = null;
    void setTeacher(Teacher t){...}
    Teacher getTeacher(){...}
    }ORclass Student{
    int teacherId = -1;
    void setTeacherId(int tId){...}
    int getTeacherId(){...}
    }The difference between these two methods is that in the first method, if I wanted to know the teacher of a student then I would only have to call the getTeacher() method while using the second design I would first need to get the teacher Id and then make a database call to actually get the Teacher object (or else get it from a static list where the teacher could be saved.
    Personally I prefer the first method since I like to have an object model where objects are directly linked with other rather then linked through some form of id. However I do not know which design is best to use...
    Thanks
    Sim085

  • [ORA-22905] How to read a field of an object inside another object?

    Greetings,
    I'm a student and in a current exercise we have to work with the Object Oriented Programming functionality of Oracle.
    In the database we defined an object type, which is then considered inside another object type. The thing is, that I cannot read an attribute of the inner object. I've read tens of websites but none of them have helped so far. I've read the PL/SQL User Guide and Reference document also.
    The inner object is defined as follows:
    create type address_t as object (
            street varchar(50),
            city varchar(50),
            pcode number(5,0)
            );The outer object has an object of type address_t inside it:
    CREATE TYPE professor_t as OBJECT(
              code number(2),
              p_name varchar(50),
              address address_t,
              );Also, there is a table named PROFESSORS that stores objects of type professor_t
    First of all, with a simple testing SQL statement I can see the data inside the object professor, even the object address_t:
    SELECT * FROM PROFESSORS WHERE CODE = 13;returns the following:
    CODE    |         NAME      |       ADDRESS
    13      |         JOHN     |       MYSCHEMA.ADDRESS_T('FIFTH AVENUE','NEW YORK',12345)The thing is, I want to read the field street of the object address (of type address_t) inside professor (of type professor_t).
    I could see everywhere that the way to go is to use point notation, and I've seen examples about the command VALUE, but none of the following SQL statements work:
    SELECT VALUE(ADDRESS.STREET) FROM(
      SELECT CODE,P_NAME,ADDRESS FROM PROFESSORS WHERE CODE = 13);
    SELECT ADDRESS.STREET FROM PROFESSORS WHERE CODE = 13;
    SELECT PROFESSOR.ADDRESS.STREET FROM PROFESSORS WHERE CODE = 13;I'd really appreciate if someone could show me how to access the values of the field of the object inside an object.
    Thanks in advance,
    - David
    Edited by: 858176 on May 11, 2011 6:53 PM Formatting

    Great, this worked so far.
    It is curious that you wrote 'profesores' but that is the actual name for the variable. I translated everything to english in order to post it here.
    So, the statement is:
    select value(t).DIRECCION.CIUDAD from profesores t;And It returned:
    VALUE(T).DIRECCION.CIUDAD                         
    Valencia                                          
    New York
    TijuanaAnd, applying the VALUE command to the statement:
    select codigo,
    nombre,
    value(t).DIRECCION.CALLE,
    value(t).DIRECCION.CIUDAD,
    value(t).DIRECCION.CP
    from profesores T WHERE T.CODIGO = 13;Resulting in:
    CODIGO                 NOMBRE                                             VALUE(T).DIRECCION.CALLE                           VALUE(T).DIRECCION.CIUDAD                          VALUE(T).DIRECCION.CP 
    13                     Pepito Pérez                                       Calle de los Rosales 0                           Valencia                                           46023                  That is EXACTLY what I needed.
    Thanks Thomas, It was really helpful !
    Edited by: 858176 on May 11, 2011 7:46 PM

  • Selecting an object behind another object

    I'm sure there is a simple answer to this. I am trying to place a rectangle behind a text box to make a bit of the text more visible. In other programs there is often a modifier key to select an object that lies behind another object. Does anyone know how to do this in iWeb 09?
    Kim

    Have you tried adding background fill color to the text box with the Inspector/Text/Text pane?
    Click to view full size
    That way there's no shape to have to align with.
    Happy Holidays

  • FM that can give  complete list of objects that another object settles to??

    Hi All,
    We are fetching Order and its corresponding Partner Object from COBRB table.
    For all the partner objects,no.of settled objects are fetched.
    All this data is fetched by looping at corresponding internal tables.
    We want to know if there is any standard FM to fetch the data mentioned in the above scenario.
    This is how the flow goes in our program:
    In COBRB:
    Objnr OR9D0000100089--> settlement receiver object KSPSEG0000001452
    CSSL:
    CO area : PSEG; Cost center : 1452; Fiscal Year : 2007> 11 entries> Objnr - KLPSEG0000001452T1080
    COSS:
    Objnr KLPSEG0000001452T1080, Fiscal Year : 2007> 53 entries> Partner Object – OR000100394469
    COSS:
    Objnr OR000100394469, Fiscal Year : 2007 >81 entries> Partner Object –PR00288374
    COSS:
    Objnr PR00288374, Fiscal Year : 2007> 36 entries> Partner Object – OR9D0000100089
    Thanks in Advance,
    Prathima

    Hi,
    Question is not clear.
    Revert back,
    Regards,
    Naveen

  • Adding a flash object behind another object

    Hi, using dreamweaver 8, and I want to add a flash object
    behind an image.
    Basically I have downloaded an image of a retro TV, edited in
    Photoshop and taken the screen out. The TV is sitting on a
    transparent canvas, so that the screen would be transparent as
    well.
    I have a flash slideshow that I have created with
    simpleviewer. If I insert this to the web page it runs ok, but I
    would like to insert it behind the TV image, so it appears it's
    coming out of the TV.
    Is there any way that I can do this?
    Thanks in advance.

    Yes, but it will require a bit more work.
    Consider a 3 column by 3 row table. Make the flash element
    appear in the
    middle cell of the table, and have the TV image appropriately
    sliced so that
    the required images appear in cells 1-1, 1-2, 1-3, 2-1, 2-3,
    3-1, 3-2, and
    3-3, in effect surrounding the Flash element.
    You can do the same thing with background images as well.
    I used this on this page -
    http://www.neapco.com/n_why-neapco.php
    for that main content Flash element.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "kidbrooke2" <[email protected]> wrote in
    message
    news:funed7$bar$[email protected]..
    > Hi, using dreamweaver 8, and I want to add a flash
    object behind an image.
    >
    > Basically I have downloaded an image of a retro TV,
    edited in Photoshop
    > and
    > taken the screen out. The TV is sitting on a transparent
    canvas, so that
    > the
    > screen would be transparent as well.
    >
    > I have a flash slideshow that I have created with
    simpleviewer. If I
    > insert
    > this to the web page it runs ok, but I would like to
    insert it behind the
    > TV
    > image, so it appears it's coming out of the TV.
    >
    > Is there any way that I can do this?
    >
    > Thanks in advance.
    >

  • How to fill an object with another object

    I have created this watercolor blob shape with the help of a tutorial and I was wondering if it would be possible to use that watercolor blob to fill a shape (let's say a circle). How can I go about doing that? I've attempted using the make pattern function in order to create a fill pattern that way, but it's just not working out for me. Are there any other ways? Any help would be really appreciated!

    You are welcome, Amanda.
    Cross posting, I was  working on this addition:
    If you wish to give the top shape a stroke, you may:
    3) Click its bounding path with the Direct Selection Tool;
    4) Click the Stroke box and the Color box at the bottom of the Toolbox and apply the colour (you can do that through the Color palette).

  • All I can save a project under is .prproj - why can't I save under another file type?

    I'm using a trial version to edit my Gopro videos that are in MP4 file type. after I edit the videos the only option that it offers is the .prproj which I can only use this software to watch my video afterwards. I want to save my project in the MP4 format and watch on whatever media player I want like I always do but it isn't allowing me to do so. Why is this? Is it because I am using a trial version? I was told that I can do what it is I'm trying to do and that the trial was a FULL working version. Any help or advice is greatly appreciated.

    Never mind. I was able to figure out the problem via YouTube. Thanks anyway.

  • How to access a function of an object from another object

    Hi all, here's my problem, I have three classes;
    1)Class human
    2)Class animal
    3)Class environment
    class environment
      public static void main(String[] args)
        human luffy = new human();
        animal chpper = new animal();
    class human
       // here I wanna access a method in chpper,
       // what's the best way to day that?
       // and is it even possible with this structure??
    }Thanks
    Roronoa Zoro
    Edited by: Roronoa.Zoro on Nov 19, 2009 6:55 PM
    Edited by: Roronoa.Zoro on Nov 19, 2009 6:55 PM
    Edited by: Roronoa.Zoro on Nov 19, 2009 6:56 PM

    Alright guyz, I guess I'm super stupid but please stay with me.
    Here's the whole problem; I'm writing an application that draws rectangles, so this application is a JPanel that has a layout which has two JPanels, first JPanel contains the JButtons and an ActionPerformed function, and the second JPanel has the canvas that I should draw on.
    Here's the whole code;
    public class animationAll extends JPanel
         public animationAll()
              this.setLayout(new BorderLayout());
                     this.add(new animationButtons(), BorderLayout.WEST);
                     this.add(new animationCanvas(), BorderLayout.CENTER);
    public class animationButtons extends JPanel implements ActionListener
      JButton btnCreate = new JButton("Create");
      public animationButtons()
        JButton btnCreate= new JButton("Create");
        btnCreate.addActionListener(this);
        public void actionPerformed(ActionEvent e)
           if(e.getSource() == btnCreate)
                 //here I want to call the draw method in animationCanvas.
    } Thank you in advance, and please bare with me on this one
    Roronoa Zoro

  • Can't grab several objects at once

    Hi,
    I can't grab more than one object at once. I'm also not seeing the bounding boxes around the objects. I must've pressed something that disabled me from being able to grab multiple objects. Please help
    Thank you,
    Paola

    PalaciosDesign,
    you move object/s using the Selection Tool (black pointer) or the Direct Selection Tool (white pointer) by clicking on one of the selected objects and dragging, it doesn't matter if any kind of bounding boxes are displayed. You are probably talking about the Selection Edges calling them Bounding Boxes and you probably hid them by accidentally pressing Ctrl + H. You can select to show or hide the Selection Edges from the View menu.
    for example with, Selection Edges and Bounding Box hidden, select all (Ctrl+A), click and drag an object, you will be able to move all.

  • Problem in reading an object inside another obj in C thru JNI

    Hi All,
    I am passing a java class object from Jave to C thru JNI.
    This object has many integer fields + one object of another class, which also has some fields.
    I am able to read integer fields from C but not able to read fields inside another object.
    Can anyone plz help me in reading the object inside another object from C.
    I m pasting class here for better understanding :
    public class ImageMergeInformation {
    public ImageInformation outputImageInfo;
    public ImageInformation[] inputImageInfo = new ImageInformation[8];
    public int topMargin;
    public int bottomMargin;
    I wanna read ImageInformation obj.
    Plz help me...
    Thanks in Advance,
    Regards,
    Sneha

    You have to get the field id (getFieldID) of the variable you want, e.g. outputImageInfo, then get the object (getObjectField) in that field. At this point, you can start over (get the class, get the field id, get the object).

Maybe you are looking for

  • How to disable "Double Click on Tab Bar to Open New Tab" feature?

    Since I upgraded to FF3 I've noticed this very annoying feature with tabs. If you double-click the 2-3 pixel wide bar just beneath tabs, it opens a new empty tab and sets the focus to that new tab (Which means I then have to go close that tab before

  • After using external speakers headphone jack no longer works

    Hi, i plugged in some external speakers yesterday, the type that have two channel inputs (red and white) from my headphone jack.  the speakers didnt seem to work, i thought it was the speakers that were broken, but now nothing will work from the head

  • Report Server RTF on Solaris gives Core Dump

    We have Report Server 6.0.8.11.2 on Solaris. We are running reports thru URL and it is working fine for PDF and HTML. When we specify the desformat as RTF it gives Segmentation Fault Core dumped. We have tried using rwcli60 thru command line and it g

  • Why do videos continue to stop and start on my MacBook Air?

    When I try to watch videos, like on You Tube, the videos will only play small sections at a time.  It won't play continuosly.

  • How do you know if someone blocked you?

    Ok so my friend and I have been texting and then we just stopped and it wouldn't let me send a iMessage it always says message failed but when i iMessage my other friends it works and i think he blocked me did he? And how do i tell because when i tex