How do I rename model parts on the Model Tree?

I am trying to rename model parts on the model tree. I thought I had done this successfully within 3D reviewer but I can't seem to transfer the renamed parts I changed within 3D reviewer back to the main PDF file tree. Any help please?
Thanks in advance for any tips.
Lee

One more way to rename nodes is via JavaScript.
The following piece of code picks nodes with numerical suffix
and cuts that suffix to hide it from end user.
var nodes=scene.nodes;
var count=nodes.count;
var index=new Array();
for(i=0; i < count; i++) {
  var mesh=nodes.getByIndex(i);
  var name=mesh.name;
  end=name.lastIndexOf(".")-1;
  if(end > 0) {
    if(name.substr(end,1) == "\001") {
      start=name.lastIndexOf("-")+1;
      n=end-start;
      if(n > 0) {
        index[name.substr(start,n)]=i;
        mesh.name=name.substr(0,start-1);
You may use getByName instead of getByIndex and
use 2 lists, of old and new names.

Similar Messages

  • How do I add web part in the event receiver after the site is provisioned in SP 2010?

    How do I add web part in the event receiver after the site is provisioned in SP 2010?

    You try the below steps:
    1. Use long operation to provision the site, so that it does not time out in process.
    2. After provisioning, you can add a page or add the web part directly to landing page of site.
    For each of the above steps you can find the sample code pieces.
    if you couldn't get that, let me know. I will share with you.
    Thanks, Ashish If my response has helped you, please mark as answer.

  • How do I rename a photo in the iphoto folder?

    OK, so I know that you can change the name of a photo while in iphoto by simply pressing the "i" button at the bottom left, but that doesn't change the actual name of the file.
    And I know that I can do that by going to Share-Export-Use Title and then put it in the same file that the original picture is in.
    My question is....if you do that, then you have two of the same pictures in the same folder (one with the name you gave it and one with a name the computer gave it...some IMG_0812.JPG name), so after I've done this, can I delete the original picture with the numbered name so that I only have the picture with the name I gave it to reduce clutter?
    Anyone? Anyone? I ask this question because I'm an organized freak and hate when I need to go and attach a photo I need to know when I took the photo (the month and date) and then all I see are numbers for the names.

    Welcome to the Apple Discussions.
    How do I rename a photo in the iphoto folder?
    You don't.
    And I know that I can do that by going to Share-Export-Use Title and then put it in the same file that the original picture is in.
    That depends on how you "put" the renamed export into the "same file." You can Import it into your iPhoto library. If you use the Finder or a Save dialog to save directly into the iPhoto Library folder then this photo will not be recognized by the database.
    ...can I delete the original picture with the numbered name so that I only have the picture with the name I gave it to reduce clutter?
    If you imported the renamed Export properly, and now see both versions of the photo in the library (within the iPhoto application), then yes, you can place the first version in the iPhoto Trash, then Empty iPhoto Trash. Absolutely do not do any of this from within the Finder.
    I'm an organized freak and hate when I need to go and attach a photo I need to know when I took the photo (the month and date) and then all I see are numbers for the names.
    Don't root around inside the iPhoto Library folder to find your photos for attachments or uploading.
    Why: iPhoto is a database application, not a file browser. You aren't supposed to go inside the iPhoto Library folder at all. See this from the iPhoto Help, under "About using the iPhoto Library":
    "IMPORTANT: There is also an "iPhoto Library" folder located in the Pictures folder in your home folder, outside the iPhoto application. If you move, delete, rename, or otherwise touch files or folders within this folder, you may be unable to see your pictures in the iPhoto application.
    "The files within this folder should only be manipulated by a customer care representative."
    To access your photos, use iPhoto. They are perfectly organized and easy to find, with all of iPhoto's tools at your service. No need to remember the date you took the picture. When you need to upload or attach your photos, select them in iPhoto and do a Share > Export to a Desktop folder. Attach or upload from that folder, then trash it when you are finished.
    If you absolutely want to rename your photos it's best to do this before importing into iPhoto. You can use Image Capture (look in your Applications folder) to upload from your camera to a Desktop folder. Use the Finder to preview and rename the files to your liking. Name the folder the way you want the Film Roll to be named in iPhoto. Import the folder into iPhoto, and then delete the one on your Desktop.
    But do learn to keep out of the iPhoto Library folder when you are in the Finder. Tampering inside that folder causes much of the damage that I see people coming here to try to repair. Once your photos are inside the iPhoto library, it's best to use iPhoto to do what you want with them.
    Regards.

  • How can I make a part of the body of my content full width of the screen with a fluid grid layout in CSS? (In dreamweaver program)

    How can I make a part of the body of my content full width of the screen with a fluid grid layout in CSS? (In dreamweaver program)
    and I know it is being over-ridden by
    .gridContainer {
      width: 88.5%;
      max-width: 1232px;
      padding-left: 0.75%;
      padding-right: 0.75%;
      margin: auto;
      clear: none;
      float: none;

    Abdelqader Alnobani wrote:
    How can I make a part of the body of my content full width of the screen with a fluid grid layout in CSS? (In dreamweaver program)
    and I know it is being over-ridden by
    .gridContainer {
      width: 88.5%;
      max-width: 1232px;
      padding-left: 0.75%;
      padding-right: 0.75%;
      margin: auto;
      clear: none;
      float: none;
    Logically a structure something like below should work BUT whether or not it will upset the FG I don't know as I wouldn't ever use it.
    <div class="gridContainer">
    Top Code Section Goes Here
    </div>
    <!-- close gridContainer -->
    <div id="fullWidth">
    Full width section goes here
    </div>
    <!-- close fullWidth -->
    <div class="gridContainer">
    Bottom Code Section Goes Here
    </div>
    <!-- close gridContainer -->

  • How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    select the section you want to copy (marquee tool or lasso tool) and either go to edit copy or use control c create a new layer in layers (top menu bar) or Control shift N and paste using control V;  or edit > paste.

  • [svn:fx-trunk] 10459: Change to ensure ScriptNodes are no longer part of the node tree after interface compilation stage in order to avoid the extra code that was necessary to avoid tripping over them during type checking , etc.

    Revision: 10459
    Author:   [email protected]
    Date:     2009-09-21 08:42:44 -0700 (Mon, 21 Sep 2009)
    Log Message:
    Change to ensure ScriptNodes are no longer part of the node tree after interface compilation stage in order to avoid the extra code that was necessary to avoid tripping over them during type checking, etc.
    Improving revision 10199 a bit, to allow for single line comments.
    QE notes: None
    Doc notes: None
    Bugs: SDK-22027
    Reviewer: Paul
    Tests run: Checking, Compiler cyclones
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22027
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/AbstractSyntaxTreeUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AbstractBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/DocumentBuilder.java

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • How do I rename a part in a 3D PDF?

    In 9 Pro Extended I have a 3D PDF that I need to rename parts in the model tree. The model was from Pro-Engineer. I tried opening 3D Reviewer and renaming but when I "save back to PDF" the name change doesn't show. If I export to PDF from 3D Reviewer the name change doesn't show. Other changes such as part deletion works. Can I rename these parts?

    Can anyone help me on this? Any suggestions on where else to ask for answers?

  • How do you rename multiple files at the same time

    how do you rename multiple photo files with a name at the same time?

    This would be an excellent use of Automator. Here is a link to some instructions on how to do this using Automator.
    http://www.youtube.com/watch?v=Ie6zGxo2D-o
    If you don't like that then Google "Renmame multiple files Automator" and you will find many tutorials available.

  • HT1789 How do I rename my ipod in the newest version of itunes, or get the left hand side to show up that shows the ipod so I can rename it?

    How do I rename my ipod shuffle in the newest version of itunes or get the left hand panel to show up so I can rename the ipod?

    Click here and follow the instructions; if you need to reveal the menu bar, press Alt.
    (78947)

  • How to make a stroke part of the shape

    One of the letters (S) on a logo I am working on doesn't look the right thickness alongside the other letters - there isnt a bolder version available so I have added a small stroke to make it visually balanced (text is converted to outlines). I would now like to make that stroke part of the shape (ie no separate stroke, but thickness of the letter with the stroke). I'm sure I've come across how to do this before, but cant seem to find it now... can you help? Many thanks.

    Caroline,
    how is that different to just adding a stroke the normal way?
    It is only in the sense that it may be done with a single letter in Live Type, thus enabling individual changes of appearance of letters and still allowing your editing everything (the/each special letter must be selected by itself, and then you can type in one or more replacement letters with the same appearance).
    I just thought I should mention it, in case it might be preferable.

  • How do I rename bookmarks pinned to the taskbar?

    Firefox 18.0
    I have some bookmarks pinned to the taskbar. They show the URL of the link, not the name of the bookmark. For example; in my bookmarks dropdown menu I have a bookmark named 'hotmail', but when I pin it to the Firefox icon in the task bar it shows up as https://login.live.com.....
    How do I rename it or get it to show the same name as in the dropdown menu?

    Sorry for taking so long to respond, but this worked.
    Thank you very much!

  • How to adjust brightness of part of the screen of shot video

    Hi,
    I have a video I am editing and for the most part the brightness and contrast levels are fine. But when I pan to a LCD display which is part of the video, the brightness is way too high. I can't redo this clip, but am wondering if there is a reasonable way to apply a filter which just lowers the intesity of the LCD screen while leaving the surrounding areas alone. It would sort of be like the concept they chroma keying does (in a loose sort of way).
    thanks!
    'mark

    Doesn't always work the way you think it should but you could try dropping the Broadcast Safe filter on the entire clip.
    You could also just cut the clip where the brightness first appears and add the 3 way Color Corrector. Adjust it to where you like it and then add a disolve between the clips. (may or may not do it for you depending on how the bright spot comes into frame, but it's a fast workaround) Could keyframe the 3 way in if you like.
    There are other things you can do with the 3 way to limit it's effect but to get a grip on it you should probably refer to the manual.
    rh

  • How do I blend two parts of the same image in PS CS5?

    Hi there!
    I'm hoping someone can help me with this, as I'm still relatively new to Photoshop...I'm a bit stuck.
    I'm trying to construct a part of the image that wasn't there to begin with, using parts of the dress that are there.
    This is a screenshot of what I'm sitting with:
    I'm happy with the shape but now I just have to blend it all together so it looks natural.
    Any advice would be much appreciated!
    Thanks.
    Binx

    What you could try is adding a mask and apply a gradient to that mask, or use a brush and paint an edge. Refine edge may help as well.

  • RegEx: How to find out which part of the pattern failed?

    Hi there,
    I was wondering: is there any way to find out where the pattern matching failed?
    Say I got the string "John Paul Yoko Ringo", and I want to match it against the pattern /John Paul George Ringo/.
    I would like to know something like "pattern failed at index 11", or if I had groups something like "matching group 3 failed".
    Is there any way to do this? Thanks in advance!
    Best regards,
    - Torben

    jschell wrote:
    I would like to know something like "pattern failed at index 11", or if I had groups something like "matching group 3 failed".
    Is there any way to do this? Thanks in advance!
    I wonder if that is reasonable. It means that the parse tree for the regex would need to keep mapping information.
    At a minimum it is going to require an array, not a single result, because a regex can 'fail' in many ways.
    Consider the following regex with the following input
    /(a|b)d/
    abababababx
    Where does it 'fail'?Right. If you just want the character position at which it failed, those tools might tell you that as part of a bigger picture. But by itself, without any context, that number's not necessarily meaingful. A given character can be examined many times due to backtracking. Part of the expression could succeed for part of the input, then the expression might fail for the rest, so we backtrack, and may get several more failures, then more partial successes, all at different points, then ultimately it may fail anywhere within the input.
    So just knowing where isn't enough. You need to know what steps were taken to get there. I do think these tools provide that, though I haven't looked closely.

  • How do I print a part of the front panel?

    I am interested in printing a part of my front panel as one page instead of printing the entire front panel. Does anyone know if this is possible? Thanks!

    Hi Nes,
    This is the second time you are posting a variation on this question.
    I was about to so NO YOU CAN'T...
    but then I thought...
    It is possible to print just parts of a front panel but it is a lot easier to do the things others have suggested.
    If you really want to print just a part of the FP you will have to do a lot of coding and the GUI will do some strange things in the process.
    I will outline the process and leave the code as an exercise for the reader.
    Using property nodes determine where on the FP the objects of interest are located.
    Again using property nodes, move the objects around on the FP so that they are grouped together and sized such they fit on a printed page.
    Using property nodes adjust the screen size origin etc so only
    the objects of interest are now visable.
    Using.....nodes print only the visable part of the screen.
    Using....nodes put everything back where is was when you started!
    Like I said, this is not easy.
    The simplest solution was suggested by BJD who said group the objects of interest on a tab page, use an invoke node to get the image and then display it on the FP of a sub-VI set to print on completion. That method will let you quickly add new interesting objects to the print out without having to change the sub-VI.
    Trying to help,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for