Cant rotate a 3D object CC

This has happened to me a number of times. Photoshop CC prevents me from rotating the object, I can still move the camera around but not rotate. I cant even select the 3D object. Ive check and caps lock is not on.
Im using Photoshop CC on and Imac running Mountian Lion.
help

What object? What else? You need to provide more info and possibly screenshots. It could be choking on textures or something like that...
Mylenium

Similar Messages

  • Bug SDK-17114  flex.effects.Rotate - Selection Glow Is Rotated For All Objects (Not Just Effect.Target)

    Re: Bug SDK-17114 flex.effects.Rotate - Selection Glow Is
    Rotated For All Objects (Not Just Effect.Target) at
    http://bugs.adobe.com/jira/browse/SDK-17114.
    Looks like this bug was fixed as of yesterday - I'd like to know
    when there will be a patch available to users. I bought Flex 3 just
    in the last few weeks, so it would be nice if I could get a free
    patch. However, my main concern is how to do a workaround. I can't
    deliver my application with this problem, and if the patch is not
    available, I don't have an alternative. Is there a way to access
    the selection rectangle object and set its rotation
    explicitly?

    Thanks, Michel.
    I forgot to mention one point about copying shape layers into one shape layer:  when you initially use the Shape Selection tool to select a shape for cutting, make sure the option for the Shape Selection tool is set to "Add to Selection".
    MichelBParis wrote:
    The problem with Elements+ is that it has so many features you soon forget what it can give you !
    Truer words were never spoken! 
    Ken

  • Having trouble with multiple rotations around an objects poles

    Hey all, i am new to java 3d (only started coding today) but i have been coding in Java for a while..
    I am having a problem understanding how to perform the rotations i want to. I have read the majority of the literature i can find on performing these kinds of rotations. I realise that i need to have correctly linked nodes in the graph so that i am rotating around the correct points and i think i have accomplished this. However, i cannot get the system to rotate around the objects poles. To clarify, i can get the object to rotate around one of its poles (x , y, z) in some cases but trying to do multiple rotations causes problems.
    import javax.media.j3d.Appearance;
    import javax.media.j3d.BranchGroup;
    import javax.media.j3d.ColoringAttributes;
    import javax.media.j3d.PolygonAttributes;
    import javax.media.j3d.Transform3D;
    import javax.media.j3d.TransformGroup;
    import javax.vecmath.Color3f;
    import javax.vecmath.Vector3f;
    import com.sun.j3d.utils.geometry.ColorCube;
    import com.sun.j3d.utils.geometry.Cylinder;
    import com.sun.j3d.utils.universe.SimpleUniverse;
    public class TestRotation
         private TransformGroup objectTranslateGroup, objectRotationGroup;
         private Transform3D translate = new Transform3D(); private Transform3D  rotX = new Transform3D();
    private Transform3D rotY = new Transform3D()
    private Transform3D rotZ = new Transform3D();
         private double rotationX, rotationY, rotationZ, newRot = 10;
         private SimpleUniverse u;
         public TestRotation()
              // Create the root of the branch graph
              BranchGroup objRoot = new BranchGroup();
              rotationX = 0; //init rotations
              rotationY = 0;
              rotationZ = 0;
              ColorCube cube = new ColorCube(0.25f);
              Appearance x = new Appearance();
              Appearance y = new Appearance();
              Appearance z = new Appearance();
              x.setColoringAttributes(new ColoringAttributes(new Color3f(1,0,0),ColoringAttributes.SHADE_GOURAUD));
              y.setColoringAttributes(new ColoringAttributes(new Color3f(0,1,0),ColoringAttributes.SHADE_GOURAUD));
              z.setColoringAttributes(new ColoringAttributes(new Color3f(0,0,1),ColoringAttributes.SHADE_GOURAUD));
              Cylinder poleX = new Cylinder(0.02f, .75f, x); //RED
              Cylinder poleY = new Cylinder(0.02f, .75f, y); //BLUE
              Cylinder poleZ = new Cylinder(0.02f, .75f, z); //GREEN
              Transform3D poleXTransform = new Transform3D();
              Transform3D poleYTransform = new Transform3D();
              Transform3D poleZTransform = new Transform3D();
              poleXTransform.rotZ(Math.toRadians(90));
              poleZTransform.rotX(Math.toRadians(90));
              TransformGroup poleXTransformGroup = new TransformGroup(poleXTransform);
              TransformGroup poleYTransformGroup = new TransformGroup(poleYTransform);
              TransformGroup poleZTransformGroup = new TransformGroup(poleZTransform);
              poleXTransformGroup.addChild(poleX);
              poleYTransformGroup.addChild(poleY);
              poleZTransformGroup.addChild(poleZ);
              translate = new Transform3D();
              translate.setTranslation(new Vector3f(0,0,0)); //init position
              rotX.rotX(Math.toRadians(rotationX));
              rotY.rotY(Math.toRadians(rotationY));
              rotZ.rotZ(Math.toRadians(rotationZ));
              objectTranslateGroup = new TransformGroup();
              objectTranslateGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              objectRotationGroup = new TransformGroup();
              objectRotationGroup.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
              objectRotationGroup.addChild(cube); //add the object to the rotation group
              objectRotationGroup.addChild(poleXTransformGroup); //add the object to the rotation group
              objectRotationGroup.addChild(poleYTransformGroup); //add the object to the rotation group
              objectRotationGroup.addChild(poleZTransformGroup); //add the object to the rotation group
              objectTranslateGroup.addChild(objectRotationGroup); //add the rot group to translate group
              objRoot.addChild(objectTranslateGroup); //add to root
              u = new SimpleUniverse();
              u.getViewingPlatform().setNominalViewingTransform();
              u.addBranchGraph(objRoot);
              this.begin();
         private void begin()
              while(true)
                   //rotationX += newRot; //rotate slightly
                   rotationY += newRot;
                   rotationX += 0; //rotate slightly
                   //rotationY += 0;
                   rotX.rotX(Math.toRadians(rotationX));
                   rotY.rotY(Math.toRadians(rotationY));
                   rotZ.rotZ(Math.toRadians(rotationZ));
                   rotY.mul(rotX); //multiply rotations
                   rotZ.mul(rotY);
                   objectRotationGroup.setTransform(rotZ); //update
                   try {
                        Thread.sleep(300);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              new TestRotation();
    }As you can see the code is a full class so you can copy and paste it to run it... In the 'begin' method you will notice the variables that update the rotation, currently when the cube rotates on the y axis the cube is rotating around the viewers Y axis and not around the objects y pole. However, if you change the values so the cube is set to rotate around the X axis then it will treat the x axis as the objects x pole and not the viewers x axis. I presume this is because of the multiplication of the matrices.
    What i want to know is how can i set it so that if i say rotate around the y axis it rotates the cube around its y axis (as in the y pole) regardless of where the y pole is. Not only that but i need to be able to rotate around multiple axis ensuring that it is rotating around the objects poles correctly.
    The reason for this is that the object will be turned into an auv (underwater vehicle) fitted with thrusters which are going to turn the vehicle so no matter how the vehicle is positioned (facing up, upside down etc) the thruster always rotate around the same axis on the block.
    Hope this makes sense, sorry for the long post!!
    edd
    Message was edited by:
    edwardr

    Since the 2-Wire gateway is providing both modem and DHCP services, you would want to insure that the Time Capsule is not also configured to provide DHCP services as well.  If this were the case, that would mean two routers are trying to do the same thing on the same network. You only want one device on a network performing as a router.
    The reason for this is that a two router setup is likey to create IP address conflicts on the network, which likely may be your issue.
    To check, open Macintosh HD > Applications > Utiltiies > AirPort Utility
    Click on the Time Capsule icon, then click Edit
    Click the Network tab at the top of the next window
    Insure that the setting for Router Mode is set to Off (Bridge Mode)
    Click Update to save the correct setting
    Then power cycle the entire network by powering off all devices in any order that you want
    Wait a minute
    Start the 2-Wire gateway first and let it run a minute by itself
    Start the Time Capsule next the same way
    Continue starting devices the same way until everything is powered back up.
    Power off the entire network...all devices...and wait a minute

  • Cant rotate my display

    i just got a tx2 last week, it worked just fine at first, everything i wanted. now i cant rotate my display, ive tried doing the finger thing (thumb and forfinger and turning it) but i coudnt get that to work from the start. now even when i push the button on the side it still doesnt rotate. please someone help me, i really like this computer and i really dont want to have to send it back!

    I want you to try one thing for me please and if it does not you should call support.
    With the notebook set up in the standard Notebook orientation so you can use the keyboard after you open the lid...
    1. Disconnect the AC from the unit
    2. Remove the battery
    3. Move the power switch to the right and hold it there for 20 seconds
    4. Replace the battery and and AC, open the lid and power on the unit.
    Then I want you to go to HP.com and download the latest BIOS for your unit, you will need to know the product number and which OS version you have (32 bit or 64 bit Vista)
    http://www.hp.com/country/us/en/welcome.html#Suppo​rt
    You can see the bit version by right clicking on "Computer" and choosing proerties.
    If you download and install the latest BIOS and it still does not work you should call support.
    I am an HP employee
    Knowledge is power...Power to the people

  • Why cant I see several objects once I set my page online?

    Working on Dreamweaver CS6
    I have been testing the webpage on google chrome the whole time and all objects are visable and function correctly. But once I set my webpage online and open chrome threw the internet, I cant see some buttons I had. How can I fix this?

    On my html code I have this code, that calls the css where my buttons are:
    <link href="css/stylebuttons.css" rel="stylesheet" type="text/css">
    This is the code that is on a css sheet (from one of the buttons). It makes a hover button by using 2 diffrent images. Both images are saved in the same folder as shown below. I tried changing the location of the image to a closer folder and it still won't work.
    /* MyPageButtons */
    .animatedButton{
              font-family: Arial, sans-serif;
              text-decoration: none !important;
              background-color: #000000;
              padding-left: 40px;
              padding-right: 40px;
              height: 26px;
              line-height: 38px !important;
              display: inline-block;
              text-shadow: 0px 1px 1px #000;
              -webkit-border-radius: 5px;
              -moz-border-radius: 5px;
              border-radius: 5px;
              -webkit-transition: all 0.2s linear;
              -moz-transition: all 0.2s linear;
              -o-transition: all 0.2s linear;
              transition: all 0.2s linear;
              background-image: url(file:///C|/Users/Practico/Desktop/Karina/Intranet/imagenes/boton_turbus.png);
              width: 92px;
    .animatedButton:hover{
              background-color: #000000;
              margin-top: 5px;
              -webkit-box-shadow: inset 0px 1px 1px #000, 0 0px 0px 0px #000;
              -moz-box-shadow: inset 0px 1px 1px #000, 0 0px 0px 0px #000;
              box-shadow: inset 0px 1px 1px #000, 0 0px 0px 0px #000;
              background-image: url(file:///C|/Users/Practico/Desktop/Karina/Intranet/imagenes/boton_turbus2.png);

  • Rotation of an object

    Hi All,
    I am facing a problem while rotating an object in my application.
    Transform3D t3d = new Transform3D();
    t3d.set(new Vector3f(3.57f, 0.25f, 0.75f));
    TransformGroup tg = new TransformGroup(t3d);
    tg.addChild(new Box(width, height, length, obstacleApp));I have tried
    t3d.rotY(0.4f);
    but it is not postilion it in right place.
    I want to rotate this box with an angle to different direction
    please suggest me the way to do it.
    vivek

    tigerkumar wrote:
    Hi All,
    I am facing a problem while rotating an object in my application.
    Transform3D t3d = new Transform3D();
    t3d.set(new Vector3f(3.57f, 0.25f, 0.75f));
    TransformGroup tg = new TransformGroup(t3d);
    tg.addChild(new Box(width, height, length, obstacleApp));I have tried
    t3d.rotY(0.4f);
    but it is not postilion it in right place.
    I want to rotate this box with an angle to different direction
    please suggest me the way to do it.
    vivekyou have to update the transformGroup after you change the Transform3D
    Try this tg.setTransform(t3d);
    I haven't tried this code so it may have some errors.
    Venkat

  • Cant rotate a page in acrobat x

    Hi,
    In a 10 page document for example, 1 page happens to be oriented the wrong way. I want to rotate it. I highlight the page and using panel on the right hand side click rotate then select page or pages and then ok. But it does not rotate the page at all. I also notice that if I open a document and try rotate it using the menu at the top of the screen, it does rotate the full document but when I save the change and open the document again later it's back to it original way. That's 2 questions - I'm new to this forum thing so if I'm only allowed one question then the first one is more important. Thank you

    Hi Brian ,
    I would request you to please check the page direction and page orientation .
    Give a try with other options and compare the results.
    You may also check with some other PDF and check .
    Let us know if the issue still persists.
    Regards
    Sukrit Dhingra

  • How can I get an object to rotate around another object in Motion 5? Also, can I export on a transparent background to FCPX?

    Attempting to make one .png (its and arrow) rotate around a circlular logo which is also a .png. I need to them come out of Motion 5 for FCPX on a transpartent background. Anyone have any help for me. Stuck on this for hours now.

    Thanks Russ...
    I spend severale hours (new to Motion) trying to figure out how to set the orbit around the cicular logo. I was able to finally get it. I was missing the square under the orbit behavior that I could plug in the circular logo. lol... Once I got that set, I added to the align to motion behavior and set the drag to that behavior to get it all to rotate and work right. I then published as a generator to FCPX. After setting the background to transparent.
    Works like a charm. Just took most of my day trying to figure it out. lol.. But thats how you learn I guess.
    Thanks for the reply!

  • Cant Rotate First Page of ANY pdf

    I can no longer rotate the first page of ANY pdf. If I try to rotate all pages, every page but the first will rotate. If I try to rotate only the first page I get a message saying "Invalid Page Range". I've been using Acrobat for years and never had this issue come up.

    Try re-creating the PDF by printing through Adobe PDF printer.
    Open PDF in Acrobat -> Go to File -> Print -> Choose PDF Printer -> Save the file.
    Now the check if issue still exist on newly created file.

  • Rotating and Translating Objects with Collision Modifiers

    Hello
    Im trying to build a simple 3d scene. The idea being that a
    footballer walks up to a football and on detection of that
    collision, the football is translated or 'kicked.'
    Got the Collision Detection working using Collision
    Modifiers. Got it working so that it registers the collisions, what
    I havent gotten is how to translate the object (football) I have
    used the simple translate command but this seems to work on objects
    without collision modifiers.
    Does anyone have any work arounds?
    Thanks in Advance

    Hello
    Im trying to build a simple 3d scene. The idea being that a
    footballer walks up to a football and on detection of that
    collision, the football is translated or 'kicked.'
    Got the Collision Detection working using Collision
    Modifiers. Got it working so that it registers the collisions, what
    I havent gotten is how to translate the object (football) I have
    used the simple translate command but this seems to work on objects
    without collision modifiers.
    Does anyone have any work arounds?
    Thanks in Advance

  • Cant find BI Content Objects..

    Hi Friends,
    I am unable to find any SAP Delivered Objects under Business Content ( ex :Busines Content Cubes , ODS, InfoObjects , BC Reports...  etc)
    I can see only Technical Content Objects
    Its really urgent to me..  Do i need to do any Configurations  in BW after sucessfully Installing BW7.0
    Any inputs i really appreciated them
    Thanks,

    Hi Vikash,
    For BW7.0  , BI Content will be loaded while installating  the BW..
    we need not to load BI Content seperately ....
    Are you sure do we need to do any configurations or settings after finsihin the BW Installation
    Thanks,

  • Cant rotate text properly in Flash MX

    When I rotate my text in Flash with the transform tool, it will ONLY export out as a animated gif file not as a swf, or html. The text will appear missing. It looks fine in the fla file, now when I dont "transform" or rotate the text, it comes fine as a swf file. I also noticed the rotating tool in my properties is grayscaled out.
    Help.

    If you can explain how I could properly embed this, that would be cool but I dont think it's that. I've tried the other fonts in Flash and same thing. I'm also having actionscript problems too and I think It's my Flash software. I just think that it kind of weird that something your working on in the canvas is not outputting what you see and everything is connected right (that I'm aware of)
    Thanks.

  • HT1688 My photos are cloudy and you cant see the people/objects

    My iPhone 4s takes horrible photos.  The images are cloudy and half the time you can't see the objects/people.

    Have you checked the camera lens to make sure it is clean and the plastic that covered the lens for shipment is removed?  Does this only happen with flash pictures?  If it is in a case,  remove the iPhone from the case and take a flash picture and see if that makes a difference.  The hole for the camera on some of the cases aren't big enough and can cause problems.  Also some clear or light colored cases don't have a camera hole that is ringed in black.  This can cause fogging. 

  • Cant generate new URL() Object in Dashcode

    As the topic says i im not able to generate a new URL() Object.
    like:
    var url = new URL();
    in Dashcode it says that url is not declared why?

    Hello,
    Thx for the answer but I think I didnt told you why i need the fetch() method.
    The fetch method takes the data(e.g. html) and puts it in a string variable or into a file.
    I need this because I want to make a widget(I finished but one feature is missing) which opens a site and tells you how which trains or busses you need.
    My Problem is that this site needs detailed information and so you have to choose on the site.
    I want to put this choosing into my widget.
    As you recognized the idea is like Ajax.
    But i dont think that xmlhttprequest will work for my problem.
    Is there any other solutions?

  • My photo and video cant rotate something show top right corner lock simple

    please advise me how unlock

    Ensure the portrait orientation lock is off, if you still can't rotate photos &amp; video try resetting the iPhone by pressing and holding the sleep/wake button and the home button for 10-15 seconds until the Apple logo appears, ignore the red slider.  Then turn back on. You won't lose any data doing the reset.

Maybe you are looking for

  • Open Browser behavior question

    Hi, does anyone know if its possible to control the placement of the window that pops up using the open browser behavior. I'm doing a catalogue, and I would like that when you press a thumbnail the popup window pops up to a specified size to the left

  • Add counter in FTP receiver file adapter

    Hello, I have sen that in a File System (NFS) you can add a counter to the filename, but I don't found this possibility when I put File Transfer Protocol (FTP), I only see to add timestamp or message id. There is some possibility to add the counter i

  • I had my password in a different language but after the IOS7 update it's gone. What do i do to unlock my iphone?

    I can't open my phone anymore and im just lost.

  • .VOB for Quicktime X in Snow Leopard

    In Leopard I purchased the MPEG 2 and Pro upgrades for Quicktime. This allowed me to open files from DVD with the extension .VOB. I could play the file (with no audio) and that is all I wanted. I can longer do this with the new Quicktime in Snow Leop

  • Duplicate Logical Model

    Hello, I have a RPD common to the US and France, on France we have the identical database has that of US but the connection pool is different (user and MDP). Is - it possible of credit note in the same RPD, two layers of identical presentation which