AutoCAD Inventor :: Change Contents Of Multi Value List

Jan 30, 2013

Is there a way to change the values available in a Multivalue list, based on another parameter?

I'd like to achieve:

When material is "MDF", available thicknesses are 6,9, 12

When material is "PLY", available thicknesses are 15,18, 25

I kinda solved this already but it's not quite right. I basically mad the list a list of custom parameters, and changed the values of these parameters based on the material parameter. :

'------iLogic--------------

If Material = "MDF" Then

iProperties.Value("Custom", "Thickness 1") = 6

iProperties.Value("Custom", "Thickness 2") = 9

iProperties.Value("Custom", "Thickness 3") = 12

Else If Material = "PLY" Then

iProperties.Value("Custom", "Thickness 1") = 15

iProperties.Value("Custom", "Thickness 2") = 18

iProperties.Value("Custom", "Thickness 3") = 25

End If

MultiValue.SetList("Thicknes",iProperties.Value("Custom", "Thickness 1"),iProperties.Value("Custom", "Thickness 2"),iProperties.Value("Custom", "Thickness 3")

MultiValue.UpdateAfterChange = True

'------------------End----------------------------

This works pretty much, when changing between the materials the value currently selected  remains in the list until another is selected from the list. Once another value has been selected, only the correct values are available, but immediately after the material has been changed the thickness for that material is incorrect and could lead to operators specifying an unavailable thickness.

View 3 Replies


ADVERTISEMENT

AutoCAD Inventor :: Multi-Value List Not In Order

Jan 10, 2012

I am trying to create a form, so that my designers can pick their parameters when they first start a new part. 

For this form I have created a multi-valued parameter for them to select from.

My issue is, why does Inventor not list fractions in the correct order.

What I would like to see:

1/8"
3/16"
1/4"
5/16"
3/8"
7/16"
1/2"
9/16"
5/8"
11/16"
3/4"
13/16"
7/8"
15/16"
1"

What Inventor lists:

1"
1/2"
1/4"
11/16"
13/16"
15/16"
3/8"
3/16"
5/8"
5/16"
7/8"
7/16"
9/16"

Is there a way to get Inventor to list these parameters in order of value?

View 2 Replies View Related

AutoCAD Inventor :: ILogic Multi-Value List From Materials

Jul 8, 2012

I am trying to populate a multi-value user parameter with a list composed of the various materials available from the iProperties "Physical" tab. So far I have this:

For Each material In iProperties.Materials        
Bracket_Material.Items.Add(material)        
Next
iProperties.Material=Bracket_Material
Running the Rule gets this error message:
Rule Compile Errors in Material_Rule, in _Mounting_bracket.ipt

Error on Line 2 : 'Bracket_Material' is not declared. It may be inaccessible due to its protection level.

I think I am doing the "Bracket_Material.Items.Add(material) " line wrong, but I don't know enough VB to fix it. It seems to me it IS declared in the Parameters table - isn't adding the parameter to the parameter table sufficient to declare it?

Eventually I want to add the Bracket_Material Parameter to a form so the user can select material from drop down list and assign it to part.

View 3 Replies View Related

AutoCAD Inventor :: Add Empty Text Value Within Multi Value List

Aug 12, 2013

I could add an empty text value within an multi value list in inventor 2010, but I don't think i can do the same thing in 2013, is there a possible way to do it?

Btw, when by an empty text value I dont mean a space.

View 2 Replies View Related

AutoCAD Inventor :: Cut List From Multi Body Part File?

Jun 12, 2012

When is the functionality of generating a cut list from the multi body part file going to happen?

This is available in Solid Works and ver frastrating its not for Inventor.

View 8 Replies View Related

AutoCAD Inventor :: Saving A Multi Value Parameter List Externally From The Part

Jan 17, 2013

I have an iLogic template part that has a multi value parameter. In this case the product code can be selected from a list of 4 codes. In futre we may need 5 and the 5th may need to be available to older parts.

I would like to avoid having to add the 5th as an option to every part we've ever made when the 5th becomes required.

I'd like to have the list of codes stored in an external file (Possibly an xml) and the template part reference that file to acquire it's list of available codes. That way I can add codes to the xml and all the files will have their list of available codes updated.

View 2 Replies View Related

AutoCAD Inventor :: Add Item To Multi-Value-List Of User Parameter (2012 API)

Jan 3, 2014

IV2012 API with VB:

How can i add an item to a Multi-Value-List of an existing User Parameter in Inventor2012 (Accessing API with Visual Basic) ?

My idea is for example:

uParams.Item(i).ExpressionList.AddItem(As String)

The problem is, that such a function "AddItem" doesn't exist.

View 4 Replies View Related

AutoCAD Inventor :: Content Center Multi Select / Change Size

Aug 1, 2012

Is there a way to pick (16) hex bolt from the content center in any model and change the length of them all at the same time.

View 1 Replies View Related

AutoCAD Inventor :: Change Multi Value Select To Custom Value Input In Ilogic User Parameters

Aug 31, 2011

I want to change 'mutil value select" to "custom value input" in ilogic user parameters. something like this:

if condition A then

multivalue.setlist("length", 1,2,3,4,5)
else

(users can enter any value they want, how can i remove the list first and set it to custom value input?)

View 2 Replies View Related

Photoshop Elements :: Edit / Full List Of Effects And Contents Blank

Apr 10, 2013

How do I get the list back in the panel bin? I clicked every icon there and there are no list.  It was there from my old iMac but not in my new MacBook Pro.

View 4 Replies View Related

AutoCAD Inventor :: ILogic To Change Parts List Style

Feb 8, 2012

Below are 2 rules that run in succession to create and save a parts list from a base view in a drawing.

I am now trying to set the parts list style to a custom style, ideally while creating the list.

Also, I have to manually go into the list to turn off visibility of certain items (based on material), does I can do this with Ilogic?  I ask because these steps precede a rule that automates placing base views of all parts in the parts list.  If I could get the style and visibility right, I could automate the entire process.

Looking for changing such a style with ilogic?

Inventor & Vault Pro 2012
Windows 7, 64bit
Core i7 920@2.67
8GB

CREATE PARTS LIST____
' Set a reference to the drawing document.
' This assumes a drawing document is active.
Dim oDrawDoc As DrawingDocument
oDrawDoc = ThisApplication.ActiveDocument
'Set a reference to the active sheet.
[Code] .....

View 9 Replies View Related

AutoCAD LT :: Make A Change Ribbon Contents It Goes Back To Default Top Position

Mar 12, 2012

just upgraded from 2004 to 2012.  Wow, sure looks different.I'm playing around with the ribbon & don't know how to stop an annoying behavior.  I position the ribbon locked to the side of my display because I have a wide screen & if docked to the top I end up with a very wide, skinny drawing area.  when ever I make a change tp the ribbon contents it goes back to the default top position, after which I have to relocate it again.  Is there a way to get it to remember the previous position of the ribbon?

View 3 Replies View Related

AutoCAD Inventor :: ILogic Rule To Change Parts List Style

Jul 2, 2013

I need an ilogic rule to autmoatically change the style of the parts list in a drawing file.The parts list style already exist in the drawing.

View 2 Replies View Related

GIMP :: How To Change Contents Of Toolbox

Aug 1, 2012

On the GIMP home page it says GIMP v2.8 was released on 2012-05-03.On the downloads page it says for Ubuntu use the Ubuntu Software Centre.That only has v2.6.12 .There doesn't seem to be any other way of getting it.

I want the latest version because various posts indicate the counter-intuitive behaviour of Toolbox Window etc has changed, and it seems pointless to complain if it has already been fixed.

My question on v2.6.12 is: since there are only 3 tools in the Toolbox that I ever use,and no buttons to bring up the Brightness/Contrast dialog etc,how do I change the contents of Toolbox ?In most apps, for example Firefox, you have View > Toolbars > Customiseand can then drag and drop the buttons you use regularly from/to a pool of buttons.

I thought there must be at least a plug-in that does that, because it is so obvious,but the plug-ins registry doesn't seem to have anything like that under Toolbox or Toolbar.

View 3 Replies View Related

AutoCAD Inventor :: Truncated Balloon Contents

Sep 18, 2012

If you're displaying the part number in a balloon, is there any way to truncate what is shown?

e.g., I have a part number "abc12xyz89", and want the ballon to display only "xyz89".

View 4 Replies View Related

AutoCAD Inventor :: Custom Catalog In Contents Center

Jul 26, 2012

We are expanding our OEM range.  I am having trouble adding the parts to our Inventor contents center.  I have linked parameters like "L1 and L2" to determine the part's size.  When I place this part form the contents center I do get Key Columns for L1 and L2.

However, I am only getting one size under each column.  I tried setting values to the parameters before publishing the parts, but this made no difference.

View 2 Replies View Related

AutoCAD Inventor :: Custom Catalogue In Contents Centre

Jun 26, 2013

We are working with Inventor Professional 2014.Since switching every time we create a bolted connection using content center files inventor will not let you proceed without checking the bolt/washer/nut out from vault.

This causes issues as other operators are constantly out of date.Also we have custom properties created in our files to tally up with our descriptions on drawings.Every time it is checked out it clears the info and creates new version.

View 3 Replies View Related

AutoCAD Inventor :: Tessellate TextBox Contents Into Geometry?

Dec 13, 2012

I am using Inventor 2013 API for an application that imports Solid bodies and Sketches from Inventor parts.

Observed that when we import sketch entities, the Text object simply returns 4 lines representing its bounding box. What I want to do here, is to get the formated text as a collection of geometric entities. (lines, splines, arcs)

Is there any API available to "explode" text into entities, or may be a cleaner method that simply returns tesselation of formated text?

View 1 Replies View Related

AutoCAD Inventor :: ILogic To Demote Contents Of Browser Folder

Apr 17, 2013

I'm trying to create an ilogic rule that will look within the folders of an assembly and take the contents of each of those folders and demote them to separate sub-assemblies.

ie. Assembly1 contains NewFolder 1.  NewFolder 1 contains Part1:1 and Part2:1.  Upon executing the ilogic rule, I would like Assembly1 to contain NewFolder 1 and within NewFolder 1, Assembly1-01.  Assembly1-01 contains Part1:1 and Part2:1.  I would like this ilogic rule to look within each successive folder within Assembly1 and demote them according to their position in the browser such that NewFolder 1 - at the top of the browser list - contains Assembly-01, NewFolder 2 contains Assembly-02, etc.

I currently copy a master assembly with browser folders that contain parts and sub-assemblies to a secondary assembly where I manually demote the contents of the folders to sub-assemblies.  When I create a drawing for our machine assembly department, the demoted sub-assemblies to isolate only those parts - nuts, bolts and the pieces they fit to - so it is easier for the assembly department when putting a machine together.

Is it possible, using ilogic, to demote folder contents to sub-assemblies with an assembly document?

View 2 Replies View Related

AutoCAD Civil 3D :: How To Change Properties Of Multi Leader

Sep 27, 2012

I am using Arial font.  When I use a multi leader and snap to a line the text is BOLD.  How do I change the properties of the multi leader to elevation 0.00 so the text will not be bold.  I tried moving the multi leader to a line with elevation 0.00, but it is still bold. 

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Multi Change Layer

Feb 6, 2012

I have the following Lisp command that changes a selected layer to a different layer. I have tried modifying it change known layer names to different known layer names. i.e run routine and it changes layer "2" to "3" then changes layer "dim" to "dims" ect then stops.

View 5 Replies View Related

AutoCAD 2010 :: Change Attributes Properties Inside Multi Leader

Apr 9, 2013

Is there a way to change attribute properties (ex. text width factor) when the block is inside a multi leader? Double click on it only show the attribute value, not the enhanced attribute editor.

View 2 Replies View Related

Photoshop :: Multi Layer Change

Sep 6, 2006

I add one ore two duplicate layers to the background layer. Then I add multiple adjustment layers (e.g., Hue/Sat; Brightness, Cotrast,etc.). Then I want to use the Clone Stamp to take something off of the background. The only way I am able to remove an item with the clone stamp is to remove it from the background and the duplicate layers ONE LAYER AT A TIME. Of course, I could always remove the object before I make the dups, but is there anyway to do this by going to any ONE layer and removing the object (using the Clone Stamp or any other tool)?

View 2 Replies View Related

AutoCAD Inventor :: Inserting One Drawing Into Another / Linking Contents Of One Drawing To Another

Dec 2, 2013

I would like to know if there is a way to insert drawing no.1 into drawing no.2 (not copy sheets!) so that if I change the drawing no.1, the drawing no.2 (the one that contains no.1) also updates.

That is because I would like to have one part of the drawing that is ''standard'' and multiple drawings that contain this part (so that this part is defined in all drawings but is always the same). Because I don't want to have a separate drawing for the ''standard'' part, but only drawings that contain it.

View 4 Replies View Related

AutoCAD Inventor :: Multi Thread Through API

Jul 29, 2012

You can organize a multi-threaded work with data through Inventor API? For example, there is a assembly and I need the first part of assembling a list of items to consider in a data set, the second part of the list - in the second data set, the third - the third and so on up to N, where N - depends on how many threads can run in the system . Whether these flows are processed and to receive data in parallel? Or go to the consistent implementation of this algorithm will first be processed by the first part, and only after it will start the second ...?

Autodesk

View 3 Replies View Related

AutoCAD Inventor :: How To Use Multi-core

Mar 29, 2013

I have a multi-core machine. How can I tell Inventor to use as many cores as possible?

View 6 Replies View Related

AutoCAD Inventor :: Multi Directional Keyway

Dec 21, 2011

I am using 2012 currently. I am trying to make 2 key ways in opposite sides of a short aluminum round tube or bushing. the keyways will start at the top edge of the tube,  cut to the center of the tubes length, then go 90 degrees in either direction going with the curvature of the tube wall, then back towards the top edge, but not all the way back out.The keyway will be through all, on both sides.

It essentially is a twist lock for a shaft with two pins to be pushed in, turned 90 degrees and sprung back into a locked position.  What autodesk intended its Inventor 2010 and 2012 users to use to put this feature into the parts drawing or model.

View 6 Replies View Related

AutoCAD Inventor :: Multi Sheet Layout

Jan 10, 2012

Our configuration management tool requires a DWG for our system assembly drawings.  A single DWG with all the sheets layed out in a sheet space.  Right now I do a "Save As" out of inventor and it creates X number of seperate DWG files and then I stitch them together in AutoCAD by taking each sheet and placing them into a single sheet space (copy paste). My work flow would be much faster if I could get Inventor to create a single sheet space with all the active or selected sheets as a single DWG output.

View 4 Replies View Related

AutoCAD Inventor :: Multi Width Polyline

Oct 22, 2012

I am having a problem with trying to come up with a way to create an inventor entity that is like an an autocad multi-width polyline. We make some of our lines in our silk screen as multi-width polylines - see example fig 1. I can't figure out how to accomplish this type of line effect in inventor - see example fig 2. We are actively trying to move from MDT2009 to Inventor and i can recreate most everything except this multi-width polyline.-

View 2 Replies View Related

AutoCAD Inventor :: Multi Part Holes

Feb 20, 2013

I have a 3 part assembly . Holes have to be made though the 3 parts . The holes can be made and snet/projected/though all/though distance  and this work fine. The holes are shown in each part and the participant command works fine

The holes are shown in a drawing file....all GOOD

BUT

The holes are NOT shown when each part is opened!

View 3 Replies View Related

AutoCAD Inventor :: Create Multi-value Parameter With ILogic?

May 1, 2012

Is there a way to create a multi-value parameter with ilogic?

Inventor Pro 2013 (PDS Ultimate)
Vault Pro 2013
Windows 7 64
Xeon 2.4 Ghz 12GB

View 9 Replies View Related







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