3D shapes duplicated in same document using CS2

In a new blank document I used the pen tool to created a simple shape and then used the  Effect, 3D to make a 3D shape from it.
When I draw a second new shape on the same page, say a rectangle, it assumes the 3D properties of the first shape instead of a plain rectangle.
How can I stop this from happening?
Thanks!

yourself,
In the Appearance palette there is a toggle between New Art Maintains Appearance and New Art Has Basic Appearance.

Similar Messages

  • Fail Updating Document Using DI API in Form_Data_Update_Event

    Hi,
    B1 2007B PL14
    I have problem updating document using DI API in Form_data_Update_Event.
    I have made sure that beforeaction=false and actionsuccess=true (to me, this means that B1 has completed the update process), then my codes will be executed to update the same document using DI.
    However, I notice that when my codes is executed, the document form is still in "Update" mode, that this results in the system returning error message "another user-modified table (odbc-2039)
    Any suggestions?

    Hi Shahid,
    I am not sure what your question is. The code you pasted looks like the MatrixAndDataSources example that comes with the SDK. What are you trying to do?
    Thanks,
    Adele

  • How can I use two different page orientations in the same document?

    I am trying to have both portrait and landscape page orientations in the same document.  Pages doesn't seem to like this.  Is there a way?

    I tried to comment on another thread about this same issue, but the thread was closed.
    In the other thread; however, some asked why rotating one pages was necessary, and if they knew then maybe there would be reason to create the function.
    Well, I don't know about why anyone else needs it, but for me it's for the papers I have to write for my masters program. The professors like to have the rubric attached to the bottome of the document so they easily grade and keep things organized. They of course give directions on how to easily change the orientation of the last page in Word, but not all of use Word, or even want to use Word. Maybe I need to ditch Pages and go to Word? I'd really hate to do that!
    So, come on Apple, let's get this feature added, stat!

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • How do i get my team to all see the same say, ID, document using the cloud?

    how do i get my team to all see the same say, ID, document using the cloud?

    Adobe Max was a smoke and mirror show and they demonstrated "Folder Sharing" so we bought into it. Myself and 7 of my clients. After the Max show they turned it off like nobody would notice. Two weeks after they stopped the folder sharing feature they put a little notice that they had did this. Nice how they treat their loyal customers. Every month they charged us an extra $20 over a single account without the folder sharing. What good is "team work" if you can't share a folder of files. Sharing a single file at a time is a waste of time.
    After a year still no folder sharing but the same old story of "soon". Adobe is using the extra money they are "stealing" from paying clients to pay for this development. We are being forced to pay the extra money again for another year as there is no way to downgrade to a single user account. Adobe likes to use this as an excuse to continue to rob and steal from loyal user that have no choice but to deal with these crooks.
    My only suggestion is for new users not to buy the team account package. There marketing material is filled with misleading statements that gives the potential new customer the impression that they can work in teams, as if a team can  work sharing single files. This is a sign that Adobe is about the cash grab and not about the quality of software and the end user experience.

  • BUG REPORT: 2 JTextComponents using the same Document

    When 2 JTextComponents use the same Document they should show the same.
    However when you add them to JTabbedPane to 2 different tabs, one does not show the document correctly, until you resize the window.
    Compile and run the code example to see for yourself.
    If you append "<first message"> and "<second message>" the first tab will show the correct document:
    <first message>
    <second message>
    But if you then switch to the second tab (do not switch to it earlier), you will see:
    <first message><second message>
    <second message>
    Add some more messages to see the effect and then resize the window to see the problem dissappear magically.
    --> Code example <--
    package testproject;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    * @author Geoffrey
    public class TestProject extends JFrame implements ActionListener {
         public static void main(String[] args) {
              TestProject currentFrame = new TestProject();
              currentFrame.pack();
              currentFrame.setExtendedState(JFrame.MAXIMIZED_BOTH); // Optional
              currentFrame.setVisible(true);
         private JLabel label = new JLabel("Append 2 or more different messages and switch tab. "
         + "Resizing the window will solve the bug.");
         private JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.TOP,
                                                                                         JTabbedPane.WRAP_TAB_LAYOUT);
         private JTextField textField = new JTextField("<first message>");
         private JButton button = new JButton("Append message");
         private StyledDocument document = new DefaultStyledDocument();
         private JTextPane firstTextPane;
         private JTextPane secondTextPane;
         public TestProject() {
              super("TestProject");
              setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              // configure the components
              firstTextPane = new JTextPane(document); // Uses the same document as secondTextPane
              tabbedPane.add("Orginal tab", firstTextPane);
              secondTextPane = new JTextPane(document); // Uses the same document as firstTextPane
              tabbedPane.add("Click here after appending 2 different messages", secondTextPane);
              textField.addActionListener(this);
              button.addActionListener(this);
              // configure the layout and add the components
              Container contentPanel = getContentPane();
              GridBagLayout layout = new GridBagLayout();
              contentPanel.setLayout(layout);
    GridBagConstraints constraints = new GridBagConstraints();
              constraints.fill = GridBagConstraints.BOTH;
              constraints.insets = new Insets (10, 10, 10, 10);
              constraints.weightx = 1.0;
              constraints.weighty = 0.0;
              constraints.gridx = 0;
              constraints.gridy = 0;
              contentPanel.add(label, constraints);
              constraints.weighty = 1.0;
              constraints.gridy = 1;
              contentPanel.add(tabbedPane, constraints);
              constraints.weighty = 0.0;
              constraints.gridy = 2;
              contentPanel.add(textField, constraints);
              constraints.gridy = 3;
              contentPanel.add(button, constraints);
         public void actionPerformed(ActionEvent event) {
              String message = textField.getText();
              SimpleAttributeSet simpleAttributeSet = new SimpleAttributeSet();
              StyleConstants.setFontFamily(simpleAttributeSet, "Monospaced");
              StyleConstants.setForeground(simpleAttributeSet, Color.BLACK);
              try {
                   document.insertString(document.getLength(), message + "\n",
                                                      simpleAttributeSet);
              } catch (BadLocationException exception) {}

    duplicate of:
    Table Location Error Oracle and SqlServer
    closing and locking
    Ludek

  • When I use Word it hangs up and I have to Force Quit.  The same document that seems corrupt comes up with WOrd.  Any ideas?

    I recently coverted to Lion. When I tried to use Word, the document I loaded hung up andI had to force Quit Word.  Each time I try to open Word now, the same document comes up and I have to force quit. Any ideas?

    You should probably post your question on Microsofts own forums for thei Mac products as its their software you're having issues with:  http://answers.microsoft.com/en-us/mac

  • How to Restrict printing the document using IRM for a Single Document?Allow printing for some documents and restrict the printing for particular documents in same document library?

    Can we able to Configure the IRM in Document Level in SharePoint Document libraries?
    The document library contains multiple document sets , Can we restrict the printing according to document sets? Allow printing for some documents and restrict the printing for particular documents in same document library
     Is this possible?Please suggest.

    Yes, that can be done. But note that all administrators will have the same right to print, so you need to make sure the users are not administrators. You can include a macro to disable printing, but if the users disable macro, they can print the documents.
    Hence, there is no foolproof way to prevent printing documents. If you still need a foolproof security, PDF format provides password based security (viewing doesn't require a password) that can be implemented to prevent the document from printing,
    which doesn't require any special scripts and is tough.
    You can have a look at the following links:
    http://msdn.microsoft.com/en-us/library/office/ms458245(v=office.14).aspx
    http://msgroups.net/microsoft.public.word.docmanagement/prevent-printing-of-docum/91353
    http://www.go4sharepoint.com/Forum/prevent-printing-saving-documents-10150.aspx
    The following link explains about the security features in PDF. This is for information purpose only and not for promotion of any products:
    http://www.pdflib.com/knowledge-base/pdf-security/
    Balaji Kundalam

  • Using Same Document in Photoshop and Photoshop Extended

    We are a school that has the education version of Design Premium CS3, which incldes Photoshop Extended. We want to purchase a copy of Design Standard CS3.3, which includes regular Photoshop. Can we work on the same document or file (stored on server) with both programs?

    Yes. The programs are identical except for Extended's additional features.

  • PDF file size in relation to number of pages of the exact same document

    PDF file size of a document for one page is 28kb. PDF file size of a the same document for two pages (1st page and 2nd page are exact same document), also 28kb. Shouldn't it be 56kb??

    First of all, you can't use Adobe Reader to add, delete or duplicate pages in a PDF file (unless you use a template object), so you're either using Adobe Acrobat, or some other application entirely.
    The size of PDF files is not linear, ie if you have 1-page file and it's 1 MB, then duplicating it will results in a 2-page file of 2 MB, or a 10-page file of 10 MB. Many items in a PDF document only need to be saved once (such as font information, image information in some cases, etc.), so the change in size when adding additional pages is sometimes very small. At other times it can be very big, though. You can have a 100-page file that is 1 MB and then add a single page to it, with a new font perhaps, and the size will jump to 5 MB, just because that font is very large...

  • Difference in color within same document

    Hi,
    I am running into a peculiar problem within Illustrator CS4.
    I designed a logo and made another copy to change the shape a little bit.
    I like the color of the first logo more, but prefer the reshaped second logo.
    Here is the problem:
    The first logo has a color of 70% K. When I take the Hex (which is different, despite both having the same CMYK value) and paste into the revised logo, the color comes out different.
    I attached a picture that hopefully describes what I am running into.
    Any input?

    Hi Monika,
    I tried using the eyedropper. Same result.
    The problem still remains. Still CMYK (70% K only), but different shade of gray as well as different HEX#. Both shapes are in the same document (and should thusly carry the same color profile, right?).
    I took another picture and left the appearance pane as well as the transparency pane open.
    Here is another picture. I chose the eyedropper and picked the gray from the top logo and applied it into the box, then opened the color picker box to look at the values. This is the top red circle, going along with the top logo.
    I did the same with the bottom logo. Used the eyedropper to get the color our of the bottom logo to the gray box. Opened the color picker again and got a different HEX and different color of gray once I transfered the color.
    Is this making sense?
    Simplified--the same documents is giving me two different color outputs despite the same color value.
    SOMEONE NEEDS TO HAVE AN ANSWER!! ahhhh *head spinning*
    Thank you!!

  • Error while loading an XML document using a structured application

    Hi,
    I try to load an XML document using a structured application defined in the default structapps.fm
    My code is shown down, extracted from the FDK API code sample.
    Problem, I always have the same message :
    "Cannot find the file named e:\xml\AdobeFrameMaker10\file. Make sure that the file exists. "
    Where "e:\xml\AdobeFrameMaker10\" is my install directory.
    So I assume that frame try to find the structapps.fm file but does not find it.
    What else can it be ?
    Does anyone knowns how to achieve this simple task using extendScript ?
    Thanks for any comments, Pierre
    function openXMLFile(myLastFile) {
        var filename = myLastFile.openDlg("Choose XML file ...", "*.xml", false);
        if (filename != null) {
            /* Get default open properties. Return if it can’t be allocated. */
            var params = GetOpenDefaultParams();
            /* Set properties to open an XML document*/
            /*Specify XML as file type to open*/
            var i = GetPropIndex(params, Constants.FS_OpenAsType)
            params[i].propVal.ival = Constants.FV_TYPE_XML;
            /* Specify the XML application to be used when opening the document.*/
            i = GetPropIndex(params, Constants.FS_StructuredOpenApplication)
            params[i].propVal.sval = "myApp";
            i = GetPropIndex(params, Constants.FS_FileIsOldVersion)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FontNotFoundInDoc)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FileIsInUse)
            params[i].propVal.ival = Constants.FV_DoCancel
            i = GetPropIndex(params, Constants.FS_AlertUserAboutFailure)
            params[i].propVal.ival = Constants.FV_DoCancel
            /*The structapps.fm file containing the specified application must have
            already been read. The default structapps.fm file is read when FrameMaker is
            opened so this shouldn't be a problem if the application to be used is
            listed in the structapps.fm file.*/
            var retParm = new PropVals()
            var fileObj = Open(filename, params, retParm);
            return fileObj
        } else {
            return null;

    Pierre,
    Depending on the object "myLastFile", the method openDlg might not even exist (if the myLastFile object is not a File object, for instance). And I do not see any need for the myLastFile anyhow, as you are presenting a dialog to select a file to open. I recommend using the global ChooseFile( ) method instead. This will give you a filename as string in full path notation, or null when no file was selected in the dialog. I am not sure what your ExtendScript documentation states about the return value for ChooseFile, but if that differs from what I am telling you here, the documentation is wrong. So, if you replace the first lines of your code with the following it should work:
    function openXMLFile ( ) {
        var filename = ChooseFile ( "Choose XML file ...", "", "*.xml", Constants.FV_ChooseSelect );
    While writing this, I see that Russ has already given you the same advice. Use the symbolic constant value I indicated to use the ChooseFile dialog to select a single file (it can also be used to select a directory or open a file - but you want to control the opening process yourself). Note that this method allows you to set a start directory for the dialog (second parameter). The ESTK autocompletion also gives you a fifth parameter "helplink" which is undocumented and can safely be ignored.
    Good luck
    Jang

  • How to restrict editing of some paragraphs and allow for others in same document?

    I have a client that wants to put together standard proposals that have boiler plate information (long paragraphs and some imagery) that will not change. In the same document they have other information that is to be customized by sales teams (text and images). Sometimes, they will have a sentence or a phrase which needs changing in the middle of a long paragraph but the rest of it remains the same. Since these documents are shared and edited by multiple parties, they would like to restrict some paragraphs from editing while making other areas editable, perhaps on the same page of the document. Is there a way to do this in Acrobat Pro XI?

    Thanks for that, yes I’ve been creating pdfs in InDesign for better layout results. We want to generate a template that our international sales team can use for templates, sharing over a server, and trying to prevent them from ruining text flow, image flow etc. just wondering where my limitations are at.\
    Thanks for your help. Anymore suggestions are very welcome.

  • While reading PDF document using Speak Screen option, iBooks doesn't turn pages automatically

    I have been using the speak screen option in iOS 8 to read books and pdf documents in iBooks app. iBooks app turned pages automatically and kept on reading the screen till i updated my phone to iOS8.3. Now, the app stops reading the screen once the page is completed. I have to stop my vehicle, unlock phone, open iBooks app, swipe down with two fingers. It's irritating.
    Earlier, I have read dozens of books and pdf documents using this function while doing exercise or routine tasks. now it's not possible unless someone helps.
    Thanks for your support in advance.
    Mukesh

    @Mukeshnnms
    Unfortunately, I am having precisely the same issue since updating to iOS 8.3 with my iPhone 5s.
    I just filled out a bug report here > https://www.apple.com/feedback/iphone.html, which I've often read on these forums is the best way to get some resolution. I don't know if you read the list of "fixes" for 8.3 or not (here: iOS 8.3), but, it includes the following:
    "Fixes an issue in Speak Screen where speech will not start again after pausing"
    So...apparently, in fixing THAT problem, they broke something else. At least for some of us...
    <Note to self: WAIT even longer than usual to do updates, read about bugs first.>

  • Vendor open items appearing in FBl1 but same documents not appearing F-44.

    Hi,
    Vendor open items appearing in FBl1 but same documents not appearing F-44.
    Please help me in this.
    Thanks
    GP

    Hi,
    F-44 is used for clearing vendor - header data. Check if there are both debit and credit entries for the vendor and if it exists then clear using F-44. Check the entries correctly in FBL1.
    regards,
    radhika

Maybe you are looking for

  • How to sync two phones with two computers??

    I have two iphones and two macbooks, one for my wife and one for me. I want to know if it's posible to sync just one phone with one computer, and the other phone with the other computer, in the cloud with just one apple acount?

  • How do I sync music from iphone to mac?

    About a year after the rest of the world, iTunes sent to my iPhone the U2 album that everyone else was force-fed and some other music too from a German radio station. I never asked for any of this, but actually quite like it, so I wanted to transfer

  • Login via Press Ctrl-Alt-Delete to begin

    Hi, Seems to have locked myself out. Screen shows Press Ctrl-Alt-Delete to begin, on Windows 2000 Prof, but nothing happens when these keys are pressed. Help!??! Yusuf

  • Runnig Automator droplet in background

    I have a nice automator droplet that is quite elaborate and uses a lot of time to run ( in Photoshop CS5 ) - I would love to do some other tasks like browse the web etc . during that time - can I do something to make that automator workflow to run in

  • Creating a chart on a filtered table

    Hi all, I have a table that I consider like my database. Then I create new tables that references some columns from the database. But it is still big enough to extract some nice usefull datas, so I apply a filter on those new tables. Now I can add a