3D repousse objects and linking / rotation question

In Photoshop CS5 Ext, I have 4 layers, each with a 3D repousse object on them. I want to somehow link them, so that I can rotate the object as a whole (or the camera), but also want to still be able to manipulate the objects separately (like rotate and position). Is there a way to do this in PS, or does this need to be done in another program like Flash? Tried unsuccessfully using merge 3D, linking, grouping...
Thanks,
John

Thanks Steve for the reply and screenshot.
I see that 3D panel will let me rotate, etc., but it doesn't look like I will be able to rotate objects separately using animation from the timeline, will it? That is another thing I forgot to mention that I want to do, is be able to animate (rotate and move) the objects separately.
Thanks,
John
From: SG... <[email protected]>
To: PSJK2011 <[email protected]>
Sent: Sunday, September 25, 2011 9:37 PM
Subject: 3D repousse objects and linking / rotation question
Re: 3D repousse objects and linking / rotation question created by SG... in Photoshop Windows - View the full discussion
Hi John,
Merging 3D layers should be what you want. When you tried this what failed? If it was that you could only transform all of the objects instead of each separate object, then you'll need to make sure you are using the appropriate 3D tool. The UI needs some work to make this a bit easier to discover.
There are 3D Mesh tools in the 3D panel that allow you to manipulate individual meshes, instead of the whole scene (3D Object tools).
http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-3937802-84277/176-600/3DMeshTo ll.png
regards,
steve
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3937802#3937802
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3937802#3937802. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in Photoshop Windows by email or at Adobe Forums
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • Create object and link to database in acrobat

    i am using visual studio and creating a C# application in .net. i am looking to allow users to open a pdf document and then use a custome symbols library to trace out objects on the pdf. the object i would like to attach to a database to extract the data from. is this possible

    Sorry, I don't understand what you want to do. Especially "trace out objects on the pdf" - what sort of objects and what do you mean by "trace out"?
    Also note that Acrobat is absolutely not for use on a server.

  • An object and its rotated copies

    I create a vertical line. Effects, distort and transform, transform, pivot on bottom of line 72deg 4copies OK. Gives me a star of 5 lines 72deg between each. Then I can't select and group them. Can only select the original line?

    That's correct behavior as it is an effect that is applied to the original but the original does not change.
    You can try this though,
    1 Make your line
    2 Go to Object>Transform
    3 Enter 72º for the angle with the same pivot and hit copy
    (Only one copy is made)
    4. Then hit Command D on the Mac and Control D on the PC three more times
    And you get this you can select all the lines with the using the shift key as you select each and then group them
    or leave then as separate lines for instance to color each line with different color. If you group them you canlways edit in isolation mode.

  • Leveraging cFolders Generic Objects and Object Categories

    When a new document is created in cFolders, e.g. by an external partner, and this document needs to be imported in SAP R/3 is it possible to enter all the related object links and characteristics up front in cFolders?
    Instead of adding all this data in SAP R/3 after importing the document.

    You could leverage object categories for the characteristics of the document. The class would be an object category, the characteristics fields within the object category.
    For the object links, either you create dedicated Generic Objects for the objects and link to instances of those in the object category maintenance for the document or you leverage only the object categories, but are only able to assign textual information for the objects.
    You would need to leverage the available cFolders APIs as well as classification and document (B)APIs for parsing and transfer of this information. This can be either in a stand-alone program or within the export/import transactions CFE02/CFI02 by leveraging the CFX_BI_EXPORT and CFX_BI_IMPORT BAdIs to additionally pass this information over.

  • Which BUs Object should I use for archiving and linking to SalesDocuments

    Hi,
    I want to archive documents and link them to SalesDocuments, but I don't know which BUsiness Object I should use. Special Ones like BUS2030, BUS2031,... or the general Type VBAK. If I use VBAK I have the problem, that when I archive manually all with VBAK linked documenttypes are proposed, so that I can't control, which documents are allowed to be linked with for instance CustomerQuotation or SalesOrder.

    Hello Marc,
    For Sales Order user object type as BUS2032
    Customer Quotation- BUS2031
    Customer Inquiry - BUS2030
    BUS2033          Customer complaint order
    BUS2034          Customer Contract
    BUS2035          Customer scheduling agreement
    BUS2051          Customer outline agreement
    BUS2094          Credit memo request
    Hope this will answer your question.
    -Thanks,
    Ajay

  • Question about multiple classes and Linked Lists

    Lets say you have 4 classes: LinkedList which is the main class, Node, Card, and Hand. im not putting any constructors yet
    The card class keeps track of a card such as a king of diamonds:
    public class Card {
    string suit;
    string rank;
    the node class has a Card object and another node object so it would be
    public class Node {
    Card c;
    Node next;
    the hand class keeps track of the users hand. This program will ask the user if they want to add, remove, print out the hand, or print out the score of the hand, I guess it would be like this
    public class Hand {
    Node head;
    The linkedlist class will contain all the methods for doing the above
    now my questions are. Lets say I want to add a card, so I would have to add a new Node which contains the card. If i wanted to access the new nodes card contents, lets call this node g, can i do, g.c.suit and g.c.rank in which this case c is the card object in Node. Also, these are not going to be nested classes, they are going to be 4 seperate classes, if I declare all variables as private will I need to extend the classes or not and if there is a better way, let me know. Thanks alot for all your help and previous help.

    here is an example of Card and Hand ...
    not saying its good design
    but it does work
    public class Cards {
    public static void main(String[ ] args) {
    Card c1 = new Card ("ace", "diamonds");
    Card c2 = new Card ("two", "spades");
    Card c3 = new Card ("three", "hearts");
    Hand a1 = new Hand ();
    a1.add(c1);
    a1.add(c2);
    a1.add(c3);
    System.out.println("\nshowing hand ...");
    a1.show();
    System.out.println("\ndeleting " + c2.num + " " + c2.suite);
    a1.del(c2);
    System.out.println("\nshowing hand ...");
    a1.show();
    } // main
    } // class
    class Hand exists in 3 states
    and is designed to be a chain of cards ...
    1. when class Hand is first created
       a. it has no card
       b. and no nextHand link
    2. when somecard is added to this Hand
       a. it has a card
       b. and the nextHand link is null
    3. when somecard is attempted to be added to this Hand
       and it already has a card
       then a nextHand is created
       and the somecard is added to the nextHand
       a. so the Hand has a card
       b. and the Hand has a nextHand
    class Hand {
    public Card acard;
    public Hand nextHand;
    public Hand () {
      acard = null;
      nextHand = null;
    public void add (Card somecard) {
      if (acard == null) {
        acard = somecard;
        return;
      if (nextHand == null) nextHand = new Hand();
      nextHand.add (somecard);
    delete this Hand by making this Hand
    refer to the next Hand
    thus skipping over this Hand in the nextHand chain
    for example, removing Hand 3 ...
    1  -  2  -  3  -  4   becomes
    1  -  2  -  4
    public void del (Card somecard) {
      if (acard == somecard) {
        if (nextHand != null) acard = nextHand.acard;
        else acard = null;
        if (nextHand != null) nextHand = nextHand.nextHand;
        return;
      nextHand.del(somecard);
    public void show() {
      if (acard == null) return;
      System.out.println(acard.num + " " + acard.suite);
      if (nextHand != null) nextHand.show ();
    } // class
    class Card {
    public String num;
    public String suite;
    Card (String num, String suite) {
      this.num = num;
      this.suite = suite;
    } // class

  • How IT Resource and Resource Objects are linked?

    Hi All,
    I am new to OIM product and learning the basics. I have 2 questions.
    I am not able to figure out how an "IT Resource" and "Resource Objects" are linked?
    We always link "Resource Objects" and "Process Definition". How "Process Definition" picks the values provided in "IT Resource"?
    Thanks in Advance
    Jatin

    Hi
    I don't think "IT Resource" and "Resource Objects" are anyway linked with each other.
    "IT Resource" is something where you specify all the resources in the system which are not meant to be provisioned to users. Like proxy server or Email server in your organization.
    "Resource Objects" is a place where you define all the resources that you provision to users.
    This is my understanding, which might be wrong. I think someone more experienced user can give better answer to this question.
    -Kiran Thakkar

  • Config JNDI and link to resource object name in WL10.0

    How to add a JNDI to JNDI tree and link to an object name in WebLogic? I am trying to like a commonj WorkManager to JNDI resource so the WorkManager can be used in client or j2ee application through JNDI lookup.
    Thanks,

    - Make sure you are using the latest build of WLS plugin.
    - Get the WeblogicBridgeConfigInfo output and check if the connection to wls servers is OK.

  • Links set as objects and text are lost

    Currently I am using Acrobat X (Trial) before purchasing it for my organisation. It seems that when I try to convert a Word 2003 document containing object and text links, most of them are being lost during the conversion to pdf using Acrobat X. I went through certain forums and found that this seems to be a known issue. Is there a workaround or a bug fix for these types of problems? Thanks in advance.

    I am using the PDF Plugin (icon in Word 2003). Still, most of the object links are getting lost. I am not printing directly to the PDF printer.

  • View link creation on two view objects, and both view objects are populated program(not from sql)

    I have master and detail VO , both views data is loaded in program. Now for show/hide feature, I create View Link Object and using one element from both child and master VO , View Link Object created properly.
    But I can not able to add that view link object into AM.
    Now because of that , I cannot say what is a instance name of that view link object.
    Hence getting following error  -- Invalid or missing view link. Please attach view link with the bean.
    Please can you provide some directions.

    I have master and detail VO , both views data is loaded in program. Now for show/hide feature, I create View Link Object and using one element from both child and master VO , View Link Object created properly.
    But I can not able to add that view link object into AM.
    Now because of that , I cannot say what is a instance name of that view link object.
    Hence getting following error  -- Invalid or missing view link. Please attach view link with the bean.
    Please can you provide some directions.

  • Question mark on quicktime videos and links

    Question mark on quicktime videos and links. Anyone have a clue about this one

    That video presentation is great for Mac OS, but not
    XP. Doesn`t happen on all sites, so is the problem my
    end or the other?
    What is exactly your problem?
    If you see a question when you visit a site where a QuickTime movie is embedded, there are possibilities. One is that there is a link made to the QuickTime, and QuickTime cannot access it. The second possibility which most people have is that you don't have an appropriate decoder for the QuickTime video. I only responded to the first case. And the second case is discussed several times a day.

  • Link Between Business Object and Transaction

    <b>How is Business Object linked to transactions?</b>
    For example, how is business object BUS2032 (Sales order) linked to transaction VA01 (Create sales order)?

    Hi Ben,
    I'm not sure that you link a business object and a transaction code explicitly. Normally in the business objects methods you have coded what transaction code should be called. Therefore if you use the methods of the business objects it then knows what transaction to call.
    Conversely on the workflow side you will find that down in the depths of the coding for VA01 (as an example) it calls workflow function modules and raises events. When doing so it provides the business object id and key to the business object (i.e. the sales order number). Indirectly I guess the change documents that are raised for most things in SAP like sales documents are uniquely identified and therefore can also be translated to the business object key (e.g. sales documents will have their own change document type).
    A brief example in my 4.6c system can be found in include LIEDPF4C in the form finsta_kontoauszug_buchen with a call to function SAP_WAPI_CREATE_EVENT. You see the the parameter "object_type" has a variable passed to it "objtype_finsta". If you drill back on objtype_finsta you see that is hardcoded to the value BUS4499.
    I guess you could say the developer of the business object knows what transaction codes the business object should use and the developer of the code in the transaction code knows what business objects he should be raising events for if necessary.
    Hope this helps.
    Regards,
    Michael

  • Why question marks instead of pics and links

    When I upload my iWeb page ti iPage the pics and links show up as question marks and the text is not sized as it was on the iWeb page. Is iWeb not compatible with iPage?
    Thanks

    See your other post :
    My upload is a mess
    Since you publish to a folder, iWeb's job is done.
    What you do with the files is now your responsibility.
    Anyway, iWeb is compatible with webservers.

  • As a user of Extract, I would like to have the ability to open/access assets and information contained within smart objects or linked layers. Is this possible?

    Problem:
    In Extract ( Extract for PSD ) a user is unable to access assets or information from smart objects or linked layers.
    Usage:
    Smart Objects/Linked Layers are useful for templated web workflows
    @Sectioning content allows for a holistic view with access to granular information
    Possible Solution(s):
    Could we create a link between to cloud files.
    Could a smart object or linked layer be expanded on upload
    Could we create a drop menu like the layer comps that includes related files

    Hello Martin,
    Our current support in Extract for Smart Objects includes showing them in the file, and using them on the backend when you request your layer(s) to be scaled while exporting (i.e., when scaling up, the highest quality image is used).  We also display the colors, fonts and gradients from the included Smart Objects in the Extract Styles panel.
    We have considered providing a way to open Smart Objects from within Extract, and could use some feedback from you on how this user experience would work best for you. Would you prefer option a) or b) below, and why?
    a) When opening a Smart Object, it opens in the current browser window, replacing your current view of the PSD.
    b) When opening a Smart Object, it opens in a new browser window, which receives focus (is the frontmost browser tab/window).
    Also, if you tried to open a Linked Smart Object when the linked file is not available, what would you expect to happen?
    Would you describe in more detail what you mean by: "Could a smart object or linked layer be expanded on upload?" and how you'd use this feature?
    Regards,
    brucebowman

  • Every time I try to get on youtube or netflix on safari all I'm getting is a white background and a lot of links and boxes with question marks in them, what is going on?

    Every time I try to get on youtube or netflix on safari all I'm getting is a white background and a lot of links and boxes with question marks in them, what is going on?

    Make sure your system software is up to date.
    Click the Apple  menu (top left in your screen) then click:  Software Update ...
    And try troubleshooting Flash. Uninstall then reinstall.
    http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,prob1=fnctn,prob2=game,

Maybe you are looking for

  • Oracle RAC on Solarais Configuration Issue

    Hi, We are trying to install Oracle RAC 10g R2 on Solaris 10. Following are the products 1=> Soalris 10 OS 2=> Sun Cluster 3.1 3=> Veritas Volume Manager 4=> Veritas Cluster File System Can i deploy Oracle RAC using the above listed Software. Here we

  • How to run toplink in english?

    I'm currently running windows in french. I just installed Toplink 10g and noticed that now mapping workbench is also working in french. I would like to run workbench in english. Do you know ho to do it? thanks in advance, Chris

  • Incoming Payment PLD_Problem

    Hi members, I have designed an PLD for Incoming Payment, but the PLD should show the Invoice Number and Amount  in PLD. I have linked RCT2 Table and document Number in that,But its not coming properly data gets repeated. Please kindly help me in this

  • Mini bridge in ID CS 6 - control for size of thumbnail, bottom of pane, missing

    Mini bridge in ID CS 6 is of course essential. Suddenly, the little control at the bottom of the Mini bridge pane, for control of thumbnail size, is missing.  See screen shot of the control here, when we can get it by (laboriously) re-starting. As so

  • Copy and paste a page ?

    Hi everybody, and sorry for my English I am creating a page with different file /folders. Dos anyone know how can I copy and paste a page I will use in a different folder, and later I just change the links thanks for your helps Jose Felix