AutoCAD Inventor :: Change The Size Of Revision Tag's Geometry?

Jul 29, 2008

You know the square, traingle, circle, and the hexagon shapes that are used on the revision tags? How do I change the size of the geometry to be smaller? If I just change the text size, all that changes is the text, the geometry remains the same. I'm wanting to make them ultra small so that when there are lots of revisions, it doesn't clutter up the drawing too much.

View 3 Replies


ADVERTISEMENT

AutoCAD Inventor :: Change Revision Tag Size

Nov 8, 2011

I have a question about the revision tag. It's seam that we can not change the size of the balloon or Triangle. But we can use a user symbol. But we can make this choice only after placing the tag. see picture.

My question is : It is possible to make this choice in the stylelibrary ?

View 2 Replies View Related

AutoCAD Inventor :: Change Revision Tag Triangle Size

Jan 12, 2011

I Have problem to change Revision Tag Triangle size. I need to suit the triangle size to the proportional size (as shown on attachment).

View 8 Replies View Related

AutoCAD Inventor :: ILogic - Reposition Revision Table On Sheet Size Change

Sep 24, 2012

a customer has a title block with a revision table ( standard vault revision table)  add on top of it.

If you change the sheet size the revision table remains his position.

If found the way to reposition the table with a ilogic rule.:

'point afstand in cm
PointX=(ActiveSheet.Width/10)-13
PointY=5.5
'punt vanaf rechtonder gemeten in cm

[Code]....

This is working perfectly. But now the challange how to trigger this rule to run if you change the sheet size?

if tried:

trigger=Activesheet.size

or

to create a userparameter and added this line in my rule : Size=ActiveSheet.size, normaly is you change parameters it triggers the rule to rule. but both way didn't work.

Can event triggers from the API be used?  Do i need the "Onchange" event? Any example for a ilogic rule?

View 3 Replies View Related

AutoCAD Inventor :: Reduce Size Of Revision Tag

Oct 2, 2012

I'm looking at a way to reduce the size of the revision tag in inventor, cause its size doesnt fit in our drawings, we have the habit to put as much info as possible on the sheets but when we get a revision the tag is too big..

 Is this possible?

Currently using Inventor2012 & soon will be using 2013

Inventor 2013

View 8 Replies View Related

AutoCAD Inventor :: Possible To Extract Part Revision And Place In IDW Revision?

Jun 5, 2012

I am trying to create some new templates for 2013 and I'm trying to figure a way to get the model revision number to populate into the drawing's iproperty revision number so that they will match upon save. I'm trying to do this by creating an ilogic rule but I don't see a system property in the idw that will allow me to access the 3D model iprops. I am going to Event Trigger the rule to run Before Save. Is this possible?

On the drawing border I have created a formatted text box that is built as:

Type: Properties - Model
Property: Revision Number

It simply pulls the data from the models revision number and populates the text box. I need this same thing to happen but rather than populate into a text box I need it to populate into the drawings revision number iprop. 

Boxx Technologies 4920 Xtreme - Win7 64bit
Intel Core i7 3960X @ 4.5 GHz - 64GB RAM
NVidia Quadro 4000 - Quadro 600 - Tesla C2075 (driver 307.45)
Product Design Suite 2014 (SP1) - Vault 2014 Pro SubRel1 - CFD Sim 2014 - Bunkspeed Pro 2012

View 7 Replies View Related

AutoCAD Inventor :: Projected Geometry Does Not Update Upon Change

Jun 3, 2012

I am struggling with projected geometry that is for some reason not updating in sketch when I change sorce element.

I have sketch in ipt file A.ipt

A.ipt is placed in A1.iam.

in A1.iam I create or place B.ipt

in B.ipt I create sketch and project some elements of A.ipt sketch to it.

After any change i sketch in A.ipt file I and up with elements projected to sketch in B.ipt not muchning elements they ware projected from.

I tried I think everything, adaptivity, creating additional points i A1.iam (they update properly but still projection is not updating).

View 9 Replies View Related

AutoCAD Inventor :: Fundamental Change Of Geometry Near The End Of Project?

