AutoCAD Inventor :: Export Selected Face As DFX?

Dec 10, 2012

I have a script which saves the flat pattern from a sheet metal part as a dxf file. But we also have standard part files that we save a face as a flat pattern. So I'm looking to be able to select a face then run a script to save the selected face as a flat pattern in a dxf file.

View 1 Replies


ADVERTISEMENT

AutoCAD Inventor :: Create Workplane From Selected Face?

Nov 14, 2012

I am working on a project were I need to select a face and create a workplane out of such face, see the figure attach. my language of choice is C#. 

Here is what I think it should be done, my proble is that the oWork (the workplane I just created remains null) and the whole project crashes.
 
private Inventor.Application mApp = null;.....if (((mApp.ActiveDocument != null))){
if ((mApp.ActiveDocument.DocumentType == DocumentTypeEnum.kPartDocumentObject)){
PartComponentDefinition oPartCom = mApp.ActiveDocument as PartComponentDefinition;
PartDocument oDoc = mApp.ActiveDocument as PartDocument;if ((oDoc.SelectSet[1]) is Face){
System.Windows.Forms.MessageBox.Show("You just selected a surface", "Surface Evaluator");Face oFace = oDoc.SelectSet[1] as Face;
WorkPlane oWorkpl = oFace as WorkPlane;
PlanarSketch oSketch = oDoc.ComponentDefinition.Sketches.Add(oWorkpl, false);
//WHAT AM I DOING WRONG?
}}}

View 4 Replies View Related

AutoCAD Inventor :: Find Componentoccurence From Selected Edge Or Face?

Feb 20, 2013

I'm trying to find the ComponentOccurrence in an assembly from a selected edge or face of a Part

Snipset of the
Dim oPartCompDef As Inventor.PartComponentDefinition = oFace.Parent.ComponentDefinition
'or oEdge.Parent.ComponentDefinition
Dim oDoc As Inventor.Document = oPartCompDef.Document
Dim oOcc As Inventor.ComponentOccurrence = ..........?

View 3 Replies View Related

AutoCAD Inventor :: Export Face As (DXF)?

May 22, 2012

In Inventor 2013 when i export face as it is automaticly exported to DWG 2013 version. How to i set it to 2010 version export without having to do it everytime manually? (option then chooose 2010)

View 2 Replies View Related

AutoCAD Inventor :: Export Face To DWG + Info

Jan 25, 2013

I need to find a way to export the selected face to dwg and to have the Part Number and if possible the description written under the exported face. I don't know if it's possible to do this. I know it's possible to export programmatically the selected face, but is it possible to get the name + description into the drawing too?

We're just looking for a way to "automate" the creation of our laser drawings.

View 4 Replies View Related

AutoCAD Inventor :: Bend Lines In Export Face

Feb 8, 2012

When I use "export face as" to create a DXF file for our lazer table I loose the bend lines in the DXF. Is there a way to retain the lines in order to have the lazer scribe the bend lines for us?

View 4 Replies View Related

AutoCAD Inventor :: Unable To Export Face Completely

Sep 10, 2012

I made a part using the extrude function and cut some texts into the part by extrude (tried emboss) as well. However, when I select the face to export, letters that have area inside, such as "A", "O", etc don't like right because the face selection only selects everything outside the bounds of the letter- so the triangle island part in the "A" and the circular island part bounded by the "O" cannot be selected. This presents a problem for me as I'm trying to use a CNC to cut these letters out with a dxf file to feed my CAM program.

View 9 Replies View Related

AutoCAD Inventor :: How To Export A Selected View

Nov 18, 2011

I'd like to save a position representation to an image, but if I do this, it will save the master representation. So, how can I export a selected view?

Software: Inventor Series 2011 SP1 x64
OS: Vista Business x64
CPU: E6400
RAM: 2*2Gb GeIL
VGA: Quadro FX 550

View 6 Replies View Related

AutoCAD Inventor :: Export Selected Columns Of A BOM To Excel

Nov 28, 2012

I would like to be able to export the description column of a BOM to an excel file, and exclude all the other data. I can't see any reference to doing this in the API. We have almost 20 columns so deleting them once the file is made is a bit of a pain.

View 3 Replies View Related

AutoCAD Inventor :: Option To Merge Bottom Face Of Pad Eye And Pipe Curved Face

Oct 15, 2012

