AutoCAD .NET :: Unable To Create Nested Groups?

Aug 25, 2013

I am able to create groups in autocad 2013 using .net but unable to create nested groups. I am talking about nested groups not nested group layers. 

View 9 Replies


ADVERTISEMENT

Photoshop :: (Nested Layer Groups) Warning Message Disabling From Application Settings?

Aug 28, 2013

I am using Photoshop CS6 and if I have nested layer groups whose depth is greater than 5 I get the following error message. "This document contains nested layer groups that may change in appearance if opened in applications older than Photoshop CS6".

I can click on "don't show this message again" before pressing ok, but can i disable it from showing somewhere in the application settings? I want to enable it sometimes and sometimes not.

- The "Reset All Warning Dialogs" button from Edit - Preferences - General is not very usefull because I want to keep other messages' settings, only this one should be affected.

View 6 Replies View Related

AutoCAD Civil 3D :: Figure Groups And Survey Point Groups

Oct 15, 2009

I just discovered survey figure groups and am playing around with them. Great way to bring certain figures in & out. What seems crazy is that I have to check them on/off one at a time. Am I missing something or is this the only way to add figures to a figure group?

View 2 Replies View Related

AutoCAD Civil 3D :: Create Sheets Generates Duplicate Point Groups

Aug 7, 2012

C3D2012. We have a master C3D template that includes a number of point filters (let say 20 of them) and a number of layouts (again, let say 20 of them) to accommodate our two sheet sizes. 

Here is the issue that I am running into, when the Plan Production tools use a layout to create plan and profile sheets from the same master template that is used to initially create the file, the whole process will duplicate each point group 150 times for every group (see attached).  So, what I ended up with is 20 point groups X 150.  In my example, I ended up with 3000 duplicate point groups.

The end result is a file that is somewhat unusable do to the number of point groups.  The other issue is now that all of these point groups are in the file you are unable to delete them all at once without "crashing" C3D.  So you are left to deleting a handful at time.  It is also best if you turn UNDO off while you do it.

I have been able to duplicate this in multiple files; however, from the same master template.  As a test I did create separate templates (which are pretty bare bones) for the plan production and all works well.  Therefore, there is either an issue with C3D and Plan Production and point groups or it is our template.

I would really like to nail down (as best I can) what is generating the 150 duplicates/ point group name to see if there is a way "around" this.

Currently, I am unable to share the template, but it shouldn't be too difficult to re-create.  Take any template, add some point groups to, add a plan and profile sheet to one of the layouts, create a new file from this template, finally create plan and profile sheets from the layout in the very same template.

View 1 Replies View Related

AutoCAD Civil 3D :: Create Automatic Point Groups When Importing Points?

Jan 8, 2014

Is there a way to create automatic Point Groups when importing points?  Sort of like a Desc Key for layers?  I know it probably is impossible but I have to ask.

View 1 Replies View Related

Revit :: Using Nested Family To Create Material Link

Oct 24, 2011

I assigned my students to create lighting fixture family.  I wanted them to create a drop-down list of materials within the family to allow a user to select from the list of materials.  This is accomplished by using a nested family - the inserted family has the materials defined.  The drop-down list appears just fine in the properties, but we aren't able to apply it to the extrusion.  I have tried inserting each family type and using the Label parameter, but Revit won't allow the link.

View 5 Replies View Related

Edge Animate CC :: Create From Template - Creates A Maze Of Nested Folders?

Sep 13, 2013

I couldn't find much about the templates in Adobe Edge so I decided to go ahead and use them as I expected them to work. I thought it'd be convenient to essentially copy-paste a page so that I didn't have to re-enter code for each page (like buttons and backgrounds and such), so I made an initial page with all the right code, then "Save As Template"-ed it with the name "2013_portfolio". To create a variation page off of it, I went to "Create From Template" next, selected the template I had created, and it opened, as I expected. I saved it under a different name (in this case, "2013_home.html" was the original page, and I saved a variation as "2013_resume.html").

At this point, I realized I had forgotten some code in my original template, so I went back, deleted the variation, made changes to the original, and saved over the first template. I saved over the original template a few times doing this, but I always made sure it was saving over the original template so that I wouldn't end up with weird copies. (or so I thought.)