Nov 27, 2012

I am designing a vacuum part in Autodesk Inventor, which is essentially a long cuboid shape with various valves and spaces for windows along it's length (see attached pic). Upon finishing the design of this part, a few details need to be changed - one being the fundamental shape of the object. It now needs to be a larger square section attached to a long cuboid section (as I found out the valves on the right hand side of the drawing are around double the size they are in this drawing). Rather than restart the project from scratch, I would like to only modify one of the ends to be extruded out into a square shape, or something like that. My first idea was to use the split command in order to split the faces into what I did and didn't want to change, but upon starting this, I don't think this is the best way.

View 2 Replies View Related

AutoCAD Inventor :: Use Edit Sketch To Change Path Geometry

Dec 19, 2013

"Path has discontinuous segments. Use Edit Sketch to change the path geometry"

View 5 Replies View Related

AutoCAD Inventor :: Change Length Of Geometry By Text Parameter?

Mar 15, 2013

I need to change the length of geometry by a text parameter.How to do this?

I tried this:

If widthselection="420" Then
Parameter(d11)=725mm
Parameter(width)=420mm
ElseIf widthselection="620" Then
Parameter(d11)=1075mm
Parameter(width)=620mm

[code]....

View 2 Replies View Related

AutoCAD Inventor :: ILogic Rule To Populate Finished Material Size Based On Model Geometry Selection

May 23, 2012

I created the following user parameters:

-Thickness
-Width
-Length
-Dia

I then created a Custom iProperty which consisted of the following "formula":    Finished Material Size = <Thickness> x <Width> x <Length> Lg.

eg. of Finished Material Result :        Finished Material Size = 6 x 25 x 300 Lg.

The problem comes up when dealing with diametrical components as the above formula will only populate for square or rectangular parts. Which would work if I could use iLogic code to populate the Finished Material Size iProperty. I have tried but failed.

First I created another user parameter called "Geometry Type" which has a drop down selection of either "DIA" or "SQUARE, RECTANGULAR".I then created the following iLogic code to set 0 as the value for the "unused" size parameters

 If PART_GEOMETRY = "DIA" Then WIDTH = "0"If PART_GEOMETRY = "DIA" Then THICKNESS = "0"If PART_GEOMETRY = "SQUARE, RECTANGULAR" Then DIA = "0"
 The part I just can't get to work is as follows.

I need some iLogic code which will populate the "FINISHED MATERIAL SIZE" custom iproperty with one of the following based on my "GEOMETRY TYPE" selection. "DIA" would return the following to "FINISHED MATERIAL SIZE":      = Ø <Dia> x <Length> Lg.

While "SQUARE, RECTANGULAR" would return the following to "FINISHED MATERIAL SIZE":     = <THICKNESS> x <WIDTH> x <LENGTH> Lg.I tried the following code but it does not work:

If PART_GEOMETRY = "DIA" Then iProperties.Value("Custom", "FINISHED MATERIAL SIZE")= "Ø"DIA "x" LENGTH "Lg."If PART_GEOMETRY = "SQUARE, RECTANGULAR" Then iProperties.Value("Custom", "FINISHED MATERIAL SIZE")= THICKNESS "x" WIDTH "x" LENGTH "Lg."

View 2 Replies View Related

AutoCAD Inventor :: Any Feature Is Not Recognized As Part Geometry Change Because rule Isn't Triggered

Dec 6, 2013

In our drawing file we expose the mass of the part. So I have set the 'Update physical properties on save' in the 'Application Options'. This works fine when you save your file before switching to the drawing file. If you forget to save and go to the drawing file the mass is showed as: N/A.

Therefore I have created a rule which updates the mass of the part. This rule is activated with the 'Part Geometry Change' event trigger. This is done to update the mass in the drawing file even when the partfile is not saved. This works fine. If I make any changes to the model the mass is updated correct, EXCEPT for deleting features. When I delete a feature and switch to the drawing file the mass is shown as N/A again. So apparently deletion of any feature is not recognized as a 'Part Geometry Change' because the rule isn't triggered.

View 7 Replies View Related

AutoCAD LT :: How To Change Revision Cloud To Line

May 30, 2013

How can i change a revision cloud to line.

View 1 Replies View Related

AutoCAD 2013 :: Drawing File Name Revision Change

Apr 30, 2012

What is the best way to change a large number of file names from Rev A to Rev B? Should I use a program such as Lupas rename or is there a Script or Lisp routine that would work better?

View 2 Replies View Related

AutoCAD 2010 :: Revision Cloud - Manually Change Layers

Apr 20, 2012

Is there a way to have the Revision Cloud be put on the correct layer by default rather than having to manually change layers??

IDSP Premium 2014 (mainly Civil 3D 2014 UKIE SP1 & Infraworks with some limited 3ds Max Design)
Win 7 Pro x64, 256Gb SSD, 300Gb 15,000 rpm HDD
16Gb Ram Intel Xeon CPU E5-1607 0 @ 3.00GHz (4 CPUs), ~3.0GHz
NVIDIA Quadro 4000, Dual 27" Monitor, Dell T3600

View 4 Replies View Related

Revit :: Revision Cloud / Change Tag Numbering?

Jun 27, 2012

Im having to cloud Revisions to my drawings. Heres what my Revision Schedule needs to be like
 
Revision 2         (Tag # 4)
Revision 1         (Tag # 2)
Bid Issue           (No Tag)
 
Is there any way to change the Tag number? Because right now this is what im getting
 
Revision 2         (Tag # 2)
Revision 1         (Tag # 1)
Bid Issue           (No Tag)

View 1 Replies View Related

Revit :: Change Revision To Multiple Sheets?

Jul 3, 2013

how I can change the revisions to multiple sheets quickly, instead of going into each and every sheet and manually changing the revision?
 
Surely Autodesk has a fast and simple way to do this.

View 9 Replies View Related

AutoCAD Inventor :: How To Change Dimension Size

Sep 22, 2012

I am in inventor and I need to draft up some diagrams for a lab report for school. They all have to be to scale so my dimensions will work properly, the only problem is, when I want to take a screenshot of the image to put into my document, the dimensions are way too **** small. I have tried everything to change them and nothing has worked. I don't know where my command line window is so I can't go directly to dimstyles.

View 3 Replies View Related

AutoCAD Inventor :: How To Change Size Of Project

Jul 16, 2013

I created 3 parts, which I shell use in my presentation. But when I put they near, I saw that they have big changes in size. How can I correct this without making new projects?

View 8 Replies View Related

AutoCAD Inventor :: VBA Change Sheet Size

Sep 27, 2012

I am having an issue with changing sheet sizes using VBA. Due to the constraints under which my borders and title blocks were created, inventor forces me to delete the current border before changing the sheet size. I have 5 different borders and 2 title blocks.

-Borders
"A0 Border (13x8 Zone)"
"A1 Border (8x6 Zone)"
"A2 Border (6x4 Zone)"
"A3 Border (4x3 Zone)"
"A4 Border (No Zones)"

-Title Blocks
Title Block 1 - All sizes except for A4
Title Block 2 - A4 Only

I'm having trouble changing the sheet size. This is the extent of the code that I know actually works:
 
Option ExplicitPrivate oDoc As DrawingDocumentPrivate oSheet As SheetPrivate oBorderDef As BorderDefinitionPrivate oBorder As BorderSet oDoc = ThisApplication.ActiveDocumentSet oSheet = oDoc.ActiveSheetSet oBorderDef = oDoc.BorderDefinitions.Item("A0 Border (13x8 Zone)")Private Sub UserForm_Initialize() cmbPageSize.AddItem ("A0") cmbPageSize.AddItem ("A1")
[code].......

View 1 Replies View Related

Revit :: Change Revision Number Starts From 0 In Titleblock?

Nov 19, 2013

Is it possible to change the Revision Number as starts from 0,1,2,....... in Revit Titleblock.

View 1 Replies View Related

AutoCAD Inventor :: Change Default Size Of Hole

Sep 23, 2013

Somewhere in Inventor to override the default size when creating holes? I need to change the size of 3 mm to 4.2 mm.

View 1 Replies View Related

AutoCAD Inventor :: How To Change Ratio Size Of A Part

Nov 30, 2012

How do you change the ratio size of a part. I have a part and made it just a bit smaller than the constraints say. I want to up the ratio of it. How?

View 3 Replies View Related

AutoCAD Inventor :: Unable To Change The Font Size?

Nov 21, 2013

In the Autodesk Inventor drawing (.idw) I am unable to change the font size when i dimension a hole and thread. I have tried going into "Edit Hole Note" and "Text" when you right click on the dimension.

View 3 Replies View Related

AutoCAD Inventor :: Revision Letters

Aug 19, 2013

I have three rules in our stamp to the revision date and revision number to fill in.

Along our project number should include the revision letter stand out with the latest date.

Now I would like to see if the date entered by the revision number and revision letter that the letter therefore become filled in along the project number.

If the next date is fill in with the letter, that letter must be completed along the project number The dates and letters are "Prompted Entry" or do i need other properties.

Can this be done with iLogic?

Youre drawings are as good as the symbols that compleet them.....

View 1 Replies View Related

AutoCAD Inventor :: Deleting Last Revision Row

Jul 17, 2013

Is there a workaround to delete the last revision row with the edit icon (I've put in by mistake and would like to remove)According to Autodesk HELP:

"Note:The active row is always the most recently added row to the revision table. It is denoted by an edit icon and cannot be deleted."

View 5 Replies View Related

AutoCAD Inventor :: Revision Tag Text

Jul 25, 2012

We revise multiple items on a drawing at the same time. When we do this we add a number next to the revision letter to reference in the revision block. For example if we are on rev B and we revise 3 items we would need tags that say B1, B2, B3. We can edit the tags to reflect this, but I was wondering if there is any way to get the tags to do this automatically without using code.

View 2 Replies View Related

AutoCAD Inventor :: Change The Dimension Size In Sketch Mode?

Apr 8, 2011

How do I change the dimension size in sketch mode?

View 4 Replies View Related

AutoCAD Inventor :: Change Printer Paper Size With ILogic

Jun 28, 2013

I have created the code to print out the pages from a drawing using Ilogic and the Print Manager.However, I cannot get the ilogic code via the Print Manager to change either the orientation OR the paper size to suit the print out.

For example, If I have an A3 drawing i can create the Ilogic code for the Print Manager to select the page size of A3 (kPaperSizeA3) within the code, but when I run the code the printer will ONLY select the Default of A4 paper.

The A3 paper is in a different tray but I cannot get the Print Manager to Select the A3 Paper.The printer we are having this issue with is a HP LaserJet 5200...We are also having the same problem of Printing out 1:1 Scale drawing to an A0 Plotter.  I cannot get the Print Manager to change the Output Page Size either.

This is for a HP DesignJet 430...I have just tried to use the iLogic Snippet for Printing, and if you change the page size to suit A3 (kPaperSizeA3), the printer asks for a paper size of 312mm x 210mm....  This was with the HP LaserJet 5200.

how to get the Printer output paper size changed through the Print Manager.

View 2 Replies View Related

AutoCAD Inventor :: How To Change Color And Font Size Of RMC Menu

Feb 6, 2012

I have a query. How do I change the color and font size of the RMC menu? I am using Autodesk Inventor 2012 Suite. I find it quite small and hard to see.

I have attached an image of it.

View 2 Replies View Related

AutoCAD Inventor :: Delete Revision Table

May 6, 2013

I'm simply trying to delete the revision table if it exists on a drawing.  I did find where you can't do anything with Rev Tags with the API, but what about the Actual Revision Table? 

Trying to get this to work;
 
If iProperties.Value("Project", "Revision Number")>0Dim oRevTable as RevisionTableoRevTable = ActiveSheet.Sheet.RevisionTable.Item(1) oRevTable = nullRevisionTable

View 2 Replies View Related







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