Two objects claim ownership of UID: U15536 Class: TextFrame

I have a problem : When I try to save a project of Muse or attempt to modify it, the error " : U15536 Class: Two objects claim ownership of UID. TextFrame "
I have installed the version 2014.2 CC Muse
How I can fix it?
Thankyou.

My sincere apologies for the disconnect. I searched the [email protected] case system and found no messages from your e-mail address. Perhaps the file was sent using a file sharing service or from a different e-mail address? We sometimes receive files from sharing services that provide no return e-mail address and that have no other information to connect the sharing invite with a forum thread or customer, so we're left with no way to reconnect with the customer.
I'm personally far less active on the forums since the first of the year. My primary role on Muse has always been as a Developer. I've historically spent a lot of my own time and too much of my work time here on the forum, versus directly working on developing Muse. Since the first of the year, I'm redirecting my time to development. I'm no longer reading every message or checking forum traffic on a regular basis, so I didn't see you last two messages until now.
If you send your current .muse file to [email protected], I'll see that it gets repaired and returned in a timely fashion. If you send a second message with no attachment directly to me, [email protected], I'll confirm the message to [email protected] was received.
We very recently had a break through and determined the pattern of activity that can lead to this damage within a file. We have a fix currently in testing that will be included in the next release (in a few weeks).

