AutoCAD Inventor :: Changing Extrusion By Changing Sketch Results In Errors
May 9, 2013
The attached files are two sprockets. The original part has 30 teeth. I need 34 teeth.
The MODIFIED part has one of my attempts at making 34 teeth. I have tried the following with the same error dialog box (see below):
1. Edit Sketch_6 (associated with Extrusion1) by deleting all but one of the teeth lines (2 arcs and 2 lines that make up a tooth) and making a circular pattern of 34.
2. Same circular pattern, except this time I "Close the Loop" (right-click on one of the teeth line segments > Close Loop > click on all the segments until the loop is closed).
3. Same circular pattern, except this time change the resulting patterned lines into construction lines, trace these lines with arcs and lines of my own (not construction lines), and close the loop on my own lines.
When each of the 3 attempts failed, I tried deleting Extrusion1 and making a new Extrusion feature from Sketch_6. I cannot select what I want in Sketch_6 in order to make the teeth.
I'm at the point where I'm just going to take the dimensions from the circular pattern sketch of 34 teeth, delete Extrusion1 and Sketch_6, and make my own sketch and extrusion.
For the future, I really would like to know - why is it so difficult to alter features like this? Yes, I understand that Sketch_6 is not fully constrained, and on top of this I am not privy to how it was generated in the first place (this is a part file from a vendor). But it does not strike me as something overly complicated for the Extrusion feature to recognize a change in its associated sketch. This is not the first time I have encountered something like this.
View 1 Replies
ADVERTISEMENT
Dec 26, 2012
(Image attached). I am using Inventor 2013 and Visual Basic 2010 Express. I created a sketch within one of my views on my .idw. I would like to turn this sketch on or off based on the input from a variable that is read elsewhere. I have used the following code from the help file with no luck so far.
Public Sub SketchEdit() Dim oDrawDoc As DrawingDocument oDrawDoc = _invApp.ActiveDocument ' Determine if there are any sheet overlay sketches. Dim oSketches As DrawingSketches oSketches = oDrawDoc.ActiveSheet.Sketches If oSketches.Count = 0 Then Exit Sub End If ' Set a reference to the first sketch. Dim oSketch As DrawingSketch oSketch = oSketches.Item(4) oSketch.Edit() If vValue_Closer = "" Then oSketch.LineWeight = 0 Else oSketch.LineWeight = 0.007 End If ' Return from edit mode. oSketch.ExitEdit() End Sub
The code errors out on the line 'osketch = osketches.item(4)'. I have tried using a number like that, and I have also tried using the actual name of the sketch. Neither works.
oSketch = oSketches.Item("Closer_Reinf")
what to edit here to get it to look at my Closer_Reinf sketch to hide it/unhide it ?
View 8 Replies
View Related
Feb 29, 2012
I am having trouble changing the dimension text size of any 2d or 3d sketch..
the default has changed for some reason (i might have accidentally changed it while looking for something the other day) but i need to know how to change it back.. I can't do anything without a dimension getting in the way!
View 2 Replies
View Related
Sep 25, 2012
I understand how the current extrusion command works - You have a 2D polyline profile and you apply the extrusion command to that, getting your 3D shape.
However, I have a drawing full of different sized extrusions based on the same 2D polyline, and now I want to change that initial 2D polyline without having to manipulate each polyline separately. I thought it would be much better if the initial 2D polyline were referenced, allowing you to swap that inital 2D polyline with another 2D polyline. Is there a way - or a plugin - that is available to do this in AutoCAD?
FYI - the profiles are used in kitchen doors, and I want to be able to simply change the door profiles without resorting to re-extruding the whole lot.
View 9 Replies
View Related
Mar 30, 2012
I am using Inventor 2012 and am having issues trying to do a parametric study. I want to view the results for different extrusion thicknesses of each tine after running the "simulate" command. for some reason it will only show the results for my original thickness. i am think it may have something to do with my constraints and how i have them set up. i attacked my Inventor file and hopefully a pic of what i am working with.
View 9 Replies
View Related
Jun 26, 2013
I'm at work and i'm getting this terrible bug where modifying a value for one of the Character settings result in some random large value. So far it happened for Font Size, Line Height, Character Spacing and Base Line Shift.
It seems this issue has been around since CS6 was released, with dates ranging from Early 2012 to early 2013. This greatly impacts my work production.
Just want to see if other issues were relevant and its true that when you transform the text, the character scaling goes wonky. So is there a solution to this yet? This issue has been around since early last year.
View 21 Replies
View Related
Apr 10, 2012
I have a sketch for a 1.125" tall bounding wall. The inside contour is projected, and the outside contour is offset .125." When I extrude the desired profile, the inside corners, which are project radii, turn inside out. I don't know how else to explain it. I will attach before/after screen shots.
I reboot my PC at lunch because I was getting other odd errors, lots o' C++ runtime joys. That was some two hours ago, and I had a slew of errors/crashes after that around one. Now, no error messages, but this interesting occasion.
View 1 Replies
View Related
Jun 21, 2012
In working with Autodesk Inventor I accidentally exited out the menu that displays all my different extrusions and sketches. what this menu is called and how I get it back?
View 2 Replies
View Related
Apr 16, 2013
I am trying to extrude sketch 3 to the Extrusion 1 but keep getting Error....is this the wrong way to create?
Also the Extrusion 2 cut out for centre hole does not seem completely round.....
Could this part be made using better techniques.....how can i create this part with better steps
Inventor Edu 2013
View 4 Replies
View Related
Aug 31, 2012
I am new to Inventor, running Inventor 2012. I know Solidworks.
I have a sketch with ellipse and then squares inside the ellipse. I am trying to edit the part not create. The program extrudes either ellipse or squares. New problem: the extrusion is picking wrong sketch. I need to finish the part....
View 9 Replies
View Related
Jul 25, 2008
I am trying to create a sketch on a face for an extrusion. The sketch has a text box. I am having trouble excluding the text in a sketch otherwise all the closed geometries of the text get extruded.
I created an objectCollection and excluded the TextBox objects. Still not working.
View 6 Replies
View Related
Mar 18, 2013
I am trying to creating an extrusion with a sketch containing multiple circles. However, the AddForSolid() Method is not working properly, returning non-NOERROR is C++. Below is the code that I used to create a sketch(which is succeeded) and then try to create a extrusion (in my case cutting).
ApplicationPtr pInvApp;pInvApp.GetActiveObject("Inventor.Application");DocumentPtr pItem;pItem = pInvApp->GetActiveDocument();PartDocumentPtr pDoc;if(pItem->GetDocumentType() == kPartDocumentObject)pDoc = pItem;SelectSetPtr selectedItem;selectedItem = pDoc->GetSelectSet();FacePtr face;//printf("
[code]....
View 6 Replies
View Related
Jun 11, 2013
I want to reset the number for the sketches, extrusions, etc. in the browser tree of my template file to start with 01 instead of sketch48 and extrusion69.
I also want to reset the model parameters to start with d0 instead of d485.
The attached image show an example of a simple cylinder that I created from my .ipt template file.
View 5 Replies
View Related
Mar 20, 2013
I'm not sure what I did to make this happen or how to change it back, but for some reason when I change the size of an object/line it changes the stroke weight as well. (For example, if I drew an ellipse with stroke weight 2 pt, and then increased the size the stroke weight would be 2.856 pt or some such number instead of 2 pt.) How to change this back?
View 3 Replies
View Related
Jun 18, 2012
I'm using CS4. I have multiple layers of text and I want each one to have a different drop shadow effect. When I try to chnge the settings of one layer's shadow, all the layers change. Is there a way to stop this?
View 2 Replies
View Related
Mar 17, 2013
I want to change the size of the image in Gimp to 3957x4429 px (67x75 cm) at a 150dpi (the image we have has a 300 dpi.) When i do this in image - print size it keeps changing the width.
The system is not allowing me to get the picture a few cm larger. Is there any way I can overwrite this?
View 1 Replies
View Related
Sep 7, 2006
I have an image, I just need to changethe text in that image without changing anything else.
View 5 Replies
View Related
Nov 16, 2011
I'm placing a view in .IDW file (making 2D working drawing). Outlines of a part, assembly or anything you put into that .IDW are kinda thick. and whenever I move the sheet by pushing mouse roll button lines become much thinner and model becomes more sharp-shaped so to speak.
And whenever I turn off visibility of one part in assembly drawing then the whole assembly becomes kinda thin. It is much easier to see later on a paper those parts and also easier to see them in .PDF files. I attached picture to this message. On vie number 1 is a standard view and 2 view is with those thin lines.
Tried to change it somewhere, but couldn't find a representation of this option.
View 1 Replies
View Related
Oct 31, 2011
I created a part, then created an assembly and put the part in the assy. Now I have changed the name of the part but it still shows up as the origional name in the assy. How do I get the name in the assy to match the part?
View 9 Replies
View Related
May 29, 2013
When you place a part (let’s say structural steel part) from content center as a custom part and later change the part size, the browser still shows the old part name which makes it very confusing when scanning through the browsers when you're trying to find something. It makes it almost unusable if you can’t trust the description. How do others handle this? I know about browser rename but that won't work because it defaults back when you close and reopen.
View 4 Replies
View Related
Aug 21, 2013
I've been using Photoshop CS2 for several years to enhance my photographs, but just now have encountered something simple I cannot find out how to do. I have on the background layer a picture of a room interior with the exposure set mostly for the open window, but the rest of the room is very dark. On the only other layer, the upper one, I have the same shot exposed correctly for the room, which overexposes the window area. The upper and lower layers are perfectly superimposed, and the upper layer is at 100% opacity.
I have selected the window on the upper layer and want to change the selected area's opacity to blend properly with the window on the bottom layer without changing opacity of the rest of the layer. No matter what I do, changing opacity seems to affect only the entire layer, and I haven't figured out how to isolate the selected area for the opacity change.
I can cut the selection to reveal the darker window on the bottom layer, but this doesn't give me the flexibility I need to balance the two exposures. An opacity change would be ideal.
View 2 Replies
View Related
Nov 14, 2011
I am creating drawing template and I try do edit BOM style. By default my precision is .000.
I want to change it. How do I do it?
View 6 Replies
View Related
May 3, 2012
When I save to acad my Dia dimensions are changing to a 4 place decimal. My radius dims stay the same.
INV 2009 SP 2.
View 1 Replies
View Related
Aug 29, 2012
When I use AutoCAD Inventor:
* Rolling the mouse wheel toward me, the object zooms larger, and
* Rolling the mouse wheel away from my body, the object zooms smaller.
Just the opposite, when I use good ole' 2D AutoCAD and AutoCAD Electrical:
* Rolling the mouse wheel toward me, the object zooms smaller, and
* Rolling the mouse wheel away from my body, the object zooms larger.
Is it possible to change the zoom function in 2D AutoCAD and AutoCAD Electrical to operate in the same fashion as in Inventor . . .
View 2 Replies
View Related
Nov 16, 2012
Using Inventor 2013. As you know it's impossible to chang iproperties values of the library parts in inventor session (for instance in asm file). The error message comes "readonly".
But when you open iproperties of the file in windows file explorer then it's possible to change iproperties values while library parts open in inventor session in asm.
Normally I copy the file location path of the library part and open this path in the windows file explorer and find the part and right-click on file and change iproperties values which I want to change stock number, part description etc...
Is it possible to create VBA code or API which can open iproperties box of the selectet part outside of the inventor session in windows file explorer?
View 5 Replies
View Related
Feb 3, 2012
How do you change from one i-part to different one within the assembly?
View 4 Replies
View Related
May 1, 2013
I have a master assembly containing three sub-assemblies 1, 2 & 3.I require 3 Drawings from this master assembly.
Drawing 1 showing master assembly, sub-assemblies 1 in full and 2 & 3 in reference.
Drawing 2 showing master assembly, sub-assemblies 2 in full and 1 & 3 in reference.
Drawing 3 showing master assembly, sub-assemblies 3 in full and 1 & 2 in reference.
This sounds so simple but is it possible?We have tried all manner of configurations with LOD.I'm not really keen on locking design views as the assemblies can change at any time.
View 9 Replies
View Related
Jul 24, 2013
I have been creating a drawing of a Assembly and realized that I had drawn it on a Company "D" size border by mistake. How do I change it to a "B" size border without starting over?
View 5 Replies
View Related
Oct 11, 2011
Is it possible to change a Parameter value through iProperties? I have pipe with carries a "Length" parameter for its length. I checked the " Export Parameter" to make this value visible in the iProperties. Is there a way to create a Macro to make this possible? I'd love to be able to change pipe lengths without physically opening the file. This is my first time getting into programming/ macros.
View 1 Replies
View Related
Nov 24, 2013
Dim oAppAsset As Inventor.Asset oAppAsset = m_inventorApplication.AssetLibraries.Item _
("Autodesk Appearance Library").AppearanceAssets.Item("Machined 03")
oPartDoc.ActiveAppearance = oAppAsset
Dim oNewAsset As Inventor.Asset
oNewAsset = oPartDoc.AppearanceAssets.Item("Machined 03")
Dim oValue As AssetValue oValue = oNewAsset.Item("generic_bump_map")
Dim oColorValue As ColorAssetValue oColorValue = oValue
oColorValue.HasConnectedTexture = False
The above failed while changing the HasConnectedTexture. How to overcome this.
View 1 Replies
View Related
Sep 8, 2011
How can I change transparency of a part within itself or within an assembly? (I.E. leave its original color as is, but changing/"tweaking" its transparency).
View 9 Replies
View Related