So eventually I got the template right and made my variations (same names). Curiously enough, when I looked in the folder that had been created as "2013 portfolio" (the template name), I couldn't see the "2013_resume.html" page that I had just made. Odd, well, I kept pushing forward. I made a few little changes then saved it, and made another variation page called "2013_uxdes.html" .
When I looked at my folder though, I found a baffling sight. I now had three folders, with strangely nested folders within them:
 
1. 2013_portfolio > edge_includs, "2013_home.an" and its associated files
 
2. 2013_portfolio1 > 2013_portfolio > 2013_portfolio > edge_includs, "2013_home.an" and its associated files
 
3. 2013_portfolio2> 2013_portfolio, edge_includs, "2013_home.an" and its associated files, and "2013_resume.an" and its associated files > (within that 2013_portfolio folder:) "2013_home.an" and its associated files and "2013_uxdes.an" and its associated files
 
sooo... I have three auto-created folders, each with confusing nesting and no centralization. What I was expecting was this:
 
2013_portfolio> edge_includs, "2013_home.an", "2013_resume.an", "2013_uxdes.an" and all their associated files
 
I don't want a huge mess of folders that I have to navigate like a maze. What happened? In the meantime, I plan on deleting all of it and just making a new template, but... well, I hope this is a bug and not on purpose.

View 3 Replies View Related

Illustrator :: Why Does CS6 Create Gradients Through Clip Groups

Sep 7, 2012

I jumped to CS6 from CS3 and am a bit confused. I create graphics for stock imagery and it is important to minize the amount of shapes. I created my first image with CS6 that has several gradients and my file is enormous because when I viewed it with "Overprint view" it showed that all gradients consisted of several paths contained in a clip group.

View 1 Replies View Related

Illustrator Scripting :: Ungroup All Groups Then Create A Single Group?

Jul 30, 2013

I'm having trouble getting a script together where I can ungroup all groups in a document, then put everything under a single group. Everyhting I'm working with has a single layer, but for some of the arts I'm importing have groups within groups ect. To run certain actions I've made properly after I need eveything to be in one, single group.
 
I searched for an answer and found this (wirtten by Carlos Canto)
 
function ungroup(whereToUngroup, group) // where to ungroup? layer, document, other group?
{
for (i=group.pageItems.length-1; i>=0; i--)
group.pageItems[i].move(whereToUngroup, ElementPlacement.PLACEATBEGINNING);
}
 
But I'm having trouble getting it to work.

View 5 Replies View Related

Xara :: Selecting Groups Within Groups

Sep 12, 2011

I just learned (after 16 years...) that it's been possible to drill down through successive compound objects within groups without using the new V7 feature "Edit inside".

I'd always used Ctrl+Click within a group to select the object in it I want, but could never select just a group that was within--only a single object. But apparently Ctrl+Click is only intended to select the bottom-most (leaf) object of the group (tree). If instead you use Ctrl+Alt+Click, you can click through each level of a group.

So for example if you made two groups of 3 objects and then grouped the two groups together, you can select the whole group first, then one of the other groups within, then one of the objects within that group.

I can't believe I didn't know this. Shows what I know. And what amazes me more is that I didn't figure it out given that you can Alt+Click to select through overlapping objects.

View 8 Replies View Related

AutoCAD Inventor :: Unable To Create FEA Simulation

Oct 21, 2011

I have a very simple part I am trying to check using FEA; however when I get into the Simulation environment and click 'New Simulation' from Ribbon nothing happens.

