AutoCAD Inventor :: Condensing History Tree That Lists All Function

Feb 13, 2013

How can I condense the 'history tree' that lists all the function? Like, putting multiple sketches into one folder and then being able to expand it to display all of them?

View 2 Replies


ADVERTISEMENT

AutoCAD Inventor :: History Tree Not Displayed

Oct 17, 2011

I have installed Autodesk in a new computer but for some reason when I access to the program, "History tree" is not showed by default.

I have tried a lot selecting options in "tools" and "preferences" but I can't locate where the option for displaying "history tree" is located.

View 1 Replies View Related

AutoCAD Inventor :: Creating Cut Lists Or Sorted Material Lists

Mar 6, 2013

This morning the shop brought back a set of drawings and requested that I provide a cut list for the fab department. Our drawings consist of an assembly drawing and materials list on the first page with several individual parts on each of the following pages. I am looking at including a column in the ML for the operation ( laser, saw, shear) and sorting the list by it. However when I do this the Item Numbers on the list are all confused. If a person were to look at a balloon on a drawing and then attempt to find it in the list it would be difficult and time waster.

The questions.

1. Is there a way to renumber the item list after sorting the material?

2. If I place an assembly view off the edge of the sheet for each of the following sheets and then place a materials list on each sheet, is it possible to create a plugin that would find which parts are on the sheet and hide all the other parts on the list? I have just started going through the "my first plugin" tutorial and this sounds like a place where it should be useful but I don't know which tags I need to look for.

View 7 Replies View Related

AutoCAD .NET :: How Lisp Function Interpret Lists Passed In

Jun 20, 2012

I had thought this was fixed in 2012, but it seems that lists passed in to a lispfunction, get interpreted as if the first items was a dotted pair code.I first noticed this on a tool that takes three integers as an rgb color.

On some values, it shows null for the args in.On some, it reinterprets as if I am passing in a point.

If I pass in '(1 2 3), I get (5009, (1,2,3)) in .net so that is a 3d point.

Note that this alone is a bug, as its a list of three integers, not a point.

If I pass in '(10 20 30), I get (10, (20, 30, 0)) in .net

If I pass in '(228 27 185), I get null in .net

If there is going to be any interpretation going on, it should be because I sent in a dotted pair list. How Autodesk wants us to pass in lists so they come in as just a list of values sent in. URL....

View 6 Replies View Related

AutoCad 2D :: AREA - Using Add Function Object By Object / Setvar Lists?

Jun 15, 2012

How do I keep the fill ON the object that gets selected so I know not to pick it again as move through the drawing?

How /or/ where can I get a listing of my SetVars.

Running the Setvar (?) command doesnt offer a description for each?

View 1 Replies View Related

Lightroom :: How To Activate History Function In Navigation Panel

Jun 17, 2012

How can I activate the History function in my Navigation pane.?

View 1 Replies View Related

AutoCAD Inventor :: Using Different Part Lists

Mar 29, 2012

I'd like to know if it's possible to use two different styles of part list in the same project.

For example, one for assembly drawings and another for single part drawings.

View 4 Replies View Related

AutoCAD Inventor :: Passing A Function Name To Another Function

Nov 13, 2012

I'm trying to be able to have a function run another function with the secondary function being passed as an argument to the first. I'm trying to create a recursive function and the recursive part works great. I just need to be able to have the recursive function run other functions to actually do stuff.

Here is something I found that should do what I need, mainly run a function from a function name in a variable.
 
Sub test() Dim ftnName As String Dim argument As String Dim result As String ftnName = "myFunction" argument = "cat" result = Application.Run(ftnName, argument) MsgBox resultEnd SubFunction myFunction(inString As String) As String myFunction = inString & " has " & Len(inString) & " letters."End Function

 However I get the error "object required" on the "result = Application.Run(ftnName, argument)" line. So I'm guessing the Inventor VBA doesn't like this method of doing this. I'm just hoping there is a way to do this or this function will be useless or reduced to hardcoding functions which still defeats the purpose.

View 2 Replies View Related

GIMP :: Condensing Fonts For No Reason

Nov 1, 2012

