How can two object have tow behaivors?

I have added 2 objects by using object loder, then i want to give these objects some behaivors . I did add transform , zoon in and zoon out. However , when i move one object , the other one is following to move .
is there any idea can seperate them . i mean if i use mouse to move one object , then just this object move. when i move another object , just that one move . Thank you so much for ur help .
regards
jojo

*     @(#)SphereMotion.java 1.38 02/10/21 13:55:06
* Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistribution in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* Neither the name of Sun Microsystems, Inc. or the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
* This software is provided "AS IS," without a warranty of any
* kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
* WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
* EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
* SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
* OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
* FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
* PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
* LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
* EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
* You acknowledge that Software is not designed,licensed or intended
* for use in the design, construction, operation or maintenance of
* any nuclear facility.
import java.applet.Applet;
import java.awt.*;
import com.sun.j3d.utils.applet.MainFrame;
import com.sun.j3d.utils.geometry.Sphere;
import com.sun.j3d.utils.universe.*;
import javax.media.j3d.*;
import javax.vecmath.*;
import java.util.Enumeration;
public class SphereMotion extends Applet {
// Constants for type of light to use
private static final int DIRECTIONAL_LIGHT = 0;
private static final int POINT_LIGHT = 1;
private static final int SPOT_LIGHT = 2;
// Flag indicates type of lights: directional, point, or spot
// lights. This flag is set based on command line argument
private static int lightType = POINT_LIGHT;
private SimpleUniverse u = null;
public BranchGroup createSceneGraph(SimpleUniverse u) {
     Color3f eColor = new Color3f(0.0f, 0.0f, 0.0f);
     Color3f sColor = new Color3f(1.0f, 1.0f, 1.0f);
     Color3f objColor = new Color3f(0.6f, 0.6f, 0.6f);
     Color3f lColor1 = new Color3f(1.0f, 0.0f, 0.0f);
     Color3f lColor2 = new Color3f(0.0f, 1.0f, 0.0f);
     Color3f alColor = new Color3f(0.2f, 0.2f, 0.2f);
     Color3f bgColor = new Color3f(0.05f, 0.05f, 0.2f);
     Transform3D t;
     // Create the root of the branch graph
     BranchGroup objRoot = new BranchGroup();
// Create a Transformgroup to scale all objects so they
// appear in the scene.
TransformGroup objScale = new TransformGroup();
Transform3D t3d = new Transform3D();
t3d.setScale(0.4);
objScale.setTransform(t3d);
objRoot.addChild(objScale);
     // Create a bounds for the background and lights
     BoundingSphere bounds =
     new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
     // Set up the background
     Background bg = new Background(bgColor);
     bg.setApplicationBounds(bounds);
     objScale.addChild(bg);
     // Create a Sphere object, generate one copy of the sphere,
     // and add it into the scene graph.
     Material m = new Material(objColor, eColor, objColor, sColor, 100.0f);
     Appearance a = new Appearance();
     m.setLightingEnable(true);
     a.setMaterial(m);
     Sphere sph = new Sphere(1.0f, Sphere.GENERATE_NORMALS, 80, a);
     objScale.addChild(sph);
     // Create the transform group node for the each light and initialize
     // it to the identity. Enable the TRANSFORM_WRITE capability so that
     // our behavior code can modify it at runtime. Add them to the root
     // of the subgraph.
     TransformGroup l1RotTrans = new TransformGroup();
     l1RotTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
     objScale.addChild(l1RotTrans);
     TransformGroup l2RotTrans = new TransformGroup();
     l2RotTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
     objScale.addChild(l2RotTrans);
     // Create transformations for the positional lights
     t = new Transform3D();
     Vector3d lPos1 = new Vector3d(0.0, 0.0, 2.0);
     t.set(lPos1);
     TransformGroup l1Trans = new TransformGroup(t);
     l1RotTrans.addChild(l1Trans);
     t = new Transform3D();
     Vector3d lPos2 = new Vector3d(0.5, 0.8, 2.0);
     t.set(lPos2);
     TransformGroup l2Trans = new TransformGroup(t);
     l2RotTrans.addChild(l2Trans);
     // Create Geometry for point lights
     ColoringAttributes caL1 = new ColoringAttributes();
     ColoringAttributes caL2 = new ColoringAttributes();
     caL1.setColor(lColor1);
     caL2.setColor(lColor2);
     Appearance appL1 = new Appearance();
     Appearance appL2 = new Appearance();
     appL1.setColoringAttributes(caL1);
     appL2.setColoringAttributes(caL2);
     l1Trans.addChild(new Sphere(0.05f, appL1));
     l2Trans.addChild(new Sphere(0.05f, appL2));
     // Create lights
     AmbientLight aLgt = new AmbientLight(alColor);
     Light lgt1 = null;
     Light lgt2 = null;
     Point3f lPoint = new Point3f(0.0f, 0.0f, 0.0f);
     Point3f atten = new Point3f(1.0f, 0.0f, 0.0f);
     Vector3f lDirect1 = new Vector3f(lPos1);
     Vector3f lDirect2 = new Vector3f(lPos2);
     lDirect1.negate();
     lDirect2.negate();
     switch (lightType) {
     case DIRECTIONAL_LIGHT:
     lgt1 = new DirectionalLight(lColor1, lDirect1);
     lgt2 = new DirectionalLight(lColor2, lDirect2);
     break;
     case POINT_LIGHT:
     lgt1 = new PointLight(lColor1, lPoint, atten);
     lgt2 = new PointLight(lColor2, lPoint, atten);
     break;
     case SPOT_LIGHT:
     lgt1 = new SpotLight(lColor1, lPoint, atten, lDirect1,
                    25.0f * (float)Math.PI / 180.0f, 10.0f);
     lgt2 = new SpotLight(lColor2, lPoint, atten, lDirect2,
                    25.0f * (float)Math.PI / 180.0f, 10.0f);
     break;
     // Set the influencing bounds
     aLgt.setInfluencingBounds(bounds);
     lgt1.setInfluencingBounds(bounds);
     lgt2.setInfluencingBounds(bounds);
     // Add the lights into the scene graph
     objScale.addChild(aLgt);
     l1Trans.addChild(lgt1);
     l2Trans.addChild(lgt2);
     // Create a new Behavior object that will perform the desired
     // operation on the specified transform object and add it into the
     // scene graph.
     Transform3D yAxis = new Transform3D();
     Alpha rotor1Alpha = new Alpha(-1, Alpha.INCREASING_ENABLE,
                    0, 0,
                    4000, 0, 0,
                    0, 0, 0);
     RotationInterpolator rotator1 =
     new RotationInterpolator(rotor1Alpha,
                    l1RotTrans,
                    yAxis,
                    0.0f, (float) Math.PI*2.0f);
     rotator1.setSchedulingBounds(bounds);
     l1RotTrans.addChild(rotator1);
     // Create a new Behavior object that will perform the desired
     // operation on the specified transform object and add it into the
     // scene graph.
     Alpha rotor2Alpha = new Alpha(-1, Alpha.INCREASING_ENABLE,
                    0, 0,
                    1000, 0, 0,
                    0, 0, 0);
     RotationInterpolator rotator2 =
     new RotationInterpolator(rotor2Alpha,
                    l2RotTrans,
                    yAxis,
                    0.0f, 0.0f);
     bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
     rotator2.setSchedulingBounds(bounds);
     l2RotTrans.addChild(rotator2);
     // Create a position interpolator and attach it to the view
     // platform
     TransformGroup vpTrans =
     u.getViewingPlatform().getViewPlatformTransform();
     Transform3D axisOfTranslation = new Transform3D();
     Alpha transAlpha = new Alpha(-1,
                    Alpha.INCREASING_ENABLE |
                    Alpha.DECREASING_ENABLE,
                    0, 0,
                    5000, 0, 0,
                    5000, 0, 0);
     axisOfTranslation.rotY(-Math.PI/2.0);
     PositionInterpolator translator =
     new PositionInterpolator(transAlpha,
                    vpTrans,
                    axisOfTranslation,
                    2.0f, 3.5f);
     translator.setSchedulingBounds(bounds);
     objScale.addChild(translator);
// Let Java 3D perform optimizations on this scene graph.
objRoot.compile();
     return objRoot;
public SphereMotion() {
public void init() {
     setLayout(new BorderLayout());
GraphicsConfiguration config =
SimpleUniverse.getPreferredConfiguration();
Canvas3D c = new Canvas3D(config);
     add("Center", c);
     u = new SimpleUniverse(c);
     BranchGroup scene = createSceneGraph(u);
// This will move the ViewPlatform back a bit so the
// objects in the scene can be viewed.
u.getViewingPlatform().setNominalViewingTransform();
     u.addBranchGraph(scene);
public void destroy() {
     u.cleanup();
// The following allows SphereMotion to be run as an application
// as well as an applet
public static void main(String[] args) {
// Parse the Input Arguments
     String usage = "Usage: java SphereMotion [-point | -spot | -dir]";
for (int i = 0; i < args.length; i++) {
if (args.startsWith("-")) {
if (args[i].equals("-point")) {
          System.out.println("Using point lights");
lightType = POINT_LIGHT;
          else if (args[i].equals("-spot")) {
          System.out.println("Using spot lights");
lightType = SPOT_LIGHT;
          else if (args[i].equals("-dir")) {
          System.out.println("Using directional lights");
lightType = DIRECTIONAL_LIGHT;
          else {
          System.out.println(usage);
System.exit(0);
     else {
          System.out.println(usage);
          System.exit(0);
     new MainFrame(new SphereMotion(), 700, 700);

Similar Messages

  • How can two users have separate libraries in iTunes?

    I have a library in iTunes for my 20 GB iPod, and now someone else in the house has an iPod shuffle. How is the shuffle installed into iTunes without overriding my library? Will it become obvious when the shuffle software is downloaded? Will I be forced to upgrade to the current version of iTunes (I've been avoiding that because when I previously upgraded I had endless problems with iTunes until the next version came out)? Thanks for any help!!
    spurvis

    Two iPods can update from the same library if you choose. The shuffle has two fill options, autofill which adds a random selection of songs or manual and you drag what you want to it. You can continue to manage your other iPod whatever way you want to. You can also create a separate User account for each person on your PC. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses. The iPod shuffle 2nd generation requires iTunes 7 so if you are still on 6 you'll need to update.

  • How can two users work on iMovie?  My husband is working on a memorial video for a family member who passed, I plan to edit but he had to take his computer to work.  I have the iMovie project on a zip drive.  How do I get it to open in my imovie?

    How can two users work on iMovie?  My husband is working on a memorial video for a family member who passed, I plan to edit but he had to take his computer to work.  I have the iMovie project on a zip drive.  How do I get it to open in my imovie? 

    You will need an external drive that is formatted as MAC OS EXTENDED (journaled).
    Move the Project, Events, and any photos and music to the external drive by following the instructions in this post.
    https://discussions.apple.com/docs/DOC-4141
    Be sure to use CONSOLIDATE MEDIA to get the photos and music. Then plug this drive into your computer and you will be able to edit.

  • RE: how can two Forte installtion communicate

    Hi,
    I have similar arrangement here but for "user acceptence test". However,
    may I remind you that when some objects/codes got checked out --> overwrite
    with new import --> integrate --> check out again. Some funny things ( I
    would say corruption ) may happen. I have one time that a normal old piece
    of code got compilation error and no one can find out why. The last resort
    is that I deleted everything and start from scratch again. Then everything
    works.
    Thus, I would suggest that from time to time, you should start out with a
    new repository instead of using it over and over again in this fashion.
    Maybe you can archive the old one as a version backup.
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Sent: Tuesday, February 16, 1999 1:10 AM
    To: 'Nick Delany'; 'Jim Rice'
    Cc: [email protected]
    Subject: RE: how can two Forte installtion communicate
    Nick...
    We have a similar situation here. We have about seven teams,
    each
    with their own repositories with interdependent code.
    Let me give you a simple scenario to explain how you can
    make it
    work:
    Problem
    --Team A is responsible for projects 1,2,3 and use repository RepA
    --Team B is responsible for projects 4,5,6 adn use repository RepB.
    --Project 2 is a supplier plan to project 5 and project 3 is a
    supplier plan
    to project 6.
    Solution
    --each repository is reponsible for some projects and these projects
    can be
    changed only in that repository.
    --each repository also has a workspace called "SlaveProjects"
    --This workspace has all the projects that are needed but are not
    developed
    by this team.
    --These projects are checked out so that no one else can change them
    -- so, RepB's slaveProjects workspace will have projects 2 and 3
    (and other
    projects they need).
    -- You can also password protect the slaveProjects workspace.
    -- When team A thinks they have a new working(or atleast compilable)
    "version" of projects 2 and 3, they can trigger of an fscript which
    will
    export the projects 1 and 2, possibly save it in version control.
    -- team B can then trigger another fscript which will pull the code
    from
    version control, import the projects 1 and 2 into RepB's
    slaveProjects
    workspace, integrate it and recheck everything out.
    Options
    -- you can get fancy with the scripts
    -- you can add the two scripts together to do the whole thing in one
    shot.
    However existense of many such repositories can cause integrate
    failures and
    you might not know where exactly it stopped. You need to log the
    output to
    keep track.
    -- you should probably make the second script actually create a
    temporary
    workspace, and import projects there and integrate. This is in case
    you had
    many other projects in the slaveprojects workspace that need not be
    integrated and rechecked out each time.
    -- you could create an application in forte or VB etc.. to make this
    process
    more sophisticated.
    Hope that gives you a start. Different locations definetly
    adds more
    complexity to this, but the concept should be the same. If you have
    more
    questions or need more help, I suggest you call Len Lopez at
    612-594-2539
    who has played around with this stuff a lot. He put in place a VB
    app that
    does most of the stuff for us and will probably make a presentation
    at the
    Forte Forum this year on the same topic.
    Good Luck!
    -Ravi Kalidindi
    Born Info Svcs Group.
    > -----Original Message-----
    > From: Nick Delany [SMTP:[email protected]]
    > Sent: Monday, February 15, 1999 10:27 AM
    > To: 'Jim Rice'
    > Cc: [email protected]
    > Subject: RE: how can two Forte installtion communicate
    >
    >
    > Jim,
    >
    > Rajiv may not be referring to scenario 1, but I'm involved in
    something
    > like
    > that.
    > We're a bi-located team, and while we are trying to split up the
    work to
    > minimise the geographical dependancies, I'd be interested in
    anything you
    > might have to say about the best way to share code/repositories.
    >
    > Nick
    >
    > -----Original Message-----
    > From: Jim Rice [mailto:[email protected]]
    > Sent: 08 February 1999 22:38
    > To: Rajiv Srivastava
    > Cc: [email protected]
    > Subject: Re: how can two Forte installtion communicate
    >
    >
    > Rajiv,
    >
    > Can you elaborate ? I can see your questions leading toward at
    least the 3
    > following scenarios....
    >
    > 1. Are you asking about 2 different independent developer groups
    which
    > have
    > only the internet as a possible connection pipe between them,
    > or
    > 2. Are you asking about 2 deployed applications which are the same
    > application but deployed to environment production1 and redeployed
    to
    > environment production2
    > or
    > 3. Are you asking about 2 deployed applications whic are different
    > applications and each is deployed to either
    > 3a. a common deployment environment using the same
    "Forte_NS_ADDRESS"
    > 3b. two seperate deployment environements using the different
    > "Forte_NS_ADDRESS" and therefore may even be on sepearte LAN/WAN's
    >
    > -Jim
    >
    > At 11:33 AM 2/8/99 , Rajiv Srivastava wrote:
    > >Can somebody tell me that what r the possible way where two
    different
    > >independent Forte Installation can communicate to each other.
    > >and share certain the information.
    > >
    > >thanking you in anticipation.
    > >
    > >Rajeev
    > >
    > >-
    > >To unsubscribe, email '[email protected]' with
    > >'unsubscribe forte-users' as the body of the message.
    > >Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > >
    > Jim Rice mailto:[email protected]
    > Partner ConCall @ Feb 17
    > http://www.forte.com/events/frameset_partners.html
    > Forte Usr Mtg @ May9-12 http://forum99.forte.com
    > Partner Tech Specialist Work#: 301-721-1910
    >
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    I have similar arrangement here but for "user acceptence test". However,
    may I remind you that when some objects/codes got checked out --> overwrite
    with new import --> integrate --> check out again. Some funny things ( I
    would say corruption ) may happen. I have one time that a normal old piece
    of code got compilation error and no one can find out why. The last resort
    is that I deleted everything and start from scratch again. Then everything
    works.
    Thus, I would suggest that from time to time, you should start out with a
    new repository instead of using it over and over again in this fashion.
    Maybe you can archive the old one as a version backup.
    Regards,
    Peter Sham.
    -----Original Message-----
    From: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Sent: Tuesday, February 16, 1999 1:10 AM
    To: 'Nick Delany'; 'Jim Rice'
    Cc: [email protected]
    Subject: RE: how can two Forte installtion communicate
    Nick...
    We have a similar situation here. We have about seven teams,
    each
    with their own repositories with interdependent code.
    Let me give you a simple scenario to explain how you can
    make it
    work:
    Problem
    --Team A is responsible for projects 1,2,3 and use repository RepA
    --Team B is responsible for projects 4,5,6 adn use repository RepB.
    --Project 2 is a supplier plan to project 5 and project 3 is a
    supplier plan
    to project 6.
    Solution
    --each repository is reponsible for some projects and these projects
    can be
    changed only in that repository.
    --each repository also has a workspace called "SlaveProjects"
    --This workspace has all the projects that are needed but are not
    developed
    by this team.
    --These projects are checked out so that no one else can change them
    -- so, RepB's slaveProjects workspace will have projects 2 and 3
    (and other
    projects they need).
    -- You can also password protect the slaveProjects workspace.
    -- When team A thinks they have a new working(or atleast compilable)
    "version" of projects 2 and 3, they can trigger of an fscript which
    will
    export the projects 1 and 2, possibly save it in version control.
    -- team B can then trigger another fscript which will pull the code
    from
    version control, import the projects 1 and 2 into RepB's
    slaveProjects
    workspace, integrate it and recheck everything out.
    Options
    -- you can get fancy with the scripts
    -- you can add the two scripts together to do the whole thing in one
    shot.
    However existense of many such repositories can cause integrate
    failures and
    you might not know where exactly it stopped. You need to log the
    output to
    keep track.
    -- you should probably make the second script actually create a
    temporary
    workspace, and import projects there and integrate. This is in case
    you had
    many other projects in the slaveprojects workspace that need not be
    integrated and rechecked out each time.
    -- you could create an application in forte or VB etc.. to make this
    process
    more sophisticated.
    Hope that gives you a start. Different locations definetly
    adds more
    complexity to this, but the concept should be the same. If you have
    more
    questions or need more help, I suggest you call Len Lopez at
    612-594-2539
    who has played around with this stuff a lot. He put in place a VB
    app that
    does most of the stuff for us and will probably make a presentation
    at the
    Forte Forum this year on the same topic.
    Good Luck!
    -Ravi Kalidindi
    Born Info Svcs Group.
    > -----Original Message-----
    > From: Nick Delany [SMTP:[email protected]]
    > Sent: Monday, February 15, 1999 10:27 AM
    > To: 'Jim Rice'
    > Cc: [email protected]
    > Subject: RE: how can two Forte installtion communicate
    >
    >
    > Jim,
    >
    > Rajiv may not be referring to scenario 1, but I'm involved in
    something
    > like
    > that.
    > We're a bi-located team, and while we are trying to split up the
    work to
    > minimise the geographical dependancies, I'd be interested in
    anything you
    > might have to say about the best way to share code/repositories.
    >
    > Nick
    >
    > -----Original Message-----
    > From: Jim Rice [mailto:[email protected]]
    > Sent: 08 February 1999 22:38
    > To: Rajiv Srivastava
    > Cc: [email protected]
    > Subject: Re: how can two Forte installtion communicate
    >
    >
    > Rajiv,
    >
    > Can you elaborate ? I can see your questions leading toward at
    least the 3
    > following scenarios....
    >
    > 1. Are you asking about 2 different independent developer groups
    which
    > have
    > only the internet as a possible connection pipe between them,
    > or
    > 2. Are you asking about 2 deployed applications which are the same
    > application but deployed to environment production1 and redeployed
    to
    > environment production2
    > or
    > 3. Are you asking about 2 deployed applications whic are different
    > applications and each is deployed to either
    > 3a. a common deployment environment using the same
    "Forte_NS_ADDRESS"
    > 3b. two seperate deployment environements using the different
    > "Forte_NS_ADDRESS" and therefore may even be on sepearte LAN/WAN's
    >
    > -Jim
    >
    > At 11:33 AM 2/8/99 , Rajiv Srivastava wrote:
    > >Can somebody tell me that what r the possible way where two
    different
    > >independent Forte Installation can communicate to each other.
    > >and share certain the information.
    > >
    > >thanking you in anticipation.
    > >
    > >Rajeev
    > >
    > >-
    > >To unsubscribe, email '[email protected]' with
    > >'unsubscribe forte-users' as the body of the message.
    > >Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > >
    > Jim Rice mailto:[email protected]
    > Partner ConCall @ Feb 17
    > http://www.forte.com/events/frameset_partners.html
    > Forte Usr Mtg @ May9-12 http://forum99.forte.com
    > Partner Tech Specialist Work#: 301-721-1910
    >
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    > -
    > To unsubscribe, email '[email protected]' with
    > 'unsubscribe forte-users' as the body of the message.
    > Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • HT5177 How can two people edit the same FCPX file? One company, so both people/computers share the same license. Example: I work on revision A and my boss takes it and makes revision B and gives it back to me using two separate computers.

    How can two people edit the same FCPX file? One company, so both people/computers share the same license. Example: I work on revision A and my boss takes it and makes revision B and gives it back to me using two separate computers.

    Have the project, events and media on one drive which is common to both macs.
    You can download FCP X to both macs using the same Apple ID that it was purchased with.
    Andy

  • How can two apple id,s use same itunes software on same computer, how can two apple id,s use same itunes software on same computer

    how can two family members use same itunes download with two different apple id's? how do you change user within itunes?

    Both accounts can be authorised on the same iTunes (Store > Authprise This Computer), but only one account can be signed in at a time for downloading or purchasing content - if you want to purchase or download with the other id then you'll need to sign out of the current one (Store > Sign Out) and then sign in with the other one (Store > Sign In)
    You can also have your own separate iTunes libraries on the same computer : http://support.apple.com/kb/HT1495

  • How can store object in LDAP

    How can store object in LDAP?please give one example

    Hi,
    I read the book , LDAP programming with Java , it has the description about how to write
    java object into the LDAP server. but its server is Netscape server. By different vendor,
    I think that they may have different method about your question. You may reference your
    developer document for this question. Perhaps you need to know what its schema is,
    how to load its .ldif file into server(case in the book), how to read/write java object to the
    server.
    Or in the book, JNDI API Turtorial and Reference Building Directory-Enabled Java Applications,
    it also illustrates how to bind a java object to the LDAP server via JNDI. But it is just focus on
    the API part, not configuration.
    good luck,
    Alfred Wu

  • I have itunes on a mac with 2 users but the library only shows on the main user how can both users have the same library?

    i have itunes on a mac with 2 users but the library only shows on the main user how can both users have the same library?

    Hi,
    Have a Look at these Links on Home Sharing:
    http://support.apple.com/kb/HT4620
    http://support.apple.com/kb/HT3819
    Could be what you need...
    Cheers,

  • Can two Iphones have the same account/email address?

    Can two iphones have the same account/email address? I bought two phones-one for my wife and the other for myself. They are both under the same account /itunes account /email address-Would this cause a conflict with the two phones?

    No, as long as you want to share the same account for iCloud's services like Mail, Calendars, Contacts, Reminders, Notes, iCloud, Documents etc.
    I personally would create two accounts so that everyone could have and use  heir own mail account, address book, create meetings, reminders etc. without reading and deleting stuff of the other person.

  • TS3899 Can two people have the same email address and password on their phone?

    Can two people have the same email address and password on their phone?

    I guess so.    But the email content will mirror on both phones.
    If you are talking about your Apple ID and iCloud email, yes, it is possible, but again the phones will mirror.   You should not have the same Apple ID and iCloud both.  
    Why?
    If you explain the reason for the question we may have a solution that works for you.

  • How can I automatically have a new tab always be a copy of the current active tab?

    The add-on extension "NewTabURL" (by "sogame") provided the option I want and used for a number of years. But it stopped working when Firefox was updated to version 16.0. When I click for a new tab, all I get is a completely blank tab. How can I automatically have the new tab always be a copy of the current active tab?
    Can the extension "NewTabURL" be revised to work in version 16 and/or version 17? If not, how else can I get the new tab functionality that I desire? I can't seem to find any other extension that provides that functionality.
    Milt Beychok

    My trackball has 4 buttons and a scroll wheel. Each of the 4 buttons is programmable. The 4 buttons are normally pre-programmed for single-click, double-click, drag and right-click by simply pressing on them
    Each of the 4 buttons may be programmed to also have other functions. For example, I programmed "control/single-click" to produce a middle click. I could also have used "shift/single-click" or "alt/single-click" to produce the middle-click. Or I could have similarly programmed double-click or drag or right-click. The Kensington Expert Mouse is quite versatile ... once you get the hang of programming it.
    I have had it for about 4 years and I had never had the need to program one of them until you told me about using a middle-click.
    Milt Beychok

  • Two objects have joined together - how do I split them again?

    I have added two objects to a pdf, and they have mysteriously merged together. This is now causing me a real problem. I have tried deleting the text that is in the first object and recreating it, but Acrobat just joins the two objects together again!
    Am I missing something here? Why is this happening?
    Can I split the two objects again or do I have to do something else entirely?
    Thanks in anticipation
    Rob

    Ok, I think I see what happened. There are actually no permanent text
    objects in a PDF at all.
    What happens is that Acrobat looks at all the text on the page, where
    it is, and what is close. Then it decides how to split these up: what
    you see now seem to be text objects.
    So if you add two lots of text close together, they have no special
    identity, and will indeed seem to become one object.
    Aandi Inston

  • How swap two objects into a UILoader

    Hi.
    I'm taking a snapshot from a webcam and adding a frame around this snapshot.
    I add the snapshot before to load the frame from a file. How can I swap between those objects? because the frame appears at last and the snapshot appears infront. I wanna swap those in the way that the snapshot appears at last and then the frame.

    A UILoader (or any loader) can only hold/load one object, so I don't know how that fits into swapping two things into it.  If the frame is a movieclip, just use addChild(frameName) to have the frame move out front.

  • How can two people on different computers edit the same video

    I am working on a large project and need more than one person editing. How can I allow 2 or more people edit the movie we are working on. I have two windows 7 working on a network in CS6

    I'm sure large organisations benefit from larger discounts than I can find online, but at first glance it seems to me that Adobe Anywhere is going to need around $60K investment in hardware (windows 8 enterprise servers, Tesla K10 GPUs and media grid) before you even get a look at what Adobe will ask for in terms of Anywhere licenses, or how plugins etc will work (or not).
    And that's a minimum entry level system, clearly the big guys are going to spend a LOT more than this.
    Adobe Anywhere is (as I suspected when it was first announced) going to be out or reach for most people looking to share projects between a couple of remote editors, though I'm sure for some smaller companies it could easily pay for itself in reduced facilities costs over time.
    I guess we'll just have to continue the way we are for now... though frankly the repeated "conforming" is beyond a joke.  I still can't figure out why Premiere Pro seems to randomly decide it needs to reconform all the media so that I have multiple copies of the conformed files with incremental numbers after them and have to wait 2 hours for some multicam sequences to be even mildly editable because one of it's files is last in line to be done.   So we end up transcoding everything to a 32bit float audio which totally undermines the concept of editing natively. < sigh >  FCPX doens't need to do this, so why does Premiere Pro?

  • Rip off!  How can they not have stuff like the beatles?!?!?

    Certain artists like John Lennon are not available. What a gyp! Why would I want to use this service? How can I get around this?

    Actually, Michael Jackson and Sony both own a share of the beatles catalog. Jackson did purchase the catalog back in the early 1980s, but when he went into debt some years ago, he leveraged a percentage of his stake against his debt, effectively giving Sony the power over that part of the catalog (as we know, this guy is always in debt).
    What Sony really wants is to buy-out the remaining part of the catalog, which would get Jackson out of debt and back on easy street, but Jackson doesn't want to part with it, he feels it "has special meaning".
    This has to be the only billionaire I know that is always in debt (well maybe Trump too). This guy had everything in the 1980s, and he let it slip away on account of his fascination with little boys.
    The odd question I have is why couldn't McCartney and Ono put aside their differences early on and buy the catalog. They were in talks, but for some reason the talks broke down, who knows the whole truth. It would actually be nice for one of the actual band members to own their own music. What a change that would be.
    Slowly, Apple Corps has regained their presence in control of the Beatles name, after starting out for a decade (or two) not really doing anything. Now they make tens of millions (maybe more) each year off the Beatles. This money should go into a fund to try to regain the rights to those songs.
    Sony doesn't really like Apple, that's no secret. So if they ever do gain control of all the Beatles stuff, I think they will make it hard on our Apple to get those songs, and probably they won't be $0.99, I can almost bet on that.
    I'd like to shove a rootkit up someones * at Sony!

Maybe you are looking for

  • Installation problem in intel baised soloris

    i tried to install Sun Soloris 7 on my pc but in the installation a problem occured like on this screen where you have to select the installation type . No matter what i select i got this error at first the screen scrolls for a sec then. Panic :Page

  • Mouse advice

    I've been using Apple's wireless mouse and keyboard with FCS, and am buying Shake, which requires a 3 button mouse, so I'd like some advice on a good mouse to use with it. Thanks in advance!

  • Loading XML file

    Hi All,            How to load xml file from backend.           i have 5 xml files in databse. i need to get the xml files from database sequentially .means i need to get in a for loop. how can i do this. any one can help? thanks Raghu

  • Problem with Embedding Flash Files

    So I'm trying to embed a video I made in flash. I took the file and out and put it into my sites folder and copied some code to place it as an object in my web page via an html snippet. The strange thing is that when I view the video at its URL: http

  • Help Desk Assign permission on mailboxes script

    Exchange sp3 Outlook 2010 sp1 I've come up with a script to give to the help desk that will save me from having to do lots of remedial work. The script gives the full access permission and send-as on a mailbox. This script works but for some reason I