Possible to creat a group of 3d objects and rotate each based on group's axis?

I need to create an extruded rectangle.  On the face of that rectangle needs to be another extruded rectangle.  I'd like to be able to rotate both seperate objects in 3d based upon the same axis.  Is this possible?  I've played around with the 3d effects and cant seem to get this to work.

An alternative can be: Make one rectangle and apply the Extrude effect. Drag it in the Symbols panel so as to make it a Symbol. Now draw another rectangle and apply the Extrude effect. In the Extrude dialog, use Map Art to map the symbol (of extruded rectangle).
If you want to rotate them both along the same axis, either open the Appearance panel and change the already applied Extrude effect to rotate , or,
Edit the symbol and rotate as required (this will reflect in the the whole doc) and rotate the another rectangle separately using Rotate tool.
I hope it helps.

Similar Messages

  • Is it possible to create new GROUPS in the Contacts of I phone?

    Does anyone know if one can create a group other than <all contacts>? It would be nice to be able to send out multiple text messages to several people by selecting one group for example. I used to do this on my blackberry and miss being able to do so on my i phone. Please let me know if I've just overlooked this ability. Thanks!

    You can create groups on your computer and they will sync to the iPhone when you sync. However, you will still have to manually add each person to the text message or email. At this time, there is no ability to add an entire group to a message.

  • How would i make an object and rotate it?

    ok, i'm trying to get java to make a graphics object, and then create an array of said objects (basically just a bunch of rectangles organized into rows/columns) with the end goal being that i be able to put this collection of rectangles into a JPanel and then move it around and rotate it without changing its dimensions (so each rectangle in the collection retains the same height and width but with a different placement/orientation angle )
    My java textbook (yes, college student) doesn't cover the Graphics2D stuff which SEEMS to be what i would use... but beyond that I'm finding the resources on the topic to be uniformly opaque. i think i just need some starting point to extrapolate from. could anyone reply me a crash course in the above...?

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Blocks extends JPanel {
        Block[][] blocks;
        int dx = 2;
        int dy = 2;
        public Blocks() {
            registerKeys();
            setFocusable(true);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            if(blocks == null) initBlocks();
            g2.setPaint(Color.red);
            for(int j = 0; j < blocks.length; j++)
                for(int k = 0; k < blocks[j].length; k++)
                    blocks[j][k].draw(g2);
        private void initBlocks() {
            int rows = 6;
            int cols = 3;
            Dimension d = new Dimension(200, 200);
            BlockMaker blockMaker = new BlockMaker(rows, cols, d);
            blocks = blockMaker.getBlocks();
        private void registerKeys() {
            getInputMap().put(KeyStroke.getKeyStroke("UP"), "UP");
            getActionMap().put("UP", up);
            getInputMap().put(KeyStroke.getKeyStroke("LEFT"), "LEFT");
            getActionMap().put("LEFT", left);
            getInputMap().put(KeyStroke.getKeyStroke("DOWN"), "DOWN");
            getActionMap().put("DOWN", down);
            getInputMap().put(KeyStroke.getKeyStroke("RIGHT"), "RIGHT");
            getActionMap().put("RIGHT", right);
        private void step(int x, int y) {
            for(int j = 0; j < blocks.length; j++)
                for(int k = 0; k < blocks[j].length; k++)
                    blocks[j][k].move(x, y);
            repaint();
        private Action up = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                step(0, -dy);
        private Action left = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                step(-dx, 0);
        private Action down = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                step(0, dy);
        private Action right = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                step(dx, 0);
        public static void main(String[] args) {
            Blocks blocks = new Blocks();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(blocks);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class BlockMaker {
        Block[][] blocks;
        int PAD = 20;
        public BlockMaker(int rows, int cols, Dimension size) {
            int w = (size.width  - (cols+1)*PAD)/cols;
            int h = (size.height - (rows+1)*PAD)/rows;
            blocks = new Block[rows][cols];
            for(int j = 0; j < rows; j++) {
                int y = PAD + j*(h + PAD);
                for(int k = 0; k < cols; k++) {
                    int x = PAD + k*(w + PAD);
                    blocks[j][k] = new Block(x, y, w, h);
        public Block[][] getBlocks() {
            return blocks;
    class Block {
        int x;
        int y;
        int w;
        int h;
        public Block(int x, int y, int w, int h) {
            this.x = x;
            this.y = y;
            this.w = w;
            this.h = h;
        protected void draw(Graphics2D g2) {
            g2.drawRect(x, y, w, h);
        protected void move(int dx, int dy) {
            x += dx;
            y += dy;
    }

  • I'm among about 140 people who received the same email. I want to include all of those addresses in a new group. Is it possible to create the group without having to manually enter each of the 140 addresses?

    I'm among about 140 people who received the same email. How can I create a new group for these people without manually entering all 140 addresses?

    Hi  SDGNOM,
    According to your description, my understanding is that you want to export  list to Excel with all columns in your SharePoint.
    For the SharePoint RPC protocol method, SharePoint export to excel will take the list id as well as the view id. So we cannot export list to Excel with all the columns without having to depend on the fields
    chosen in the default view.
    Reference:http://msdn.microsoft.com/en-us/library/ms478653.aspx
    For a workaround, you can achieve your demand via PowerShell. Here is a  template you can refer to:
    Param(
    [Parameter(Mandatory=$True)]
    [string]$webUrl,
    [Parameter(Mandatory=$True)]
    [string]$outPath
    $web = Get-SPWeb $webUrl
    write-host ("Path: " + $outPath)
    foreach($list in $web.Lists)
    $exportlist = $null
    $exportlist = @()
    $list.Items | foreach {
    $hash = $null
    $hash = @{}
    foreach($fld in $_.Fields ){
    Try {
    $hash.add($fld.Title, $_[$fld.Title])
    Catch [System.Management.Automation.MethodInvocationException]
    # Eating an error caused by duplicate column names.
    Finally
    #"End"
    write-host ("Exported: " + $_.Title)
    $obj = New-Object PSObject -Property $hash #@{
    $exportlist += $obj
    $expath = $outPath + '\' + $list.Title + '.csv'
    $exportlist | Export-Csv -path $expath #$oPath
    Reference:
    http://porchcode.blogspot.com/2013/04/exporting-sharepoint-list-items-to-csv.html
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • GROUP EMAILING LIST: Is it possible to create a group list to email

    how would you go about setting up a group contact list to email people instead of having to click on each name.....????   like if you wanted to forward something onto others.......didn't know if it could be done....
    Solved!
    Go to Solution.

    It is my understanding that you can't mix the email and SMS in a group.
    However--you can always add the SMS user to have an SMS email address... like
    [email protected]
    Here's a list:
    http://www.sms411.net/2006/07/how-to-send-email-to-phone.html
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is it possible to create a .pdf with BOTH color and grayscale images?

    Hello,
    I am in the final phases of a book project (4 years in the making!) that has both grayscale and color graphics. When I save as a .pdf via the Adobe PDF printer driver and distill, I end up with a .pdf that only has color graphics despite the fact that some images were grayscale to begin with. I'd like the grayscale images to remain graysale in the pdf. Is that possible?
    I am using older software framemaker 6.0 and acrobat & distiller 6.0 and am reluctant to change now, I will upgrade for a second edition, but not now.
    Thanks.

    Create the document in layers with the background on a seperate layer than the text. Export the PDF with"Create Acrobat Layers" selected (it will need to be at least version 1.5).
    Open the PDF in Acrobat, choose the background layer then Options>Properties>Initial State and under "print" choose "Never prints".

  • Is it possible to create an iPhoto slideshow with a menu for each child?

    I want the DVD to open with three photos: Karen's, Lori's and Amy's.
    When Karen clicks her photo, three more of her photos will appear: a baby photo, a school-age photo, and an adult photo. If she wants to watch a slideshow of her baby pictures, she will click the baby photo...
    Each daughter will have a similar setup - three slideshows for each of them. I'm not very picky about which theme will do the job.
    I have checked two books and the Apple tutorial and can't find a similar example.
    This is only my second slideshow. Any help will be appreciated!
    Flat Panel iMac (still love it) w/superdrive   Mac OS X (10.4.4)   iLife'06, 512 mb ram, 200 GB and 250 GB hard drives, wireless network

    Yes this can be done.
    First create the 9 slideshows you need in iPhoto......for each one, when finished use the "Send to iDVD" to create a QT movie of each slideshow......be sure to pick the music/playlist in iPhoto (unless you want to use iMovie for that and other things...). When iDVD opens, just close it without saving.
    Then open iDVD and choose a menu. As an example, choose "Portfolio Color". Retitle it to "Daughters" or whatever you want.
    Then click on the "+" sign at the lower left, and choose "add submenu" -do this two more times yo get three folders. Then click on the media button, and choose three photos to use as a button instead of the folder. Just drag each photo onto the folder. Rename each submenu to Karen, Lori and Amy. Click once on the text, wait, then click again and edit.
    Then double click on one submenu. Drag in the correct three iPhoto movies you exported using the "Send to iDVD" command. By default, they go to your home directory in the Movies folder. You can also find them using the Media tab in iDVD and look for Movies.
    Go back to the "Main" menu using the back arrow (double click on it).
    Repeat for the other two submenus.
    Hope this helps,
    John B

  • Possible to create local "update server" for iOS and apps?

    I use the software update server in OSX Server to locally cache updates, which speeds them up dramatically.
    Unfortunately, the app store is still fairly slow.
    Does anyone know if Apple has implemented the same sort of caching or update server for iOS devices? I think I read that there's a semi-transparent cache if you have an AirPort Extreme in your path to the Internet, but I don't and really couldn't even if I wanted to...
    Thanks.

    If apple would get thier crap together it is supposed to be there already. It is really ******* me off that there little to no effort from apple to get all of this working PRE OS release. Had this worked properly before the OS update schools across the country would probably not been brought to thier knees. I ended up having to block the entier apple domain to keep District Office online.
    Here is apples promise at the iOS launch.
    http://www.apple.com/ios/business/
    Caching Server 2 supports iOS 7.
    By caching purchased content and software updates on a local Mac running OS X Mavericks Server, Caching Server 2 speeds up the download and delivery of content through the App Store, Mac App Store, iTunes Store and iBookstore. Your users get faster downloads of content and updates to their iOS devices directly over your corporate network.

  • Is it possible to create a PDF form and send to a group of teachers and have it returned to different email recipeints

    Is it possible to create a PDF form for teachers and have it submitted by email to 3 different principals??

    Yes. As the target URL of your submit button enter something like this:
    mailto:[email protected],[email protected],[email protected]

  • Is it possible to create info record without material number

    Hi all,
    Is it possible to create infor record without material master and what is the importance of the field Info update in PO.
    Thank you for the help.

    Hi,
    1.Yes you can create Info record without material no. but you have create it for material group.Go to ME11 and only enter vendor ,Purchasing organization , and Plant don't enter material no.. and again enter maitain material gruop and require data for Material group.
    2.Info Update indicator -
    Info record update
        Determines whether the prices and conditions of this purchase order ite
        are suggested in future PO items.
    Use
        Selecting InfoUpdate causes one of the following situations to occur:
            -   If just one info record (with or without plant) exists, it is
                updated.
            -   If no info record exists and "plant condition requirement" was
                specified in Customizing, an info record with plant is created.
                Otherwise, an info record without plant is created.
            -   If two info records exist (that is, one info record with plant
                and one without plant) the info record with plant is updated.
    reward if helpful,
    Regards,
    Chetan.

  • Create confirmation for multiple cost objects PO in SUS

    Hi,
    Is it possible to create confirmation for multiple cost objects PO ( order type 'MA') in SUS ?
    We are going to implement SRM 7.
    Thanks & regards,
    Afandi-

    Hi All,
    First of all, thanks for your responses..
    Right, about the issue, what I explained here was that I am indeed assigning only one cost object: the WBS element. The issue was that even though I am assigning only the WBS element, it was also assigning the cost to the cost center by default. I did some R&D and found the solution to the issue (I was also asked to look for OSS notes but was not satisfied that this issue needs an OSS note to be applied so tried my solution). The issue was in table: T788M (allocate costs to variable account assignment). Here, I created an entry and called it USERGROUP_2 (just a random name) and assigned the variable cost objects (only the WBS and the Cost center) to be displayed. In the next step, I assigned this usergroup to the country in quesion feature (TRVCO). By doing this, I tell the system that only these cost objects are to be considered when an employee wants to assign the cost object. If the system sees that there is no value from the drop down to choose from, it picks up the default cost object (cost center). This was a simple issue that I had to rattle my brains on... but the solution I mention above worked like a hot knife going through butter...
    If you guys face this issue, please try this else feel free to get in touch with me on my number below.
    Once again, thanks for your responses.
    Best regards,
    Tanmay Dhingra
    +91 880 6666 606

  • Photoshop Help | Creating 3D objects and animations (Photoshop CS5 Extended)

    This question was posted in response to the following article: http://helpx.adobe.com/photoshop/using/creating-3d-objects-animations-photoshop.html

    Regarding "Create internal constraints from selections, work paths, or text" -- Is it possible to create a constraint on an object created using a preset such as a cylinder or wine bottle?

  • IS IT POSSIBLE TO  CREATE CUSTOM EVENT IN CONTENTDB?

    Hi,
    Is it possible to create a timely event in contentdb, which could trigger based on time like daily or weekly once? if yes
    then, can we register a custom bpel workflow to it? so that when event triggers
    then that workflow should also gets executed.
    thanks,
    Parkar

    Yes,
    basically you can create a custom agent that will run e.g. once a day.
    Regards
    - TS

  • Is it possible to create a WBS without Company code

    Hello,
    I am a SAP CRM guy and I am creating a WBS in PS system from CRM Campaigns.
    My question is whether its possible to create a WBSE without having a Comapny code?
    The reason we need this is because we are planning campaigns at a very high level and later we want to procure for these cmapaings at multiple company codes and cost centers through SRM. So we do not want to restrict the WBSE to one comapny code.
    Regards,
    Vicky

    Hi Ammar,
    The reason this scenario does not seem to be feasible is we have a one to one relationship between campaigns and WBSEs. Creating multiple WBSEs would translate as creating multiple campaigns, which we want to avoid at the first place as this increases the amount of data entry for planning and planning will become based on the procurement we is not the right way.
    However, atleast I am sure now that I cannot have WBSE without company code.
    Abdul,
    Now I am thinking whether its possible to create a Project instead of WBSE and then procure wrt project?
    I need to check the possibility of creating project from a campaign, but from the procument perspective, do you know if its possible to procure wrt project?
    Thanks & Regards,
    Vicky

  • Is it possible to create dynamic reports using iReports in netbeans ?

    Hi
    I want to know that is it possible to create dynamic reports using netbeans? Dynamic reports means based on user selection(for eg. say by selecting values from combo boxes) some query will be genatated and fetch the query result from data base and displayed results in iReports only my problem is i am working on Netbeans IDE and i have installed iReports as plugins in netbeans IDE. and i am not able to find any tutorial that show me how to work with iReports under netbeans IDE. and how to create dynamic reports in iReports. If u know any such tutorial then can you send me link plz...!
    Thanks

    What do you mean by "in Start Menu"? Do you mean Live tile? See https://msdn.microsoft.com/en-us/library/windows/apps/hh465403.aspx
    https://msdn.microsoft.com/en-us/library/windows/apps/dn468032.aspx
    Best Regards,
    Please remember to mark the replies as answers if they help

Maybe you are looking for

  • Funtional download link for Creative Suite Standard CS6 Mac Os

    Please provide me with a function download linke for Creative Suite Design Standard 6. The provided download link from this site https://helpx.adobe.com/de/x-productkb/policy-pricing/cs6-product-downloads.html does not work. I always get a "permissio

  • Error Message in iDVD with file Created in FCE4

    When I [attempt to] open My latest movie file on my computer I get control buttons (PLAY FFW RWD PAUSE ETC...) but no image in Quicktime. When I attempt to import it into the iDVD program, I get an error message: "Unsupported File Type : Broken Refer

  • IOT tablespace

    Hi All, Is it recommneded to put IOT (index organized tables in index tablespace or data tablespace? Is it possible to move just the index of the IOT in different tablespace? I am using Oralce 11g. Many Thanks.

  • Redo log data

    How to find the actual data redolog contains? My redo log is of 1 GB of each group. We have moved the redolog to newer disk, so i want to know the actual size of redolog, how much data it carries and how we can analyze/tune redolog to increase perfor

  • Disappearing entries and files in Desktop since last sync

    No device I have a m100 w/ 4.1.4 desktop OS running on XP Pro. I've noticed the desktop OS has been getting sluggish in opening/closing for the past few weeks. Also, some of my contacts have started to disappear. A few days ago after I'd sync-ed my m