I put text on an image and for no apparent reason, GIMP condenses it (or at least displays it as if it's condensed) no matter what font I use. I can change everything else about the font, including kerning, but the letters stay narrow. This happens even with fonts that don't have a condensed variant.Plus, GIMP gets really slow. Normally it works at a tolerable speed but when it does the condensing letters thing it acts like I have a bunch of applications running, regardless of whether I have anything else open.

This is the second time GIMP has done this. The first time was a few months ago. I think it cleared up after a few days without any action on my part. But it is extremely irritating.

I took screenshots of various fonts. I didn't insert any line breaks. GIMP is wrapping text as if the fonts are the normal width, so I'm guessing it is mostly a display issue.

View 2 Replies View Related

AutoCAD Inventor :: How To Align Multiple Parts Lists

May 22, 2012

Is there a way to align multiple Parts Lists?

I have an i Assembly with 7 distinct members.  I have a parts list displayed next to each member.  I had no problem getting the views to align, but am running into a wall with getting the Parts Lists aligned (other than just eyeballing it).

View 5 Replies View Related

AutoCAD Inventor :: Working With Multivalue Lists Of Other Parameters

Mar 22, 2013

I'm writing an input check function (check certain inputs to be positive, or within a certain range). I'm a mechanical engineer with basic coding experience, mostly with basic matlab experience (some c++), so I don't fully understand VB structure, classes, objects, etc.

I'm giving my function a mutlivalue list of the names of parameters, converting to an ArrayList,  then using 'For Every Item" in array list If>my condition>then display input box. And I have it working, but probably not the "proper" way, though if it works, it works. My real question is if I can use a multivalue list of parameter names and create a sister MV list that contains the parameter values. Currently I have to hard code a MV list with quotes aorund the names, and one without quotes. I've played around with various ways of using multivalue.set/setlist, val(), CDblAny() and other functions, but  always end up with either class mismatches, an MV list with a single evaluated parameter, or an exact duplicate of the original paramter name MV list.

Example of my brute force efforts:

Format:HTML Format Version:1.0 StartHTML:     165 EndHTML:     684 StartFragment:     314 EndFragment:     652 StartSelection:     314 EndSelection:     314
SyntaxEditor Code Snippet
'MultiValue.SetList("testList",ggg)
'MultiValue.List("testList") = MultiValue.List(Parameter(ggg))

Full Input Santitation

Format:HTML Format Version:1.0 StartHTML:     165 EndHTML:   14751 StartFragment:     314 EndFragment:   14719 StartSelection:     314 EndSelection:     314
SyntaxEditor Code Snippet
MultiValue.SetList("posParams", "hopAngle", "hopOutID", "hopOutClearance", "ringThk")

[Code] .....

Inventor 2013 SP 1.1

View 1 Replies View Related

AutoCAD Inventor :: Multiple Part Lists In 1 Drawing

Jan 29, 2013

I am currently working on a product where I want to make 2 part lists in my drawing of the same assembly. The first parts list has to view all the parts that are always delivered with our product, and the second one has to show the optional parts and features that could be delivered with the product.

I want both lists to be categorized the same way (comments, material, name), I want the numbers of the list to be chronological (also I don't want the second parts list to start the numbering at 1) and I want both lists to stay connected with their balloons.

Is there any way this can be done, like adding or removing part links to the list manually?

View 1 Replies View Related

AutoCAD Inventor :: Splitting Parts Lists Into Two Sections

Jun 7, 2012

I have a really long parts list and would like to know if there is there a way to split the parts list into two distinct shorter lists.

This is how it is done in Solidworks.  Just wondering if splitting BOM's is possible in Inventor.

[URL].......

View 4 Replies View Related

AutoCAD Inventor :: Editing Two Part Lists On IDW File?

Feb 14, 2013

I thought I'd be efficient & use one assembly with a couple View Reps to represent two variations of our product. But I ran into a problem editing two part lists on an IDW file. Most of the parts are identical.

I have two part lists on an IDW for the same asy & each part list is filtered for one of two View Reps - works great!But I discovered when I edit the item number order in one part list to harmonize with the other, the other one gets re-ordered also & no longer harmonizes with the first one.

Inventor Suite 2013 Ultimate

View 1 Replies View Related

AutoCAD Inventor :: Multi Line Text In One Cell In Parts Lists

Dec 6, 2011

We are using inventor 2011 and I would like to make the text wrap where I want it to not where the cell length determines. Can I do this in the ipropeties of the part? When I edit the parts list to move wrap the text manually the text turns blue of course, but this also negates the updating of parts automatically. In the part I use an expression to ensure that the description reverts back to the iproperties of the part ie =<G_L> X <G_W> - <MATERIAL>. I would like it to insert a text wrap then proceed to the next line with <STOCKNUMBER> - <PARTNUMBER> so I would look like:

12" X 6" - G40.21-44W
PL. 1/2 - PL-100

View 3 Replies View Related

AutoCAD Inventor :: ILogic - Create Parts Lists Out Of View Representations?

Sep 4, 2012

Is it possible to have iLogic rule create parts lists out of View Representations? [URL] .......

View 9 Replies View Related

AutoCAD Inventor :: Wrong Name In Model Tree

Jun 7, 2006

Using Inventor 10, I have replaced several components of my assembly with new copies of the components to be modified into new parts. For some reason the model tree still shows the old part numbers, but editing the parts reveals that they are indeed the new parts. How to correct the part listing in the model tree?

View 9 Replies View Related

AutoCAD Inventor :: 2012 Parts Lists Not Showing Correct Part Numbers In Assembly

Nov 4, 2011

Having problems with parts lists not showing the correct part numbers of the parts included in the assembly. In some cases I've made a new part by renaming an existing part but when I create a parts list it shows the part no of the original existing part used to create the new part, even though the new part is the one in the assembly. Also I have just had a number of similar assemblies and needed to produce parts lists for them. I created the first one and then used 'save as' to rename the drawing including the parts list. Then when I re-opened the newly renamed drawing I assigned it to it's new assembly. However the parts list did not update to show the new part numbers included in it's new assembly.

Is all this a glitch in the system or is there something in the set-up which is causing this problem?

View 7 Replies View Related

AutoCAD Inventor :: Why Lighting Only Tree Available In Styles Editor

Feb 28, 2013

I am trying to add a material with a specific density to the list of materials.  After looking online it looks like I need to do that with the styles editor, but when I open the styles editor the only thing that I can work with is the lighting.  

View 1 Replies View Related

AutoCAD Inventor :: Adaptive Icon In Model Tree?

Oct 24, 2011

what the little symbol that looks like the recycle symbol is in the model tree is?  I have several parts in this assembly and many of them seem to have this symbol that says adaptive next to them and I can't find and rhyme or reason to it.  I am attaching a screen shot of it.  I use Inventor 2012. 

View 1 Replies View Related

AutoCAD Inventor :: Model Tree Browser Freezing?

Dec 5, 2013

The model tree browser is freezing multiple times per day.  Even if I close the browser and re-enable it in the View>User Interface menu, it is still frozen.  It wont unfreeze until I close Inventor completely and re-open it.

Dell M6700
Win 7 Pro 64Bit
i7 3720QM 2.6GHz
16 GB RAM
Nvidia Quadro K3000M

View 5 Replies View Related

AutoCAD Inventor :: Filter Ability For Model Tree

Feb 27, 2012

Is there a filter ability for the model tree?  What I need is I have a part that is buried within a sub assembly that I cannot find.  I know the name, but what I am looking for is a tools that allows me to type in it's name and it show me in the tree where it is associated.

View 9 Replies View Related

AutoCAD Inventor :: Split Greyed Out Design Tree?

Mar 19, 2013

This just happened to me this morning, I split a part into a multibody part and as soon as I did the split, the entire design tree got greyed out. It doesnt matter if I have only one body visible or both of them, the tree stays greyed out. I can still edit features but its annoying to not know what is on and whats off. I opened a new file mocked up a quick part with various features performed a split and same results.

Autodesk Inventor Professional 2013

View 4 Replies View Related

AutoCAD Inventor :: Failure To Refresh Model Tree?

Jun 10, 2013

failure to refresh Model Tree after switching configurations - app restart required

We have a user who is getting this message several times per day and must restart his PC.  He is the only user of the Inventor Vault product using 2013.  We have redone his laptop and and given him a clean laptop with a fresh install of AutoCAD.

View 3 Replies View Related

AutoCAD Inventor :: Lock Symbol In Model Tree

Oct 26, 2011

I've got a user who is seeing this lock symbol on some Content Center parts in his model tree.  I've never seen it before and what is causing it.  This results in a lot of errors when he tries to check in any files where this shows up.  I can open the same assembly on my machine and the lock does not show up, and I can check the files in with no trouble. 

View 1 Replies View Related

AutoCAD Inventor :: Positional Representation Not Showing In Tree?

Aug 17, 2012

I have an issue where a two positional representations are showing in the spreadsheet for editing, but not showing in the tree view.

I cannot delete a representation from the spreadsheet.

View 3 Replies View Related

AutoCAD Inventor :: Open Drawing From Assembly Tree

Jun 5, 2012

In assembly mode, when you right click on a part in the tree, you had ''open drawing'' as a choice. Now it's gone in IV 2013. how to add it ?

View 2 Replies View Related

AutoCAD Inventor :: Replace Component Does Not Update The Tree In Browser

Aug 21, 2013

When I try to replace a component in Inventor 2014.  It replaces it but does not update the tree in the browser.  I have to manually delete the part and place a new one in.

View 9 Replies View Related

AutoCAD Inventor :: Keyboard Shortcut To Collapse Browser Tree

May 18, 2011

I am migrating into Inventor from Solid Works, which had a keyboard short cut for collapsing the parts tree in the browser.  Is there a similar command for IV?

View 9 Replies View Related

AutoCAD Inventor :: Models Selection In Browser Tree-Drawing Mode?

Nov 20, 2012

In Inventor Drawing Mode how to select the models in Browser tree using VBA, I think using selectset is not possible in my knowledge. Is there any other way to execute the selection .

View 1 Replies View Related

AutoCAD Inventor :: Getting Family Tree Of All Parts And Sub-assemblies Of Main Assembly?

Jan 22, 2013

Is there a way of getting a family tree of all the parts and sub-assemblies of a main assembly?

I would like this so I can keep track on what parts need drawings (manufactured parts) and if the drawing has been done.

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved