Copied/pasted group of components lose many properties

(Xcelsius 2008 SP1 FP1 5.1.1.0 (Build 12,1,1,344), Windows XP SP2)
After copying/pasting 120 or so grouped components all at once, the Value, Check box and Toggle components seemed to lose most of their properties.  The main container within the group of copied objects is a panel container that included nested groups of labels, rectangles, values, check boxes and toggles.
Specific example: All Value components originally had a title position of "Left" and specific font name/sizes.  They also had specific X axis offsets.  And of course, each was pointed to a specific spreadsheet cell.  The copies, however, reverted to the respective defaults for all properties minus the text of the titles.  (This is of course not an exhaustive list of the affected components/properties).
I have already had experience copying smaller groups of components and did not see this effect, so I wonder if there is a threshold of some kind here.

>
NFN Purnima wrote:
> There is no exact threshold for copy pasting components.When copy pasted in large numbers some components might lose their original bindings and may either experience cosmetic changes in label and title position offset or like you experienced would revert back to their original settings.I would recommend copy pasting in smaller groups to maintain consistency.
> Thanks,
> Purnima
Thank you, Purnima.  Despite my fears, copying and pasting smaller groups within the larger nesting appears to be working out pretty well, so this may become a non-issue for me.  Nevertheless, it would be great if a future version of Xcelsius would support larger groups within a copy and paste.