There is any option to merge bottom face of pad eye and pipe curved face... Something like

1. Extrude face to a surface  or
2. like notch option available in frame generator ?

N:B - pad eye is made by extrusion and pipe made by frame generator.

View 2 Replies View Related

AutoCAD Inventor :: Merging Circular Face To Flat Face

Aug 22, 2012

All I need to do is merge a circular face to a flat face, so both faces become one continuous face. Is this possible at all?

I have a attached a screenshot to show what I mean. Face 1 needs to be merged with face 2. This is so if I constrain anything to that face it will constrain to the entire face and not either the circular face OR the flat face.

View 3 Replies View Related

Maya Modeling :: Display Normal For Selected Face?

Jun 5, 2011

I know that we can select a model to show all of it's normals but is there a way to just show the normal from selected faces ?

View 5 Replies View Related

AutoCAD Civil 3D :: Export Selected Objects Only?

Sep 28, 2012

I'm in a situation where i have to export a civil3d 2013 drawing to autocad 2000, but i don't want to send everything in the drawing, just the final drawing from model space.  is there a way to not need export the drawing and then delete the objects i don't want to send?  It seems like a simple task but i work with some people that can't handle simple things like that, so aside from trying to find new co-workers, what can i do?

View 9 Replies View Related

GIMP :: Select A Face And Export It?

May 21, 2013

how can I select a face from a pic and then export it to another program?

View 4 Replies View Related

AutoCAD 2013 :: Edit Solid With Opening A Hole Only One Face And Deleting Another Face

Oct 2, 2013

how to edit a solid with opening a hole only one face and deleting an another face..

I added a drawing file which has a coloured face solid,I put a circle on blue face and making a hole on this face,and I want to delete red face without exploding solid,after all this I want to mesh this solid with maximum 25 units.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Automatically Export Attributes From Selected Blocks To Defined Txt File

Oct 3, 2012

How to create a lisp to automatically export attributes from selected blocks to defined txt file without having to everytime confirm the file name, location and if the file shall be replaced?

Meaning is that I often export attributes to txt file for further use. It is always the same file (I just overwrite it always).

The way I do it now is selecting blocks, using ATTOUT command, then going to the desktop, selecting ATT.txt file and confirming that it is to be replaced.

Is there a way to make lisp or script that will just do all it in at once?

I found on forum such a lisp as below, but it exports all ablocks on drawing and it exports to txt file which is located in same  place as drawing and with same name as drawing. Tried to modify it but without success:

