AutoCAD Inventor :: Layer Visibility On Different Sheets?
Jun 12, 2013
I am trying to control the layer visibility on different sheets of the same drawing but have not quite figured it out yet.
We add a DXF sheet to drawings with flat pattern views to export to DXF for our laser. I wrote a VBA macro that adds the sheet, copies the flat pattern view and removes the dimensions to clean it up before creating the DXF. I am having a problem turning off the visibility of the bend lines on JUST the DXF sheet. I can turn bend lines and hidden lines off with this:
'Turn off bend lines and hidden linesFor Each oView In oSheet.DrawingViews 'Set the layers collection Set oLayers = oDrawingDoc.StylesManager.Layers 'Turn off all bend lines and hidden lines For Each oLayer In oLayers If Not InStr(oLayer.Name, "Bend Centerline") = 0 Or Not InStr(oLayer.Name, "Hidden") = 0 Then oLayer.Visible = False Else End If Next Next
but it turns them off on all sheets. I want to only turn them off on the DXF sheet. How would this be done?
Inventor Professional 2014 64 Bit
Windows 7 Professional
NVIDIA Quadro FX 4600
Dual Intel Xeon E5540 CPUs
16GB DDR3 Ram
View 6 Replies
ADVERTISEMENT
Oct 16, 2011
So I have a topographic surface I created from 3 lofts and 2 patches. The goal of the project is to: find out how many rolls of fabric will be needed to cover the surface, find out how far each roll will go, and create an assembly style sketch.
So far all I have is the surface. I was thinking I could divide it in sections by the width of the fabric (minus the overlap.) With each section, create a path, and use the sweep feature to sweep the profile of the fabric. Only sweep the length of the roll, till I reach the endpoint, and turn each sweep into a part file.
My first problem with this method is that I can't seem to project the surface of the topographic region to a sketch to create the path for the sweep. Does the surface need to be turned into a solid to do this?
I believe an easier method to this would be to thicken the topographic region, split the the thickened layer, and divide it into the sections I need to build the final sketch.
Is there a better method, and which method should I use. Also, is there any way to project a surface onto a sketch or does it have to be a solid?
View 3 Replies
View Related
Jun 14, 2012
shouldn't sheets marked as "exclude from count" not be counted?
I tried this in both 2013 and 2012 to see if maybe AutoDesk broke it, but it doesn't work in either one. This is easily reproducible for me, a file shouldn't be necessary. Just open up (or create) a multi sheet drawing. Go to edit sheet on one or two of them and check the "exclude form count" box. Now create a new iLogic rule and put the following line into it:
MsgBox("This is the number of sheets in the drawing: " & ThisDoc.Document.Sheets.Count, VBOkOnly, "Number of Sheets")
View 2 Replies
View Related
Sep 9, 2013
We have one template that we use for starting all our drawings. This contains all of our layers, layer filters and most commonly used blocks.
Then we have a template file called "Titleblocks" -- this contains one layout for each different size border as well as vport definitions for Plan, Profile or P&P.
When I used the C3D P&P tool to create my sheets, it of course used the Titleblocks template which means that the filters are lost. Is there a relatively simple way to add those filters to my sheets? Each sheet is a layout in a separate dwg file.
View 4 Replies
View Related
Dec 6, 2012
I am wondering if you can set a parameter in a dynamic block in to a visibility layer. Is this possible?
View 1 Replies
View Related
Sep 11, 2013
In <CS6, you could click down on the eye-icon in front of a layer, move out of the layer tab group, move up a couple of layers, and then go back in, to deselect that layer too.
In CC, when you do this, it'll deselect all the layers in between as well. I'm sure this is working as intended, but it was a ridiculously useful "bug" (feature!) when it wasn't working this way.
Use-case: to instantly switch between one set of layers and the other. I know there are other options to do this with, but there's just no real reason to "remove this feature" (correct this bug?) because you already *had* the option of deselecting everything you move over in the first place.
View 6 Replies
View Related
Aug 29, 2007
Ive got like 300 layers, one of them being my main picture...this layer is all the way up in my list. When Im working on the bottom layers, I Have to scroll AAAAALLL the way up to turn on/off the visibility for that layer.. Is there a way to do this without scrolling up or down all the time?
View 1 Replies
View Related
May 26, 2012
Can I make it so that the undo history in Gimp doesn't track changes tolayer visibility?
(I do a lot of compositing with layers, so I don't really want it to tracklayer visibility changes so I have a nice undo history with only changes Imade to the image.)
View 1 Replies
View Related
Jan 22, 2013
I am trying to get the PDF macro to be hard coded to print all the sheets in an idw. I added this line (guessed at code basically), but it didn't work. Where do I find what the correct syntax should be for this code?
View 1 Replies
View Related
Oct 28, 2009
Copy sheets from one IDW to another?I thought I had successfully done this before, but maybe not.
View 4 Replies
View Related
Apr 18, 2008
i open up a file which contains more than 100 layers, some of them are hidden and the other are not, bascially i want to check out some of the hidden layers and i did on one, as we all know, by alt click the eye icon, we can go backwards to restore the original visibility settings of all other layers, my problem is i unhide one layer and then unhide another layer above and change the layer transparency to check out that layer,and after that i turned on another layers, then all the sudden i have found that i cant go backwards anymore, i cant restore all the original visibility settings,even by click undo many times,so right now i have 3 layers visible in the scene and cant go back to restore the oringinal visibility unless i revert the file,
View 2 Replies
View Related
Jun 16, 2012
How to toggle the layer lock/visibility in CS6 than in the earlier versions.
It seems that there's more padding around the lock/visibility icon, and you have to be really precise to click it... increasing the row size doesn't really make any difference, as the "padding" is still there. Wheres in the earlier versions clicking anywhere within the toggle box would enable/disable it.
View 2 Replies
View Related
Apr 3, 2013
Is there a way to assign different dimension styles to different sheets in an idw. I have idw drawings with several sheets and use a couple of different dimension styles depending on what is on each sheet. I've created the dimension styles I want to use but I don't know how to assign a dimension style to a specific sheet. For now what I am doing is dimensioning, then as needed for the dimensions that need a different style, right click on the dimension and select new dimension style to changes its dimension style. I would like to assign dimension styles to specific sheets, is there a way to do this? Even though borders, title blocks, etc. are the same throughout the sheets, do I need to create different sheet formats to do this?
View 6 Replies
View Related
Jun 15, 2012
I am trying to modify the code Brian Ekins posted on Mod the Machine to renumber balloons across sheets. [uRL ....
It works great unless the item on the additional sheet is a sub-assembly. I believe it is because PartDef is declared as a PartComponentDefinition and there is nothing in the code to handle an assembly.
Dim partDef As PartComponentDefinition
Set partDef = drawBOMRow.BOMRow.ComponentDefinitions.Item(1)
partInfo(I - 1).ReferencedFile = partDef.Document.FullFileName
The Set partDef line was giving me a runtime error when it came to an assembly in the BOM until I added
"On Error Resume Next" at the start of the loop.
I tried changing the declaration to ComponentDefinition. It compiled fine, but didn't do anything. I think I'll have to add some duplicate code to handle an assembly in the BOM. Is there a better way to do this? Am I even on the right track?
View 3 Replies
View Related
Oct 22, 2012
My requirement is i need a programme to print inventor sheets in to PDF by using PDF995. And this should be created each sheet will be seperate PDF.
It need to ask rev number. my file name should be like "filename-sheetnumberrevision", for ex 870525 is my drawing number. PDF file name should be 870525-01A
View 1 Replies
View Related
Jun 21, 2012
We often have drawings with multiple sheets.Usually the first couple of sheets are devoted to identifying components and where they should be placed. The remaining sheets provide details on specific components (dimensions, tolerances, etc.).
It would be nice to be able to reference (associatively) other sheets, so it is easy to find information on a component when looking through the drawing package. For example, add a note that says "See sheet 12", and have the 12 update if that sheet (or drawing view?) changes location in the package.
View 2 Replies
View Related
Aug 13, 2012
Any intelligent way of referencing the sheet with the parent view? E.g. i put a detail or section view on Sheet 2 from a parent view on Sheet 1 and want to reference from what sheet the view is taken from.
View 3 Replies
View Related
Feb 10, 2012
Im working on something just now but ran into a problem when a new sheet is added after one that is excluded from count.
What i need is to re sort the sheets in the browser so the excluded ones go to the end. Im thinking i would need to loop through the browser nodes somehow but the skills elude me.
View 1 Replies
View Related
Sep 20, 2011
I am trying to find an automated way to rename multiple sheets when creating Inventor drawings.
I have an Inventor assembly, and I need to create a drawing for each component in this assembly. I have one Inventor Drawing with multiple sheets in it. Each sheet is for each part in the assembly.
I would like to loop though each sheet and rename the sheet name to the Part number of the part. Is there a simple way to do this though i Logic? And how would I go about doing something like this?
View 9 Replies
View Related
Sep 1, 2012
As I am using Layer Comps more frequently, i find myself frequently needing to toggle the visibility of layer groups, which contain several sub-groups. I tried all the shift + cmd + option - click variations, but none seems to do the trick.
here an example:
Visibility Type Name
OFF Group Row
ON Group Button 1
OFF Text Help!
OFF Shape Bg
ON Group Button 2
OFF Text Help Please!
OFF Shape Bg
so what i am looking for is a short-cut so that when i click on the visibility of the Group Row, it will turn on the visibility of all the layers contained.
View 3 Replies
View Related
Jan 4, 2013
I am realtively good with actionscript, so I am trying my hand at this to streamline our image exporting process. I am using CS5 on a PC.
We build our illustrator files to be a combination of different layers. Sometimes just one layer is exported at a time, and sometimes layers are combined to form a more complex image. We use layer names with instructions of what layers should be on and off.
An example of the layer naming might look like this:
03 (01-ON, 02-OFF)
02 (01-OFF)
01
I have been able to figure out how to check if there is a note to turn a layer on, my question is how do I select the layer to turn on the visibility without using the exact name of the layer?
In my example, when layer 3 gets exported, it should have layer "01" visible and layer "02 (01-OFF)" not visible. Since our files are always constructed differently (meaning 02 might not always have a note about 01 being off), I can't use the getByName option because I don't have an exact name to call the layer and turn the visibility on. The layers always start with 01, 02, 03, etc. Is there a way to use getByName and only have it look at the first 2 characters of the layer name?
View 8 Replies
View Related
Oct 31, 2012
Using bolted connection, I want to place a bolt through 3 sheets of metal. The first 2 sheets i want it to automatically place a slightly larger hole (which it does) but I want the 3rd sheet to be threaded so the bolt thread and hole thread are the same size.
View 3 Replies
View Related
Aug 15, 2012
Working in an idw file, I have a need for two drawing sheets with the identical views of the same part. However, each sheet will need different dimensions and annotations. What I would like to do is after completing one sheet, in one step create the second identical sheet, then just edit/add dimensions and annotations. Is there a method to do this? So far, I have only been able to copy one view at a time from sheet to sheet.
View 2 Replies
View Related
Nov 5, 2012
I have an assembly drawing made with 2 parts in it. I have the assembly drawing as Sheet 1 and each part also in the file as Sheet 2 and Sheet 3. What I have a problem with is that when I change or update the original files for Sheets 2 and 3 it doesn't update the sheets in the assembly drawing. Is there a way to keep these files connected. I need to have the standard sheets for filing and part designation, but when production call for the assembly to be needed, the assembly (Sheet1) with the Attached part drawings (Sheets 2 & 3) hit the production floor. Without them linked a mistake will be made. There are to many engineers in my department and we all make production changes to parts and if they are not linked bad things will happen. I am just trying this out, we have a lot of assemblies that will be great for the production if I can get all the part and assembly files to work together and print at the same time from on file.
I am using Inventor 2012 if that matters.
View 7 Replies
View Related
Dec 27, 2012
I know there is a way with iLogic/VB to do this but I'm not exactly sure how. Basically, I'd like to put the part number from the base view (view 1) of SHEET 1 into my title block. Easy enough with one sheet, but I want subsequent sheets to reference back to the part number from VIEW 1 on SHEET 1, regardless of what sheet it is on.
View 1 Replies
View Related
Oct 4, 2012
Is there any easy way to have sheet name automatically pull the "description" iProperty from the part that is on the sheet? It can be very handy in a multi-sheet drawing for each sheet to have a descriptive name in the browser, but the only way to do this (that I know of) is to manually change it.
View 5 Replies
View Related
Nov 20, 2013
is it possible to do an individual revision table for multiple sheet drawings. if you typed in description 'sheet 3 nut changed from m3 to m5......etc' then all the bunf would carry over to every sheet
View 1 Replies
View Related
Oct 21, 2011
how can I copy inventor drawing sheets? I don't want write everything again. It must be a way.
I use inventor 2012.
Autodesk inventor Design Suite Premium 2012
Windows 7 x64, 750 GB harddisk
Intel core i5 Cpu @3.2 GHz, 8 GB Ram,
nVidia Quadro 2000 D Graphics Card
View 6 Replies
View Related
Jun 10, 2011
We use multiple sheets only in case when 1 sheet is has not the sufficiënt space for showing al details of an assembly-drawing.
I'm wondering why the "Update all sheets" icon is allways visible when using more then one sheet in a drawing.
View 4 Replies
View Related
Aug 15, 2012
I've got a drawing that is 14"x12" and have a printer that can only handle 8.5 x 11 sheets. I need to print it out full scale because I plan on using the drawing to cut something out. In school, I have seen my teacher print the drawing across multiple sheets, and then he simply tapes the sheets together. I have tried every configuration possible and have had no success.
View 1 Replies
View Related
Aug 28, 2012
I'm setting up drg templates for a company. I need different drawing titles for each drg sheet, is this possible in Inventor 2012?
View 9 Replies
View Related