The part in question is just a simple cylinder (I'm verifying what would be the best meshing spec to use in a larger assembly).

View 6 Replies View Related

AutoCAD Inventor :: Unable To Create Component?

Jul 4, 2009

now a have a typical error to insert in my assambly a item from my content center, reciveing a erro like "unable to create component", i´m looking for a solution inside forums and find a solution but didn´t work for me, the solution watched and did for me as deleted of the content folder "CACHE" in my computer C:/....all users/inventor..../cache.

I use AI2009 with SP1.

What can i do, delete all families from content center and upload again?

View 4 Replies View Related

AutoCAD Architecture :: Unable To Create A Wall

Mar 18, 2013

I've been having an issue with autocad architecture 2013.  For some reason it won't let me create a wall.  I can click it but it doesn't want to actually create anything.  It just gives me the selection tool.  I downloaded the service pack and still doesn't work.  

View 3 Replies View Related

AutoCAD .NET :: Unable To Create Thumbnail Image?

Apr 23, 2013

I am using below method for getting Bitmap object from autocad file.

This method is working fine for AutoCAD 2012 application

But same is not working in AutoCAD 2013 application

publicBitmap GetAutoCADBitmap(string strFile, bool boolRetainBackColor)
{
Bitmap bmp = newBitmap(1, 1, PixelFormat.Format8bppIndexed);

[Code]....

View 3 Replies View Related

AutoCad :: Unable To Create A Sheet Set File?

Jul 12, 2012

When I use my autoCAD at the office to create a Sheet set file I allways get the message "Unable to Create a sheet Set file". Is there a way correct this problem.I am using AutoCAD 2012 on a network. I have tryed to create sheet set files on my local C: drive and other drives without any luck.

View 1 Replies View Related

AutoCad :: Unable To Create Sheet Sets?

Feb 8, 2012

I am using ver AutoCAD 2012. (Network Liciences) I get the message "Unable to create Sheet sets" in AutoCAD 2012. I also cant open previous made sheet set files

View 3 Replies View Related

AutoCad 3D :: Unable To Create Output File

May 23, 2012

Before rendering the program write:

make sure destination directory is writable and that the disk is not full. rendering aborted.
how could i find out where is error.

View 5 Replies View Related

AutoCAD Inventor :: Unable To Create A Flat Pattern

Mar 7, 2013

I want to creat a flatpattern of an iregulary cut cylinder that was made in the standard .ipt world and is now converted into a sheetmetal. I want to "Unroll" the piece out so can see the shape of it as a flat piece. Picture of it is attached. 

View 6 Replies View Related

AutoCAD 2013 :: Unable To Create Output File

Aug 27, 2013

I'm having some difficulty with a new issue that is occuring:I have a 3D model that I'm attempting to render. It has rendered recently with no issues. Now, this morning, I get the following error message:

Unable to create output file - Make sure destination directory is writable and that the disk is not full. Rendering aborted.The drive is only approx. 30% full. I've closed/reopened the file to no avail.Also, I've closed/restarted ACAD.It always seems that AutoCAD acts goofy whenever I have a deadline.

View 2 Replies View Related

AutoCAD Inventor :: Unable To Create Flat Pattern

Jul 19, 2013

I can't get Inventor to create a flat pattern of the attached sheetmetal part. It's a pretty basic part, just five folds. I'm not getting any error issues - when I go to the flat pattern it just shows the folded part (picture attached). 

I assume it has something to do with the way I folded it and the notches, etc. Inv makes to accomplish the fold. I'm using Inventor 2013 on Win 8. 

View 3 Replies View Related

AutoCAD Inventor :: Unable To Create A Solid Extrusion

Dec 28, 2012

I have just downloaded an educational version of Inventor. Although I can create sketches I cannot extrude the sketch to form a solid. The origin arrow heads appear over size and it seems as if the origin plane is being extruded to form a solid!

View 2 Replies View Related

AutoCAD Inventor :: Unable To Create ILogic Form

Aug 31, 2012

I have one particular file which will not allow me to add an iLogic form. When I select "Add Form" it does nothing. This only happens in this one file. I can open other files in the same session and they work fine. I can add iLogic rules to this file but I can't create forms.

View 3 Replies View Related

AutoCAD 2010 :: Unable To Create User Profile

Mar 9, 2012

[URL]

It relates to machines which often have different users. I can get ACADM2011 to run for that user by editing the registry and importing keys from a good profile then modifying to user the new users credentials.  This is Ok for a fudge fix but not suitable as a final solutions as I have to roll out 2011 to another 90 machines.

All users have full admin rights through a group policy so that is not part of the issue.

What I have noticed is that on machine which will work as expected the secondary installer runs in two steps.  The first being the AutoCAD Mechanical 2011 install and then the language pack install.  On machines which will fail and have the Profile issue only the language pack install runs.  Where does ACAD look to check which causes this first install part to be skipped?
 
AutoCADM 2011 SP2
XP 32-Bit SP3

View 2 Replies View Related

AutoCAD Inventor :: Unable To Create New File In 2012

Mar 31, 2012

I have recently installed Inventor Professional 2012 Student Version, and I'm unable to create a new file, as the program crashes as I try to do so.

After starting Inventor, I select New than Standard.ipt. The file starts loading, the status of the loading process can be seen in the bottom left corner, than the "Open Documets in Session" counter in the bottom right corner changes from 0 to 1, as it should, I guess. And than, the program freezes. Sometimes, a message appears after several minutes that an error has occured, and that I should send an error report to Autodesk (which I did); but sometimes, no message appears at all, it simply crashes.

My computer specs are: Intel Core 2 @1,86 GHz, 2 GB RAM, NVidia GeForce 9800 GTX, 60 GB free space, Windows Vista (hotfix installed) Not a powerhouse, but I think it should be able to start a file properly I think, if I understand the system requirements correctly.

View 9 Replies View Related

AutoCAD Inventor :: Unable To Create Positional Representation In 2013?

Jul 18, 2012

We are running Inventor 2013 and I am trying to create a simple positional representation of a small assembly.  For some reason, the "New" option is grayed out in the positional representation browser. 

I can't remember ever having trouble creating them in past releases.....

View 2 Replies View Related

AutoCAD Inventor :: Unable To Create Component From Content Center

Oct 18, 2013

Today, all of a sudden, my coworkers and I cannot place standard parts from our content center (there are only three of us). We are not using Vault - but we have set up our Content Center to access a network location:

N:StandardsInventorContent Center FilesLibraries

This has worked for months ever since we set it up. Problems just started today for all of us. Parts that DO work are parts that you have to tell it an extruded length (like structural steel or tube/pipe). Nothing else will work (fasteners, pipe fittings, shaft collars, etc).

Interestingly, if I select to insert the part "as custom" instead of "as standard", all parts work like they should.

For the parts that do not work, I can navigate through all of the menus to select parts, but instead of getting the "Save As" dialogue, I get the "Unable to create component" error message.

View 1 Replies View Related

AutoCAD 2010 :: Unable To Create Sheet Set File / Filename

May 17, 2012

I am using AutoCAD 2012. I’ve come to realize that my Sheet Set command won’t work, as I cannot get any sheet sets to open. When I select a sheet and try and open it, nothing happens at all.

Also,  I did get an error message when trying to create a new sheet set, “Unable to create sheet set file: *filename*”

View 3 Replies View Related

AutoCad 2D :: Unable To Create Hatch - Turns Into Dead Mass?

Jan 26, 2008

I've been using Autocad 2007 for the past 5 months without these issues, then I had to create a new account on my computer at work and now EVERY time I create a hatch it turns into this dead mass. Yes, I've tried creating an associative hatch, and no, I can't edit them either.

View 9 Replies View Related

AutoCad :: Unable To Create A Line Along Z Axis When Polar Tracking Is On

Feb 3, 2012

I seem to be having trouble with polar tracking on. With this activated and in front view I can only create a line in up or down (Y) direction. I cannot create a line along the z axis. This happens randomly so I must be overlooking a setting somewhere.

View 9 Replies View Related

AutoCAD Architecture :: Rendering Message - Unable To Create Output File

Mar 17, 2011

I'm using Architecture 2011 trial and it generates good rendering, but after adjusting sun angle (time), I received a message: Make sure the destination directory is writable and that the disk is not full. Rendering aborted.

View 1 Replies View Related

AutoCAD Inventor :: Unable To Create Custom Tube And Pipe Style

May 20, 2013

I can not create a new pipe section.   İn inventor  2013, at the tube and pipe style   

I watched these steps . still not

[URL].......

[URL]........

[URL]........

View 5 Replies View Related







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