(defun cut-att ()
(load "attout")
(setq fna (strcat (getvar "dwgprefix")
(acet-filename-path-remove (acet-filename-ext-remove (getvar "dwgname")))
".txt"
))
(setq ss (ssget "X" '((0 . "INSERT") (66 . 1))))
(bns_attout fna ss)
)

Same question for ATTIN - I use attin and always same file name from same location - how to automate it with one command?

View 9 Replies View Related

Illustrator :: Way To Export Selected Objects

Oct 14, 2009

Is there any way to Export Selected Objects in Illustrator? I am working on a website sketch and i will need to include things outside the frame. When i select Export (or save as PDF) even if i have all objects selected i just get the JPG with the A4 paper.

View 4 Replies View Related

GIMP :: How To Export Selected Paths To SVG File

Jul 3, 2012

What is a most convenient way to export selected paths to SVG file? GIMP provides only 2 options for the export: export only one - "active" - path, or export all paths. It's not very useful in my case. I have an image with several layers and a bunch of paths related to different layers. So I need to export only paths which "belong" to a selected layer, so to speak. Of course, I can edit SVG by hands, but I wonder if some decent tools there exist for this task.

View 1 Replies View Related

AutoCAD 2013 :: Using PRESSPULL On Face That's Under Or Behind Another Face

Dec 20, 2013

Is there a way to use PRESSPULL on a face that's behind or underneath another face.  When I use PRESSPULL it always selects the face on top and sometimes I want a face that is behind or underneath that face.  

View 3 Replies View Related

3ds Max :: Ribbon Icons - Adding Export Selected Command

Mar 21, 2012

Where i could find those ribbon icons in max, for example am adding the export selected command which has an icon when you do file export, but when i add it to the ribbon it says missing icon, and i only have a modeling folder and object paint folder with icons.

View 1 Replies View Related

Lightroom :: Export Only One Selected Photo Out Of All Synced Photos?

Dec 26, 2013

How can I export only one selected photo out of all synced photos? Every time I try it exports every one.

View 2 Replies View Related

Lightroom :: Export / Import Only Selected Photos From One Catalogue To Another?

Aug 6, 2012

I've mistakenly imported a batch of photos to a wrong catalog. I'd like to move these photos to a different catalog - how do I do that? 

View 2 Replies View Related

Illustrator Scripting :: Export Selected Artboards PNG24 JavaScript?

Mar 1, 2013

I'm trying to do some workflow enhancements. For our games we need to export to PNG at different resolutions for different mobile devices. I use a artboard per asset and currently manually export 3 times (using file/export/png with use artboards option), at 72 dpi, 144 dpi and 33.75 dpi.
 
I've been modifying a simple Javascript I downlaoded and have got it save to different fixed locations at different scales. All good. However exporting every artboard each time will cause issues with our version control system and take too long. It's not really a solution.
 
So I need a way to either only export the current selected artboards (which I believe can't be done) or somewho show the artboard range dialog that the system uses. Either of those would be a good solution.
 
var docRef = app.activeDocument;
var num_artboards = docRef.artboards.length;
var getName = app.activeDocument.name;
var fileName = getName.slice(0, -3);
[code]...

View 7 Replies View Related

Lightroom :: 3.5 - Cannot Export Selected Photos To Outlook / Files Already Exists

Nov 27, 2011

LR3.5, Windows 7 64bit, Outlook 2010.  After selecting several photos in LR3 to be exported as JPEGs to Outlook, the latter shows but one photo as an attachment.  Trying to export those same photos again, I'm greeted with the following error, "Problem Exporting Files".  The error message further states that the files already exist.  I've had to send each photo separately to get around this hurdle.

View 5 Replies View Related

AutoCAD Inventor :: How To Constrain A Face To A Cylinder

Feb 28, 2013

I am trying to CAD a model rocket I just made so I can test the aerodynamics of it.  I have all of the individual parts made in inventor, but I am having trouble getting the fins on the rocket.

How can I constrain the fins (which have a flat face) to the outside of the cylindrical rocket tube?  The photo shows the fin and the face (the narrow and long face) that I am trying to constrain to the tube.

View 7 Replies View Related

AutoCAD Inventor :: Modify Face With Draft?

Jul 11, 2013

I am trying to put a 1 degree draft on the face shaded in yellow in the direction I have shown....not sure how to accomplish this?

View 4 Replies View Related

AutoCAD Inventor :: Add Sketch On Part's Face By Vba

Oct 22, 2012

I can add sketch on a part's workplane (xy, xz, yz) by using sketchs.add.is there anyway i can select a face of part and create a new sketch?

View 6 Replies View Related

AutoCAD Inventor :: Split Face In Weldment?

Sep 19, 2013

I'm trying to model plug welds in IV2014.  I've read all the posts here that say that I need to split the hole faces.  Problem is, the split face command doesn't seem to appear in weldments.  I want to make the holes to be plugged as a weld preparation.  Am I just missing something here, or is IV so backward that a common weld can only be achieved when not working with a weldment?

Inventor Pro 2014 SP1
HP Z400 Workstation
Intel Xeon W3565 @ 3.20GHz
12Gb RAM
Win 7 64 Pro SP1
Spacepilot Pro v3.17.4

View 1 Replies View Related

AutoCAD Inventor :: Move Face Parameters

Jan 25, 2013

In doing a move face I noticed there isn't any parameters that can be edited after the move face has been created. I want to control the face length with a parameter after it has been created. Am I missing something or is there a work-a-round?

View 2 Replies View Related

AutoCAD Inventor :: Move Face Command

Jun 6, 2012

Having never used this command before I am struggling as to where it is located.I imported a U-Bolt in Solidworks format and I am just trying to move the nuts as indicated.

View 5 Replies View Related

AutoCAD Inventor :: Show Draft On Face

Sep 5, 2012

Trying to add draft to an area on this part.  Not sure exactly how to get the results I'm looking for. Tried "Draft" command and that didnt work at all.  Tried to do a sweep.  Its close, but not exacly what I want.

I am trying to get draft applied on this entire face at a given angle (say 5°).  The Sweep feature in the part is where I attempted it, but you can see below the Ø6in section, all of the face does not have the draft on it.

View 6 Replies View Related







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