Similar Messages

  • Muse crashes during copy & paste of page title in page properties

    Copying and pasting a page title from one page to another, causes a crash on the second or third paste.

    Hi Zak,
    Thanks so much for the reply. Here are the answers:
    Where was the text originally copied from?The text was manually typed into the Page Title field in Page properties, then copied from there into the same field for other pages
    Is the text pasted and then editing?Yes. The original line is 'Kingsdown Holiday Homes - Self Catering Chalet Rental at Kingsdown Park, Kent | Chalet 1b', and after pasting I change the Chalet number or words after the '|'
    Is this referring to the Page Title in the Options section of the Page Properties dialog?I am accessing the page properties through CTRL-Click on each page, from the Plan view
    How was the Page Properties dialog opened (from Page menu, from context menu in Plan view, from context menu in Design view, other)?See above
    All the best,
    Andrew

  • JNLP copy/paste with Swing components

    I have a simple JNLP application. When a window pops open asking for permission use the System clipboard I click "Yes". In the main-class file I call the following static function to initialize my Clipboard service:
    public class FDW_Application {....
    public static ClipboardService cs;
    public static void setupClipboardService(){
    try {cs = (ClipboardService)ServiceManager.lookup  ("javax.jnlp.ClipboardService");}
    catch (UnavailableServiceException e) {
         FDW_Application.debugwindow(e.getMessage());
         cs = null;
    Next, I use the following code to copy a string into the system clipboard
    java.awt.datatransfer.StringSelection s = new java.awt.datatransfer.StringSelection (selectedValue.toString());
    FDW_Application.cs.setContents(s);
    myeditor.requestFocus();          
    int caret_pos = myeditor.getCaretPosition ();
    Next, I try to use the "Paste" function in swing to put the text into the control.
    myeditor.paste(); /*myeditor is a JTextPane */
    However, nothing shows up in the control.
    When I close down the application and go to notepad I can paste the value into notepad.
    How do I get the Paste function to use a specific clipboard?
    Anthony

    Thanks, I looked at the sample you have. I changed my
    program from using the .Paste() to the
    replaceSelection and it works nicely now. However, I
    still wasn't able to get the paste working. It works OK here, for pasting plain text to that
    component type, using the second data flavor
    in the flavors list. I could not be bothered hard
    coding it, and felt it more useful to demonstrate
    that data has (many) flavors.
    ..i thought
    it should work but your workaround ..Note they are not workarounds, but examples of
    using the JNLP API. I would prefer that the JNLP
    functionalities could be used 'seamlesly' with the
    J2SE methods that do the same things, but I guess
    that is not practical.
    ..(and the other
    examples you have) are very useful.Glad to be of help.

  • Copy/paste groups? Hierarchical groups?

    I've just checked out Apple Mail/AddressBook for the first time, and it looks like there's no way for me to create a group without first entering all of the individuals into my address book as contacts. Is this correct? I have dozens of students' email address I want to drop into a group. I don't want them as individual contacts.
    And is there no support for hierarchical groups? Class101 and Class102 are both members of SpringSemester, etc. This has been available for decades in Pine.
    Both capabilities are available now in Mulberry, which runs quite well on the Mac. I just thought I'd check out Apple's offering, expecting it to be good, because I've generally been impressed with their user interaction design. But if these features really are missing, these are killer deficiencies for me.
    Am I missing something?
    Thanks!
    Steve

    Hello,
    I'm trying to recreate this scenario here but I seem to haev no luck. I'm going to assume it's a bug but to file it I need to be able to reproduce it constantly. Would you mind giving us the schematic, or steps that you take when this bug happens. I created 2 HBs with a filter in each and saved those files separately. Then in my main design, I got some inputs, and using <Ctrl+H> I chose the HBs that i created and pasted them in the schematic. After wiring them, I proceeded to select one of the HBs and <Ctrl+C> and <Ctrl+V> within the same schematic but none of the things you mentioned occured. Can you explain in deatil the steps to create this error?
    Kind Regards,
    Miguel V
    National Instruments

  • Copy paste buttons

    Hey,
    I frequently need to copy paste groups of several element, which include buttons, into frames (in order to create scrollable frames for DPS), and every time I do that with a "Go to State" buttons, they lose their properties and I have to recreate them, which is pretty cumbersome to do, and especially so when the button isn't in the visible part of the frame.This happens both in CS5.5 and CS6
    Is there any way to past a button into a frame without losing the button's action?
    Thanks

    @Bob – yesterday I began writing a script snippet that is something like a proof of concept, that it is possible to duplicate a button to a rectangle or any kind of object that can hold a button object.
    But before presenting that, let me explain its basic functionality.
    1. In scripting we have one principle method to get a duplicate of a button object and therefore not losing the target MSO information: the duplicate() method.
    2. duplicate() applied to a "Button" object will not get us in the right direction, because the target of the duplicate() method can only be a "Spread", a "Page" or a "Layer". Or you could move the duplicated button with  x/y values on a spread or a page. The target could not be a rectangle or a state in an MSO. So this seems to be a dead end.
    3. But, and here comes the clue, you are able to move or duplicate a "Character" or a "Texts" object from one text frame to another. And this is the key to a possible solution:
    If you are working with anchored objects ("Button", "Groups of Buttons" or any other object that you could paste inside of an insertion point in a text frame), you could duplicate or move that object around. The "Button" in this case is simply represented as a "Character" object that flows with the text frame.
    For "Texts" objects (and a single character (=anchored button) is a subset of "Texts") the duplicate() method supports the following parameters:
    1. The position of the duplicated character in regards of the target insertion point or text:
    LocationOptions.AFTER
    Places the object after the reference object.
    LocationOptions.AT_BEGINNING
    Places the object at the beginning of the containing object.
    LocationOptions.AT_END
    Places the object at the end of the containing object.
    LocationOptions.BEFORE
    Places the object before the reference object.
    LocationOptions.UNKNOWN
    No location specified.
    2. The target (a "Texts" object, a insertion point, a character, a word, a paragraph) could be the same text frame of the original anchored button or a different text frame. And that could be a new text frame, that could be easily added to a rectangle, a state of an MSO etc.pp. with:
    myRectangle.textFrames.add();
    That implies we only need two ingredients to make that concept work:
    A source text frame and a target text frame.
    The source is a text frame that holds an anchored button and should be easily identified by the script. The user (you) could do this by renaming it in the Layers Panel. Just replace its generic name "<Textframe>" with "Source".
    The target could be a rectangle. For ease of use it could be a selected rectangle and the script will work with the selection.
    What the script is doing:
    It identifies the source text frame by its name (therfore it should be unique in the document) and duplicates all its characters (eg. the anchored button, but could be any anchored object) to a new text frame that will be added on the fly to the selected rectangle.
    And here comes the script (JavaScript):
    //DuplicateAnchoredObjectsTo_SELECTION.jsx
    //DESCRIPTION:Just a proof of concept!
    //Uwe Laubender
    * @@@BUILDINFO@@@ DuplicateButtonTo_SELECTION.jsx !Version! Sat Sep 15 2012 19:39:03 GMT+0200
    var myDoc = app.documents[0];
    var mySel = app.selection[0];
    try{
    var mySource = myDoc.pageItems.itemByName("Source").texts[0];
    var myTarget = mySel.textFrames.add({geometricBounds:mySel.geometricBounds}).insertionPoints[0];
    mySource.duplicate(LocationOptions.AFTER,myTarget);
    }catch(e){alert(e.message)};
    It's not exactly the thing you like to do, because it requires some preparations:
    you have to anchor the object you like to duplicate,
    you have to define the target MSO after you anchored the source button,
    you have to rename the text frame
    and:
    you get an additional text frame at the target rectangle and that is adding some complexity to the structure of your document, but hey, it's working…
    Here are some screen grabs to illustrate the preparation of the source and showing the results after running the script:
    1. Prepare the button as an anchored object (sorry, but the UI is in German, but I think you'll get it):
    2. Rename the source text frame from "<Textframe>" to a unique name.
    In this case: "Source":
    3. Define the target MSO in the button at that stage.
    By copy/paste the button to the text frame you already lost the target MSO.
    4. Select the target rectangle you want to duplicate the button to:
    (the green rectangle represents the first state of the MSO on this spread. It's just an example)
    5. Run the script:
    6. Inspect the results:
    6.1 The button sits in the selected rectangle
    6.2 To be precise: it's the first character in a text frame that is added to the target rectangle.
    The added text frame has the exact size and position of your selection:
    6.3 Inspect the button: the target  is not lost. The MSO is still addressed by the button:
    Instead of a single button as the source, you could use a variety of objects:
    groups, several buttons anchored one after another etc.pp.
    And remember: this is just a proof of  concept so error management is hardly implemented.
    Uwe

  • Creating new DC using existing DC like copy paste

    Dear friends,
    Any steps how to create a new DC using existing DC.
    I would like to create a new DC which is exactly equal to other DC like copy paste.
    Early reply appricated
    Many thanks.
    Lakshmikanthaiah

    Hi,
    Create the DC in the Track with same name.
    to do this, you need to remove the DC name reservation in the SLD,
    After that, copy src of old project and paste in the new project,
    before copying the src, you have to add the depedencies in your new dc as per the old dc, becuase the copying won't take the dependent dc reference,
    after adding the dependent dc's you can copy the src to new dc,
    when you paste the src under new dc's that should promt you for add some files to acitvity, other wise delete the src and paste it again until u get the popup to add files to activity,
    after pasting - repair the dc project strucutre, roload and rebuild after that check manually all the depenceies are working, now you can build the dc and deployee,
    this process work for only for the same naming dc's,
    i have done this, this will work fine,
    Cheers,
    Apparao

  • Copy/Paste graphic w/drop shadow to indesign - loses transparency

    See above image.. I made a vector version of our company logo in illustrator (all programs referenced are cs5 btw) and it looks great, but when I copy and paste from Illustrator to InDesign, it loses the transparency around the logo. If I place the logo instead, it works fine. The trouble is there are about 16 variations of the logo, and its MUCH easier to copy/paste from one aggregate file instead of having many different logo files to place.
    Background on how the logo was created: The inner circle area is multiple different gradient layers (some with transparency masks as well). The white line around the outside is an expanded stroke, and it had a drop shadow effect applied (Stylize menu), which I expanded so it would scale properly when scaling the logo up and down. Here is a link to download the logo: download logo
    Q: Is there any way to make InDesign preserve the transparency when I copy and paste?
    Would be eternally grateful if someone has a solution that allows me to copy/paste!

    I agree with Bob's suggestion to use separate "layer groups" in your logo file for different styles. I also use separate layers inside InDesign to "multi-purpose" company documents with different backgrounds, graphics, and content. But that's the only way I use layers inside InDesign – Not for general placement of image files! I also disagree with ability to copy and paste graphics from Illustrator with drop shadow. Here's an .ai logo which I quickly added Drop Shadow to in Illustrator CS4, and then a Copy and Paste into InDesign CS4 document. Best workflow practice is to 'Place' image files as Bob suggests, linking them from a separate file folder.
    For something "quick and dirty" I see no problem with Copy and Paste, but your success may vary based on OS, and CS versions you are using!  Sometimes it is wiser to take a few shortcuts to hit rather than miss that deadline!

  • Multisim 10 and 11 freeze when try to copy-paste components

    Hi,
    I recently install the Multisim 11 on a win vista 64 bits computer, until now, everything works well for except for the "copy-paste" function for any component or group of components. I reinstalled the program several times but the problem still persist. Also, I installed multisim 10, and the problem is the same. I wonder if you have hearded about a similar problem and if there is a solution.

    Don't know if this can help: I had the same problem and installing the updates didn't kill the pain. BUT
    I found there are several editor/CAD programs that tries to connect to your default printer as soon as you perform certain operations
    (open a project, a file, a cut/paste). If you have a network printer as your default, and it is unreachable from your position/you are not connected to any network, it takes ages to time-out the connection trials and the program gets stuck till it's done.
    As soon as I changed my default printer to my local pdfCreator virtual printer the problem was solved.
    It's not the first application that gives me this same identical problem (ultraedit is just another one).
    Hope it can help.
    F.

  • Copy / Paste / Delete Pages and group pages

    MUSE would be great if  we could copy /paste /delete pages and / or group pages
    Regards

    Have you done much JavaScript programming in Acrobat? Are you asking for the specific code or for guidance as to what methods you need to use? All of what you listed is possible with JavaScript.
    George

  • Copy paste of components are not working properly

    Hi,I am using ADF 11.1.1.3 and dynamic components.
    I had created a page fragment which has lots of components let say 60 components.
    Now i have to create another page which will also have the same no and type of components. I want to copy paste the components and create a new page.
    But I am not able to do the same.
    When i copy paste the page fragment its not working ...(bindings are not created on new page) and other issues also...
    Just wanted to know do we have to do any thing specific should be done to copy paste fragment code or its not possible.

    Hi,
    actually bindings are not copy and pasted. What you can do is to copy and paste the fragment, edit the DataBindings.cpx file and create an entry for the new fragment .jsff and point it to the PageDef file that already existed for the fragment you copy and pasted the content from.
    Alternatively (and my recommendation to you), create the content you otherwise would copy and paste in a page template and make sure the page template has a binding file (checkbox). Then build your fragments from the page template file and thus all will have data bound components
    Frank

  • Copy / Paste Properties

    Hello, I have had success with cutting and pasting Behaviors but not Properties. Is it possible to cut and paste Property parameters (Transform - Position, rotation, etc.)? And if so, how?
    Thanks,
    Ines

    Rather than copy-paste, try dragging the parameter you want from the Inspector onto the target layer in the Layers tab.

  • Copy/paste a group of finder names

    hello, in the old days (sys 9 and earlier), i was able to select a group of files in the finder, copy the names as text and paste into something of my choice (email text editor, etc).
    when i do this now, the items themselves are pasted into my email document, NOT the names of the files. if i want the text only, it seems i have to select the file, hit return or enter and copy/paste.
    what am i doing wrong here? this is embarrassing to ask, because it's so simple. and i seem to recall it worked sometime in the past under os x. thanks for your time. marc

    ticia, thanks for your help. i tried the paste in indesign cs2, and it pasted the file names, not the items. the files i question were a bunch of jpgs. textedit pasted the jpgs, not the file names.
    its good to know some apps will serve as a work around, i just wish i could do it directly in mail. i frequently need to ask a client about the files i have (i work in an ad agency), and copying the names as a group is a whole lot easier than one by one, or re-typing.
    thanks again. btw, what part of TN do you live in? i have a bunch of family on the knoxville area. marc

  • How to transfer (copy/move/paste) group layer to another page or file?

    Hi
    I wanted to transfer a set of group layer to another page in Fireworks CS5, how can I do that?
    When I try to copy paste, it doesnt paste as a group instead paste as layers, then I have to again group it and name it Why Fireworks doesn't understand that I have copied a set of group layer?

    You can share a layer to another page in Fireworks by selecting the layer in the Layers panel, then clicking on the small fly-out menu in the upper-righthand corner of the Layers panel and choosing "Share Layer to Pages". This opens up a two-column dialog, where can select the new page and add it to the right-hand column, "Include layer to page(s)".
    As far as moving a layer into another file, you may need to use a Command like "L - Copy to Next Doc" from John Dunning's Frame and Layer Utilities command set:
    http://johndunning.com/fireworks/about/FrameLayerUtils

  • Copy / Paste Same Button on Many Pages

    I have to copy & paste a simple button on every page of a lengthy document. (Hundreds of pages.)
    Is there an easy way to paste the button in the same place on every page, or do I have to do it manually, over a very long period of time?
    (Also, is it tough to paste the button in a specific position, or do I have to eyeball it for every one?)

    Yes, I used the object select button.  I've had some other issues and
    think that the problem is that there isn't enough memory on my computer.
    I've asked IT to increase that, hoping that will help.
    Thank you.

  • How do you copy a group and paste it to another file?

    Please answer soon

    If this does not work, confirm that the the Modes are in common.
    Note that you don't have to Copy & Paste the Source. The drag takes care of that automatically.
    Let us know if this works for you.

Maybe you are looking for

  • File Server Slowdown with Illustrator(only) saving and opening

    Hello, I have a problem i have been struggling with for years. When we save a file to the server, the time to open, save or export can be anywhere from 1-5 minutes. Its killing our productivity. I have changed out every component. We have Eight illus

  • IPod touch won't charge, not recognized by iTunes or Finder

    Hi - My iPod 4th gen - version 6.1.2 stopped charging midway, now not recognzed by iTunes or Finder. Battery won't charge. I have been through the diagnostics, reset, rebooted, etc. USB ports are OK... Bad cable seems unlikely - it worked before... I

  • FREE GOODS INDICATOR IN PO

    Hi, Whenever i am creating PO, free goods indicator is coming by default, how to remove this. In inforecord condition screen free goods indicator is there, but i am not clear with the settings. In vendor master where is the free goods indicator? Rega

  • Spry.Utils.loadURL problem with IE7

    Hello there. First of all sorry for my english. I have a problem with Spry.Utils.loadURL function in Internet Explorer 7 only. In firefox works fine. So i have an asp file that returns a string with some stuff. I load this asp file with Spry.Utils.lo

  • Photoshop CS5 to AE CS5

    I promise....I have been looking at the FAQs, tutorials, etc before posting. I have a Photoshop 3d PSD file, http://www.BlandRanch.net/Files/Logo.psd I want to use it in After Effects. I can get it into the composition, but it is flat. It is RGB. I d