Similar Messages

  • Two objects claim ownership of UID: U12933 Class: TextFrame

    I tried to copy and paste material from the Desktop "Events" page to the phone "Events" page and this error came up. It asked me to recover, I did and now it won't save and it says to contact Adobe Muse team. Here's what I'm getting..... Please help!!!

    Hi, i have the same problem, ones site i been doing crash whit a message like this. I been working whit it using the recuperation option but doing this can upload anything to BC. Please help me!!

  • Two objects claim ownership of UID:2119 Class TextFrame CRASH

    I have an issue where i tried to paste something from the home to the mobile page (text box) and now i can't save with out a crash. Luckily the application restores to the same point but, if i try to remove the frame muse crashes, if i duplicate the page and try to remove the mobile page with the frame, muse crashes.
    Do i  have to build a whole new site? Can this be fixed?
    Thanks!

    Hi,
    Please send the following folder (zipped) to [email protected] with ATTN:Abhishek in the subject and a link to this forum post.
    For Muse CC 2014.1 (the latest version)
    On Windows: %appdata%\com.adobe.AdobeMuseCC.2014.1\Local Store\Recovery. You can type this in the Path bar at the top of the Windows Explorer window
    On Mac: ~/Library/Preferences/com.adobe.AdobeMuseCC.2014.1/Local Store/Recovery. You can type this in the Go To Folder dialog (Shift+Command+G)
    If you are using an older version, please update the paths accordingly.
    Abhishek

  • Two objects claim ownership of UID: U3615 Class: Text Frame

    Hi guys,
    since i updated today i can't save my project file anymore. Getting an error when i try to save saying:
    Two objects claim ownership of UID: U3615 Class: Text Frame
    Is there a way to fix it or did i lose all my progress from today? That would be devastating.
    Greetings,
    Joern

    Please send us a copy of your .muse file at [email protected] and include a link to this thread. If it's too big for e-mail (>20 mb) you could use a service like Dropbox, Adobe SendNow, WeTransfer, etc. We'll repair and return.

  • Two objects claim ownership of UID: U70049 Class: Text Frame

    Hello I cannot save my file, error: Two objects claim ownership of UID: U70049 Class: Text Frame

    Please send us the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since no all services include it in the sharing invite they send.) Thanks.

  • Muse 2014.1 update crash "Two objects claim ownership of UID: U6665 Class: RectPageItem

    I updated and now I can't resave the older version. Please help, I need to get going asap.
    Thanks,
    Matt

    Actually, I know what's going on.  The problem is with all the text boxes containing images, being copied into phone version.  In other words; as long the images inside text boxes are in desktop version, they are okay but as soon these text boxes are copied into the phone version, it sets your muse to crash.
    To fix my problem, this is what I did:
    - I went back to earlier version when I had only desktop version (since muse wouldn't even allow me to delete phone version and crashed every time I attempted)
    - In desktop version; moved all the images out of the text boxes.
    - activated phone version
    - copied the content from desktop version into phone version and re-sized/re-arranged them as usual
    That's it.  Just make sure all the text boxes with images inside them, should not be copied into phone version.  You will need to strip out the image from all the text boxes BEFORE you copy them into phone version.
    Good luck and let me know if anyone finds this fix working for them.
    Shahid

  • Error: Two objects claim ownership of UID

    Hello there
    I need help desperately with a big job that now will not save because I am getting the above error message. Please help!

    This might help:two objects claim ownership of UID:2119 Class TextFrame CRASH

  • Error: Two Objects Claim Ownership UID: U675

    (Sorry my english, Im from Colombia)
    Hi, I got a big problem With Muse CC 2014.2.
    The last year i installed the Muse CC 2014.1 Trial, i created some pages and all was good. BUT today i had to use the new Muse CC 2014.2 because i have to use some "Mulib" files, So i installed the trial and continue working on a website created in Muse CC 2014.1, The problem is when i want so save the file (overwrite or a new name) i have a lot of errors, and i cant save because Muse shuts down.
    Two Objects Claim Ownership UID: U675 Class: RectPageItem
    Please Help! I need to fix this problem Now.
    Thanks to all.

    Hi,
    Could you please share your .muse file with us to investigate? Please email it to [email protected] If your file is greater than 20MB you can use something like Adobe SendNow or SendThisFile or Dropbox. Please do not forget to mention the link to this forum thread in your e-mail so that we can identify the file.

  • Allow to create, only two objects for a class

    Hi,
    This question is asked in my interview. In singleton concept only one object is created, likewise only two objects are created for a class.
    For that i have write a code like this,
    public class OnlyTwoObjects {
         private static OnlyTwoObjects a1;
         private static OnlyTwoObjects a2;
         public static int n = 0;
         public static OnlyTwoObjects getInstance() {
              if (a1 == null) {
                   a1 = new OnlyTwoObjects();
                   return a1;
              } else if (a2 == null) {
                   a2 = new OnlyTwoObjects();
                   return a2;
              } else if (n == 1) {
                   return a1;
              } else if (n == 2) {
                   return a2;
              return null;
    } But they told this is not good way to do this.
    I don't know how to do this, if any body knows kindly let me know.

    vijay wrote:
    But i will explain my code, in that code we are allowed to create only two objects, Maximum. Understood.
    suppose both objects are created, then i will ask which object you need first or second, this is decided using the variable n if it is 1 then it will return the first object and it is 2 it will return the second object. sorry i didn't explain this in my previous post.This is your approach. Is this the requirement as well? Is it necessary that the user decide on which instance (first or second) is returned?Even if it was the requirement that the user decides which instance (first or second) is returned, with the original proposed implementation, the user only gets to decide which instance after calling getInstance() twice. If he calls getInstance() with n=2 when a1 is still null, he still gets a1. If he calls getInstance with n=1 when a2 is still null but a1 is non-null, then he gets a2. As is, he always gets a1 on the first call, a2 on the second call, and after that gets null unless he has set n to 1 or 2. (This explanation ignores any multi-threading issues that may come into play. This explanation is for a single thread.)

  • Two objects created at the same time with the same hashcode

    We have this object with the following constructor:
    2010-06-24 00:10:31,260 [LoadBalancerClientSubscriber(3)(pid:24312)] INFO  com.intel.swiss.sws.netstar.application.caching.framework.data
    set.synchronizer.DatasetSynchronizer - Initializing dataset synchronizer for: [/nfs/iil/iec/sws/work/damar/ds_cama/tmp/ds_126631277304794
    /d81], i am com.intel.swiss.sws.netstar.application.caching.framework.dataset.synchronizer.DatasetSynchronizer@2ed3cae0
    2010-06-24 00:10:31,260 [LoadBalancerClientSubscriber(5)(pid:24315)] INFO  com.intel.swiss.sws.netstar.application.caching.framework.data
    set.synchronizer.DatasetSynchronizer - Initializing dataset synchronizer for: [/nfs/iil/iec/sws/work/damar/ds_cama/tmp/ds_126631277304794
    /d31], i am com.intel.swiss.sws.netstar.application.caching.framework.dataset.synchronizer.DatasetSynchronizer@2ed3cae0Note that two objects are created by different threads with exactly the same hash code. Any idea if/how this is possible?

    isocdev_mb wrote:
    The last part definitely suggests already that relying on uniqueness is incorrect. Hash codes are very often equal on distinct objects, viz. new String("java").hashCode == new String("java").hashCode(). Use a class level counter as suggested earlier.For that case we would of course expect the hashCodes to be equal, since the objects are equal. But even in the case of non-equal objects that don't override hashCode, you can still get the same value. Or, for that matter, non-equal objects that do override it. There are 2^32 possible hashCode values. There are 2^64 possible Long values. That means that there are 2^32 Longs that have a hashCode of 1, 2^32 Longs that have a hashCode of 2, etc.
    And for non-equal objects...
    package scratch;
    import java.util.Set;
    import java.util.Map;
    import java.util.HashMap;
    public class HashCodeIsNotUnique {
      public static void main(String[] args) throws Exception {
        Map<Integer, Integer> hashCodeCounts = new HashMap<Integer, Integer>();
        int numObjects = 10000;
        for (int i = 0; i < numObjects; i++) {
          Object obj = new Object();
          int hashCode = obj.hashCode();
          if (!hashCodeCounts.containsKey(hashCode)) {
            hashCodeCounts.put(hashCode, 0);
          hashCodeCounts.put(hashCode, hashCodeCounts.get(hashCode) + 1);
        for (Map.Entry<Integer, Integer> entry : hashCodeCounts.entrySet()) {
          int key = entry.getKey();
          int value = entry.getValue();
          if (value > 1) {
            System.out.println(key + " occurred " + value + " times");
    9578500 occurred 2 times
    14850080 occurred 2 times

  • How to add two objects on scene and how to rotate them?

    I am beginer on 3d. I am trying do write applet where are 3x3x3 rubic.
    My plans are to have 27 litle cubes. There are 6 flats (9 cubes in a flat) so i have six objects groups. My problem at this moment is that i cant find out how to make two objets. Each of this two objects consists from couple more litle objects. Some of litle objects can be in first and second big object. For example it can be two flats of rubic (corner).
    Is anybody have some examples or somehow to hepl me to find out.
    Thanks a lot

    I have code :
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.behaviors.mouse.*;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    import javax.media.j3d.*;
    import javax.vecmath.AxisAngle4f;
    import javax.vecmath.Color3f;
    import javax.vecmath.Vector3f;
    public class RubicApplet extends Applet implements MouseListener
         TransformGroup objRotate = null;
    public BranchGroup createSceneGraph(SimpleUniverse su,Canvas3D canvas)
         // Create the root of the branch graph
         BranchGroup objRoot = new BranchGroup();
         objRoot.setCapability(BranchGroup.ALLOW_DETACH);
    Transform3D transform = new Transform3D();
         transform.setRotation(new AxisAngle4f(.5f,1f,1f,.5f));
    BoundingSphere behaveBounds = new BoundingSphere();
    // create Cube and RotateBehavior objects
    objRotate = new TransformGroup(transform);
    objRotate.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    objRotate.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    objRotate.setCapability(TransformGroup.ENABLE_PICK_REPORTING);
    // Colors
    Color3f gray = new Color3f(0.2f,0.2f,0.2f);
    Color3f red = new Color3f(1.0f,0.0f,0.0f);
    Color3f white = new Color3f(1.0f,1.0f,1.0f);
    Color3f yellow = new Color3f(1.0f,1.0f,0.0f);
    Color3f green = new Color3f(0.0f,1.0f,0.0f);
    Color3f blue = new Color3f(0.0f,0.0f,1.0f);
    Color3f purple = new Color3f(1.0f,0.0f,1.0f);
         // Object possition
    float x=-0.5f;
    float y=-0.5f;
    float z=-0.5f;
    objRoot.addChild(objRotate);
         // colors for: back, front, right, left, bottom, top
    Color3f[] myColors0 = {white,gray,gray,red,blue,gray};
    RCube cube1 = new RCube(myColors0,new Vector3f(x-1,y-1,z-1));
         // colors for: back, front, right, left, bottom, top
    Color3f[] myColors1 = {gray,gray,gray,red,blue,gray};
         RCube cube2 = new RCube(myColors1,new Vector3f(x-1,y-1,z+1));
         // colors for: back, front, right, left, bottom, top
    Color3f[] myColors2 = {gray,yellow,gray,red,blue,gray};
         RCube cube3 = new RCube(myColors2,new Vector3f(x-1,y-1,z+3));
    // colors for: back, front, right, left, bottom, top
    Color3f[] myColors3 = {white,gray,gray,red,gray,gray};
         RCube cube4 = new RCube(myColors3,new Vector3f(x-1,y+1,z-1));
    objRotate.addChild(cube1);
    objRotate.addChild(cube2);
    objRotate.addChild(cube3);
    objRotate.addChild(cube4);
    MouseRotate myMouseRotate = new MouseRotate();
    myMouseRotate.setTransformGroup(objRotate);
    myMouseRotate.setSchedulingBounds(new BoundingSphere());
    objRoot.addChild(myMouseRotate);
    MouseTranslate myMouseTranslate = new MouseTranslate();
    myMouseTranslate.setTransformGroup(objRotate);
    myMouseTranslate.setSchedulingBounds(new BoundingSphere());
    objRoot.addChild(myMouseTranslate);
    MouseZoom myMouseZoom = new MouseZoom();
    myMouseZoom.setTransformGroup(objRotate);
    myMouseZoom.setSchedulingBounds(new BoundingSphere());
    objRoot.addChild(myMouseZoom);
    // Let Java 3D perform optimizations on this scene graph.
    objRoot.compile();
         return objRoot;
    public RubicApplet()
    setLayout(new BorderLayout());
    GraphicsConfiguration config =SimpleUniverse.getPreferredConfiguration();
    Canvas3D canvas3D = new Canvas3D(config);
    canvas3D.addMouseListener(this);
    add("Center", canvas3D);
    SimpleUniverse simpleU = new SimpleUniverse(canvas3D);
    BranchGroup scene = createSceneGraph(simpleU,canvas3D);
         simpleU.getViewingPlatform().setNominalViewingTransform();
    simpleU.addBranchGraph(scene);
    public static void main(String[] args)
    Frame frame = new MainFrame(new RubicApplet(), 600, 600);
         public void mouseClicked(MouseEvent e)
         public void mouseEntered(MouseEvent e)
         public void mouseExited(MouseEvent e)
         public void mousePressed(MouseEvent e)
         public void mouseReleased(MouseEvent e)
    I need to rotate with some event two cubes and with some other event rotate three cubes

  • Two objects moving around with mouse

    I'm making a catching game and I only wanted the falling objects hit certain area on my catcher. My catcher is a girl with mouth open and I wanted the falling objects to hit only the mouth, not any other parts of her body like arms. So I made two objects, the full girl and just the mouth. How do I make the two objects (movieclips) move around with the mouse?
    I tried to embed one object into another but it didn't work....
    This is actionscript I wrote so far:
    package {
        import flash.display.*;
        import flash.events.*;
        import flash.text.*;
        import flash.utils.Timer;
        import flash.utils.getDefinitionByName;
        public class CatchingSkittles extends MovieClip {
            var girlmouthfront:GirlMouthFront;
            var girlmouth:GirlMouth;
            var nextObject:Timer;
            var objects:Array = new Array();
            var score:int = 0;
            const speed:Number = 7.0;
            public function CatchingSkittles() {
                girlmouthfront = new GirlMouthFront();
                girlmouthfront.y = 258.00;
                addChild(girlmouthfront);
                setNextObject();
                addEventListener(Event.ENTER_FRAME, moveObjects);
            public function setNextObject() {
                nextObject = new Timer(1000+Math.random()*1000,1);
                nextObject.addEventListener(TimerEvent.TIMER_COMPLETE,newObject);
                nextObject.start();
            public function newObject(e:Event) {
                var goodObjects:Array = ["Red","Purple","Yellow","Orange","Green"];
                if (Math.random() < .5) {
                    var r:int = Math.floor(Math.random()*goodObjects.length);
                    var classRef:Class = getDefinitionByName(goodObjects[r]) as Class;
                    var newObject:MovieClip = new classRef();
                    newObject.typestr = "good";
                } else {
                    r = Math.floor(Math.random()*goodObjects.length);
                    classRef = getDefinitionByName(goodObjects[r]) as Class;
                    newObject = new classRef();
                    newObject.typestr = "good";
                newObject.x = Math.random()*500;
                addChild(newObject);
                objects.push(newObject);
                setNextObject();
            public function moveObjects(e:Event) {
                for(var i:int=objects.length-1;i>=0;i--) {
                    objects[i].y += speed;
                    if (objects[i].y > 425) {
                        removeChild(objects[i]);
                        objects.splice(i,1);
                    if (objects[i].hitTestObject(girlmouthfront)) {
                        if (objects[i].typestr == "good") {
                            score += 5;
                        } else {
                            score += 5;
                        if (score < 0) score = 0;
                        scoreDisplay.text = "Score: "+score;
                        removeChild(objects[i]);
                        objects.splice(i,1);
                girlmouthfront.x = mouseX;

    Never mind. I got everything to work. Thanks for your help! I changed my code to:
    [code]
    public class CatchingSkittles extends MovieClip {
            var girlmouth:GirlMouth;
            var girlmouthfront:GirlMouthFront;
            var nextObject:Timer;
            var objects:Array = new Array();
            var score:int = 0;
            const speed:Number = 7.0;
            public function CatchingSkittles() {
                girlmouthfront = new GirlMouthFront();
                girlmouthfront.y = -49.00;
                girlmouth = new GirlMouth();
                girlmouth.y = 308.55;
                addChild(girlmouth);
                girlmouth.addChild(girlmouthfront);
                setNextObject();
                addEventListener(Event.ENTER_FRAME, moveObjects);
    [/code]

  • Two objects from one table

    My current setup is two tables and two objects with a one to one relationship between them, Object and ObjectMD (metadata).
    Not sure why my predecessors set it up like this but...that's how it is.
    The problem is that my Object table (and thus ObjectMD also) has reached 40 million rows and large joins between Object and ObjectMD are taking forever and are completely unnecessary.
    I want to import the ObjectMD data into the Object table and go forward with a single table. The problem is that the ObjectMD table has it's own java surrounding it and that code is used in way too many places to weed it out. I need to leave the Java object structure in place.
    I think I should be able to create both these objects from a single table, but I can not figure out the descriptor. My set method needs to be getMetaData().setMethod, but of course TL's reflection doesn't like this. I suppose I could create new methods in Object to get/set all these fields and just forward them to the real methods.
    How can I define descriptors to create two objects from a single table?

    What I decided on for my last problem was to use a method to setBar, and inside that method, set the Foo of the Bar.
    Here are my files for future reference:
    --------------------------------------Foo.java-------------------------------------
    public class Foo {
         public int id;
         public String first;
         public Bar bar;
         public void setBar(Bar newBar){
              if(newBar != null){
                   newBar.foo = this;
              this.bar = newBar;
    --------------------------------------Bar.java-------------------------------------
    public class Bar {
         public Foo foo;
         public String second;
    --------------------------------------Descriptors.java-------------------------------------
    public class Descriptors {
         public static void addDescriptors(Project project) {
    project.addDescriptor(Descriptors.buildFooDescriptor());
    project.addDescriptor(Descriptors.buildBarDescriptor());
    private static Descriptor buildFooDescriptor() {
    Descriptor descriptor = new Descriptor();
    //     basic information
    descriptor.setJavaClass(Foo.class);
    descriptor.addTableName("FOO");
    descriptor.setPrimaryKeyFieldName("ID");
    //     mappings
    DirectToFieldMapping directToFieldMapping;
    AggregateObjectMapping aggregateObjectMapping;
    //     id mapping
    directToFieldMapping = new DirectToFieldMapping();
    directToFieldMapping.setAttributeName("id");
    directToFieldMapping.setFieldName("ID");
    descriptor.addMapping(directToFieldMapping);
    //     first mapping
    directToFieldMapping = new DirectToFieldMapping();
    directToFieldMapping.setAttributeName("first");
    directToFieldMapping.setFieldName("FIRST");
    descriptor.addMapping(directToFieldMapping);
    //     bar mapping
    aggregateObjectMapping = new AggregateObjectMapping();
    aggregateObjectMapping.setAttributeName("bar");
    aggregateObjectMapping.setReferenceClass(Bar.class);
    aggregateObjectMapping.setSetMethodName("setBar");
    aggregateObjectMapping.dontAllowNull();
    descriptor.addMapping(aggregateObjectMapping);
    return descriptor;
    private static Descriptor buildBarDescriptor() {
    Descriptor descriptor = new Descriptor();
    // basic information
    descriptor.descriptorIsAggregate();
    descriptor.setJavaClass(Bar.class);
    //     mappings
    DirectToFieldMapping directToFieldMapping;
    //     second mapping
    directToFieldMapping = new DirectToFieldMapping();
    directToFieldMapping.setAttributeName("second");
    directToFieldMapping.setFieldName("SECOND");
    descriptor.addMapping(directToFieldMapping);
    return descriptor;
    ----------------------------------------Go.java------------------------------------
    public class Go {
         public static void main(String[] args) {
              if(args.length != 0){
                   throw new RuntimeException("Arguments are not supported");
              Project project = new Project();
              project.setName("fooBarProject");
              DatabaseLogin login = new DatabaseLogin();
         login.usePlatform(new Oracle9Platform());
         login.setDriverClassName("oracle.jdbc.driver.OracleDriver");
         login.setConnectionString("jdbc:oracle:thin:@nnn.nnn.nnn.nnn:nnnn:SERVICE");
         project.setDatasourceLogin(login);
         Descriptors.addDescriptors(project);
         Server server = project.createServerSession(2, 2);
         server.setLogLevel(oracle.toplink.sessions.SessionLog.FINE);
         server.login("schema", "password");
         Session session = server.acquireClientSession();
         UnitOfWork uow = session.acquireUnitOfWork();
         Foo fooBar = (Foo) uow.newInstance(Foo.class);
         fooBar.id = (int) (Math.random() * 10000);
         fooBar.first = "abcd";
         uow.commit();
         ExpressionBuilder builder = new ExpressionBuilder();
         Foo fooBarLoad = (Foo) session.readObject(Foo.class, builder.get("id").equal(fooBar.id));
         System.out.println("ID:" + fooBarLoad.id + " FIRST:" + fooBarLoad.first + " SECOND:" + fooBarLoad.bar.second );
         session.release();
         server.logout();
    ------------------------------------------------------------------------------------------

  • More space between two objects (using twitter bootstrap 3)

    I have two specific objects on my website and they are to close together. I would like to know if there is a way to push the a bit farther apart from eachother. They are in the same row. I was told to increase container width but i am not sure how to do this. The two objects are the image slider and the picture. Also, how would i push that row down. It's to close to the navbar.
    My code:
    <div class="container">
            <div class="row">
                    <div class="col-xs-9">
                            <ul class="bxslider">
                                    <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
      <li><img src="img/Day1.jpg" width="980" height="280"/></li>
                            </ul>
                    </div>
                    <div class="col-xs-3">
                            <div class="imagess"> <img src="http://rootforsite.azurewebsites.net/img/pic.jpg" class="img-responsive center-block"  /> </div>
                    </div>
            </div>
      <iframe width="640" height="360" src="http://www.youtube.com/embed/mb6SNytt5YI" frameborder="0" allowfullscreen></iframe>
    </div>
    My Website : http://rootforsite.azurewebsites.net/
    -Thanks

    Please do not duplicate your posts. It can be very confusing when two different persons answer the post in different ways.

  • Two Objects

    If I make two objects of the same class like:
    JMenu menu=new JMenu();
    JMenu menu= new JMenu("Menu 1");
    and then did compared them equal to each other, would they be the same object?
    And I'm actually have a program which makes multipe of the same object by calling
    new frames such a
    frame=new JFrame() and I'm wondering would each fram be different if set to .equals()?

    What I was asking b4 if both had the same name and created, would they both be the same object.Well they both can't have the same name. A variable can only point to one object at a time, so I don't understand your question.
    And you need two variables to compare objects. So given that you know if you assign the object to two different variable they will not be equal, I don't understand what you where asking.
    So thats why you create a post a SSCCE. To show code that does what you try to explain in english.
    Shouldn't you be less critical/deamaning and more positve/helpful? You still haven't learned to respond to postings when you receive suggestions as id evidenced by this posting two days ago:
    http://forum.java.sun.com/thread.jspa?threadID=5181968&messageID=9709306#9709306
    I've tried to give you the benefit of the doubt but you still refuse to do even the simplest things that have been asked of you.

Maybe you are looking for