Changing where an object pastes....

I'm self learning Illustrator... mostly by trial and error. I created a few complicated drawings without creating layers and now I'd like to go back and separate the objects into different layers. If I cut and paste the object it pastes into the center of the art board... is there a way to cut an object from one layer and paste in in it's exact place on another layer?
Thank you,
Jeff

Yes that works as well in the older versions but in CS 4 & 5 you also have multiple artboards and you may at some point wish to paste objects to other artboads or all the other artboards in the same relative position and you can do that as well with two command copy and then paste on all artboards.
THe older versions as Jacob points out do not have this feature nor do they have multiple artboards so it is not really a problem there..

Similar Messages

  • When I use the shortcut to open a new window in safari (command N), I get a 404 error message from Google. How do I change where 'Command N' routes to?

    When I use the shortcut to open a new window in safari (command N) on my Macbook Pro, I get a 404 error message from Google. How do I change where 'Command N' routes to? 

    It's not necessary to change the Command N keystroke..
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Do you know how to change the Text Object for Billing Document?

    Hi,
    If you execute Transaction VOTX or VOTXn it will take you to Text Determination. The Billing Doc & Sales Document both has the VBBK as Text Object for me and is it like that for all.
    I need to change the Text Object to VBRK for Billing Doc, which is the ideal because I am using the Function Module READ_TEXT to retrieve text. This work perfectly for Sales Document which has VBBK as Text Object, but does not work for Billing Doc where it through as error message saying “Text 0020000021 ID 0002 language EN not found”.
    Thank You
    Kishan

    Hi kishan,
    For updating these text you can use FM 'SAVE_TEXT'.
    As for your problem, to get the parameter you need, go to the billing document, go to the text, and display it in plain page mode.
    Then you do 'GO TO' -> 'HEADER', and a pop-up window open with the parameters you need Obect type, ID, Name, ...
    Regards,
    Erwan.

  • Track changes of a object in Jswing Application

    Hi Folks,
    I have a jswing application which loads a object(*xml decoder*) when it gets opened.
    I may make changes to this object(*xml decoder*).
    Finally when terminating the application i need to check if any changes made to object(*xml decoder*)
    if there are any changes i need to write object(*xml decoder*) to xml encoder.
    Just like microsoftword/powerpoint.
    How do i compare old object with the recent object.
    Any suggestions

    Thanks for your response friend,
    1)yes it is a swing application
    2)yes it is a bean.xmlencoder
    3)yes am changing object returned by xml decoder
    i have java bean classes to be written to Xml encoder.
    public class TestContainer implements  Cloneable {
         @Override
        public TestContainer clone() {
         try {
           final TestContainer testcontainer = (TestContainer) super.clone();
            testcontainer.mTests = new ArrayList(mTests.size());
           for (Test tests : mTests) {
              testcontainer.mTests.add(tests.clone());
            testcontainer.mTopics=new ArrayList(mTopics.size());
            for (Topic topics : mTopics) {
              testcontainer.mTopics.add(topics.clone());
           return  testcontainer;
         } catch (CloneNotSupportedException cnse) {
           throw new Error(cnse);
        private List<Topic> mTopics;
        private List<Test> mTests;
        public List<Topic> getTopics() {
            return mTopics;
        public List<String> getTopicNames() {
            List<String> lTopicNamesList = new ArrayList<String>();
            for (Topic lTopic : mTopics) {
                lTopicNamesList.add(lTopic.getTopicName());
            return lTopicNamesList;
          public List<String> getTestNames() {
            List<String> lTestNamesList = new ArrayList<String>();
            for (Test lTest : mTests) {
                lTestNamesList .add(lTest.getTestName());
            return lTestNamesList;
        public void setTopics(List<Topic> pTopics) {
            this.mTopics = pTopics;
        public List<Test> getTests() {
            return mTests;
        public void setTests(List<Test> pTests) {
            this.mTests = pTests;
       // public static void main(String args[]) {
          //  TestContainer sampleTestFile = new TestContainer();
            // Set Topics
          /// List<Topic> lTopics = new ArrayList<Topic>();
          //  sampleTestFile.setTopics(lTopics);
            //Set Tests
           // List<Test> lTests = new ArrayList<Test>();
            //sampleTestFile.setTests(lTests);
           // try {
              //  XMLEncoder e = new XMLEncoder(
                     //   new BufferedOutputStream(
                     //   new FileOutputStream("Empty.xml")));
                //e.writeObject(sampleTestFile);
               // e.close();
           // } catch (Exception lEx) {
       so finally i need to write this testconatiner object to java.bean.XmlEncoder in front end application(AdminTool.java) if there are any changes.
    How and where should i override equals method

  • Changing Runtime View Object Settings Before and After Using Them

    Hi,
    I'm doing some VO coding at the moment and reading around the subject to get an idea of best practices.
    I stumbled across 2 blogs that are slightly contradictory:
    https://blogs.oracle.com/vijaymohan/entry/applyviewcriteria_design_timerun_time_view_criteria
    http://radio-weblogs.com/0118231/stories/2007/05/23/avoidActivationErrorsByChangingRuntimeViewObjectSettingsBeforeUsingThemNotAfter.html
    What is the best practice when programmatically using VOs? Should I do cleanup before/after when using them.
    Thanks
    Kevin

    John,
    I read it in an unofficial blog somewhere yesterday and I cannot locate it now!
    I'm reading some official documentation on this today:
    http://docs.oracle.com/cd/E14571_01/web.1111/b31974/bcstatemgmt.htm#autoId37
    The example steps given in 40.8.2 seems to contradict the latter paragraph:
    Because many of the view object's instance settings are saved in the passivation state snapshot and restored on activation (as described in Section 40.5.1, "State Information Saved During Passivation"), it is not advisable to change any of these settings just after executing the view object+ if you won't be re-executing the view object again during the same block of code (and so, during the same HTTP request). Instead, change the view object instance settings the next time you need them to be different before executing the query.
    Steps 5 and 6 seems to be changing the settings after executing the view object.+
    Bottom line is I'm looking for best practice.
    Should I do this in a VOImpl method:
    //save original VO settings
    String originalWhereClause = this.getWhereClause();
    String originalOptimizerHint = this.getQueryOptimizerHint();
    String originalOrderByClause = this.getOrderByClause();
    String[] originalViewCriterias = this.getApplyViewCriteriaNames();
    //change VO where settings and execute query
    //restore original VO settings
    this.setWhereClause(originalWhereClause);
    this.setApplyViewCriteriaNames(originalViewCriterias);
    this.setQueryOptimizerHint(originalOptimizerHint);
    this.setOrderByClause(originalOrderByClause);
    Or is that all unnecessary?

  • Is there any way to extend an object past the canvas?

    I'd like to know if there is any way to extend an object past the canvas and onto the background of a web page created with iWeb '08. When I move an object it gets clipped at the edge of the canvas. What I'd like to do is:
    1) Place AdSense outside the canvas, to the right, on the background.
    2) Place an image so part of it is on the canvas, and part of it is on the background. (kind of like the iWeb icon where the picture extends past the cork board)
    Is this possible to do with iWeb? If not, is it possible to do editing the HTML once it has been generated?
    When I move an object so its partially on the canvas and partially on the background, what make the part on the background invisible? Is there a piece of CSS that's doing this? (and if so how do I turn it off)
    Thanks,
    Jeff

    Jeff:
    Look at Cyclosaurus' post in this topic: http://discussions.apple.com/thread.jspa?messageID=9273769#9273769. It may address what you're wanting to accomplish.
    OT

  • E 7-00 hangs after date change to 1 year past. New...

    Hello boys and girls,
    I bought this sh... and the worst thing in this smartphone is voice conversartions ex. auto relock touch screen at incoming call and many other. My old E70 is best in that case.
    This fu... device hangs up always after date change to 1 year past. I do that to install application which has certificate expired .
    After reset (8 secs. power btn. press) situation is still persist - hangs on pulpit and no reaction for any button but power (8 sec. reset).
    Help please and release update for this next **bleep**in BETA version !!
    Solved!
    Go to Solution.

    @WINFO
    Whereas you would probably get away with installing application compatible with touch screen S60 5th Ed. device, you are trying with application for S60 3rd FP1 which also has expired certificate.
    However many times you keep power button depressed for 8 seconds this is only equivalent to removing battery from device not resetting; you may have to consider a three key depressed power on "hard reset" with all it's consequences to get device working again.
    Happy to have helped forum with a Support Ratio = 42.5

  • When I receive appointments by email and accept them they go into the enourage "on my mac" ical calendar which is not synced with mobileme.  How do I change where appointments are put ?

    When I receive appointments by email and accept them they go into the enourage "on my mac" ical calendar which is not synced with mobileme.  How do I change where appointments are put ?
    Or how can I choose where the appointment is put ?
    I use the mobileme sync services so the ical calendars that are synced are those in the "[email protected]" group.
    Please help !
    Nick

    Actually you can't drag the appointment to ano calendar - its says "You can’t make changes to this invitation., Only the organiser can change this event"
    Also if you double click on the received appointment and open the window the only calendars shown that you can select are the 'on my mac" ones, and not the sync'd ones.
    Any ideas welcome !!
    Nick

  • Error while changing the Resource Object Status

    Hi,
    I am trying to change the resource object status from Waiting to Provisioned for a self service task. Before approval I see the Resource Object Status as " Ticket Sent To REMEDY" on the administrator's web console and at the Requestor's web console I get the following error message-
    ???en_US.global.viewProfileForm.Lookup.Ticket-Sent-to-REMEDY???
    But after approval, based on the completion the task, the process on both the consoles is set to provisioned. That is what I want to display but the problem comes when the requestors sees the error status message on its console before approval.
    Can any body tell me the reason of the above error and how to resolve it?
    Thanks in advance

    do you have any custom written event handlers getting triggered off after request submission or during approval?
    It might also be due to either a browser issue or you might have missed any entry in the xladmin properties file for a custom label/error message etc.

  • Data not updated in business entity after change in architectural object

    Hi,
    A business entity was created from Architectural Object.
    When we modify the address in the architectural object, the data is not updated in the business entity.
    Is there any solution that make an automatic update for the address in business entity after a change in architectural object ?
    Thx for your help.
    Regards
    Saad

    Hi,
    I have created new infopackage and ran. Now the following message I have got on the monitor.
    "Data not received in PSA Table
    Diagnosis
    Data has not been updated in PSA Table . The request is probably still running or there was a short dump.
    Procedure
    In the short dump overview in BW, look for the short dump that belongs to your data request. Make sure the correct date and time are specified in the selection screen.
    You can use the wizard to get to the short dump list, or follow the menu path "Environment -> Short dump -> In Data Warehouse".
    Removing errors
    Follow the instructions in the short dump."
    Any more thoughts?
    Thanks,
    Rao.

  • Font changes when copy and paste url (Safari to Mail)

    When copy from iphone 5 (vs 7.1.2-& no I don't want to update yet ) Safari, a URL/web address and paste into MAIL app, the font changes and won't paste in the same format as the email I've been typing. Is there any way to correct this? Also, anything I type after the paste keeps that same "other" format, when I want what I had started email in to stay the same.
    I tho't I"d look at some settings and under iphone Accessibiilty I have Larger Text ON and Bold Text chosen, and Reduce Motion ON. Under GENERAL and TEXT SIZE I have it set to 4th choice up. I don't see any MAIL settings re FONT. Would any of these be the cause?

    OK, I think I found another way to describe my issue:
    When I copy text from a webpage in Safari, some form of "meta-information", or formatting data, is kept, and when I paste into MS Word, the formatting from the webpage is retained. In my default setup of Firefox, this formatting meta-information is not retained, it only copies the plain-text.
    So my question is actualy: How do I prevent Safari from retaining formatting data, and only copy the plain-text?
    I have been testing some clipboard managers, and have yet to find one that will auto-filter out formatting data from text that I copy, but they can after interaction.
    The other, current, method I have been using is to:
    1. select and copy the text in Safari
    2. paste text into notepad
    3. select and copy text from notepad
    4. paste de-formatted text into MS Word
    Or in Firefox:
    1. select and copy the text in Firefox
    2. paste text into MS Word (no formatting retained)

  • The backup files for my devices are saved to my internal hard drive. I have a small internal hard drive and would like them to be saved to an external drive. How can I change where iTunes automatically backs up to?

    The backup files for my devices are saved to my internal hard drive. I have a small internal hard drive and would like them to be saved to an external drive. How can I change where iTunes automatically backs up to?

    This has nothing to do with iTunes as iTunes provides no way to move or relocate the backup files.
    A search of google or the fourms would reveal ways to create a folder link to relocate the physical location where the files are stored.

  • System setting does not allow changes to be object CLAS /1SEM/CL_FACTORY_30

    hi,
    Recently we upgraded our BW system from BW 3.0B to BW 3.5.In BW 3.5,we created a planning area to which we
    assigned a transactional cube.Now when we are going for creating variables or planning levels for the planning area it
    gives the following error:
    System setting does not allow changes to be object CLAS /1SEM/CL_FACTORY_300ZPLAN
    Our support packages are as following:
    SAP_BASIS       640                   0009
    SAP_ABA         640                   0009
    ST-PI           2005_1_640            0000
    PI_BASIS        2004_1_640            0006
    SAP_BW          350                   0009
    BI_CONT         353                   0000
    Could you please suggest or help us in resolving the issue ?
    thanks and regards,
    Yogesh

    Hello,
    the above mentioned note is too old. Please check note 781371.
    Please also check in transaction SM30 view V_TRNSPACE
    the record for /1SEM/:
    Namespace:     /1SEM/
    Namespace role C
    Repair License
    SSCR Popup     X
    SAP Standard   X
    Gen Objs Only  X
    Regards,
    Gregor

  • Does anyone know how to change where incoming (via mail) calendar requests go on my MacBook? Mine insist on going to Entourage, which I don't use any more. I've tried setting the default calendar in iCal preferences. Doesn't help. Bugs me. Can you help?

    Does anyone know how to change where incoming (via mail) calendar requests go on my MacBook? Mine insist on going to Entourage, which I don't use any more. I've tried setting the default calendar in iCal preferences. Doesn't help. Bugs me. Can you help?

    Jneklason wrote:
    ~snip~
    I know this email is confusing and really hard to understand...perhaps now you will know how i've been feeling--lost and confused with all the mis-information, with a hit and miss phone, and out of time with all the 1 1/2 hr to 2 hrs EACH wasted on this issue.
    On top of all this, I can't even find out how to file a complaint with anyone higher up than Customer Service.
    I hate to tell you this, but you didn't write an email. You wrote a discussion post on the Verizon Wireless Community forum which is a public peer to peer forum. Unfortunately since you didn't mark your post as a question, the VZW reps that roam this community won't ever see your post. Before you re-post it, don't. Duplicate posts get removed from the community.
    I see there were several missteps both by the reps and yourself in your post. First you should have insisted on returning the phone within the 14 day return policy period. Second which Samsung Galaxy mini model did you purchase? The S3 mini or the S4 mini? Did you do any research prior to deciding on this device. The reps at that time deflected the easiest course of action, by trying to get you to replace the phone under insurance instead of returning the phone. The Early Edge payment option requires the current phone on the line using the early Edge must be returned to Verizon Wireless. Did you once considered going to a third party site like Swappa to purchase a gently used device for your daughter?

  • Changing where the sent messages are stored

    Hi, I was wondering is there any way you can change where the sent messages are stored. I have switched from a few programs.. and there is a 'sent' folder and ' sent messages' folder on my folder list in addition to that of what mail is putting them in. I just want one folder.

    Sounds like you are accessing an IMAP type account.
    If so, is this the only email account and account type you are accessing with the Mail.app?

Maybe you are looking for

  • Streaming Music, Apple TV stopps playing it

    While I'm streaming music, Apple TV often stopps to play it after a few minutes. iTunes is still going on with streaming it. The connection to the wireless network is excelent and apple tv is showing all the time in iTunes library. All updates have b

  • IPhone Ring Tones Error message 11556

    Hi Please can you tell me why when I try to create a ringtone from my iTunes purchases I get the error message 11556? How do I create Ring Tones, in fact are we able to buy them in the UK yet or not? Thanks for your help...

  • Why will firefox not allow me to change the home page

    I am running firefox on vista laptop and since one of the upgrades of firefox I have now a automatic homepage of http://www.searchqu.com/406. I have tried to change it several times to various pages and it does not hold the address, not even a blank

  • Import videos from Canon Powershot camera to iMovie

    I recently bought the Canon Powershot D30 underwater camera. I tried to import the video clips to iMovie without success. It can only export to iPhoto and the video clips when dragged to iMovie became still shots. How do I transfer the videos to iMov

  • I cannot open my iWeb site with any browser

    I have had an iWeb site which has been live for about a month. It has been working perfectly. It still appears to be working well within iWeb. I can make changes and publish changes. When I now search the internet using any browser, it says [Safari]