3ds Max :: Edit Named Selection Sets Window Will Not Open?
Aug 1, 2012
My edit named selection sets window will not open. The button will not work nor the shortcut under EDIT, i have restarted, i have competely uninstalled max and i have updated with FBX plugins from autodesk. I use this command A LOT and it will not open.
View 2 Replies
ADVERTISEMENT
Apr 16, 2013
hitting the "edit named selection set" button or selecting it via the menu option instantly crashes my max to desktop. I've tried switching UI's and changing display driver away from nitrous... so far no luck
even tried a repair, next option would be a complete reinstall
View 9 Replies
View Related
Jul 18, 2012
I have already a Selection Set called objSS. All the objects in this Set are Multi Text, so I am wondering how is possible to have access to the property Text Height of these objects inside the Set in order to change the value of this property. I have created a variable as AcadMText but is not possible for me to loaded it with any item from objSS.
View 3 Replies
View Related
Nov 15, 2012
From the AutoDESK docs [URL] ......
"AutoCAD.Application.ActiveDocument.SelectionSets. Add method
Not needed/provided" in VB.Net
Thus 'Autodesk.AutoCAD.ApplicationServices.Application. DocumentManager.MdiActiveDocument.SelectionSets' will not work.
So, I can't store multiple selection sets in VB.Net?
Why is it not provided? Or is there some other way to do that?
View 9 Replies
View Related
Apr 22, 2013
I just installed Windows 7 since I had to switch to a new system. For some reason I can't open files that have special characters from Croatian language in them. It all worked normally on Vista. My Windows 7 regional settings are set to Croatian etc.
View 1 Replies
View Related
Mar 5, 2012
I need a virtual set that I can edit in photoshop, does there are any out there?
View 4 Replies
View Related
Apr 18, 2011
I set up some selection sets thinking they would come in handy later on when I am painting. I thought I would be able to use them to paint my layer masks, but I cant figure out a way of using the selection to limit where I am painting inside the mask. I thought convert to a freeze but it seems paint layers ignore frozen areas. Is it possible, or is it a case of saving selections for sculpt and not for paitning?
View 7 Replies
View Related
Jul 17, 2012
I'm struggling with Selection Sets in 2012 Adv..I have a batch fx with 3 Action nodes in it. Each has a lot of stuff so I was hoping to use Selection Sets to quickly pull up the kfs I needed to tweek.
I set up about 4 sets but once I exit and go back in 3 of the sets (the ones in the action node I'm currently working in) have cleared. ie, they're still there but empty. The one set I've defined for the other Action node is ok.
I have tried setting them with 'Define' and with 'Add Selection to'.I think I must be missing one trick here, like not saving correctly?
View 9 Replies
View Related
Nov 14, 2011
By doing this simple command I get this error message after a while of working... 2011Map 3d, Windows 7, 64 bit....
Select Line:
Select objects: 1 found
Select objects:
; error: exceeded maximum number of selection sets
Is there a setvar or toggle to change the max number of selection sets or to change to an unlimited setting anywhere?
At this time I have to save my work and close the dwg, reopen the dwg and I can resume picking objects etc., with no problems, untill it reaches the "majic" number and the error pops up.
View 3 Replies
View Related
Nov 1, 2011
I have a lisp routine that creates a "frame wall" and I want to be able to automatically dimension said wall within the same routine. I have created two sets of points, each set being on its own new layer. I have made selection sets of each set of points, and want to cycle through each set dimensioning as required. This what I have so far for this part of the routine:
(command "DIMSCALE" 24)
(setq sel1 (ssget "x" '("VPOINTS")))
(setq TC (polar (ssname sel1 0) (dtr 180.0) 9))
(command "DIMLINEAR" (ssname sel1 0) (ssname sel1 1)) "V" (polar TC (dtr 180.0) 9) "")
[code]...
When I run the program I get the error: bad point argument. So what I think is happening is that the ssname command is not returning the actual value but just the name? I am new to AutoLisp and even newer to selection sets so be easy... Along with this, I am also curious as to how a selection set is ordered when it is chosen ie how does it determine what would be in (ssname sel1 0). Also, how would one go about deleting the points in these selection sets after the dimensioning has been completed.
View 5 Replies
View Related
Oct 10, 2012
I am trying to find a way to assign keyboard shortcuts for different selection sets functions/commands.
I failed to find selection set commands in customize user interface menu. seems that they named it in a manner so that people cant find them when they simply look for "selection" or "set" or "create selection set" or "make selection set" .
what I need is:
1. when I select a group of objects I want to make them a selection set with one keyboard shortcut. (to go to the sets menu window and press that "create a selection set" button is too time consuming. I am also aware that just writing a letter to the selection sets dialog creates a set but still I want that shortcut.)
2.select an object and immediately jump to the whole selection set with a keyboard shortcut. or toggle through selection sets.
3.delete the active selection set with one keyboard shortcut.
are these functions available as native commands in customize user interface?should I go looking for a maxscript ?
View 1 Replies
View Related
Jan 10, 2002
I wish to collect a selection set of blocks in paperspace of a certain name. For model space I would use the following line:
(setq x1 (ssget "_x" '((2 . "*etc*") (410 . "model"))))
when it comes to setting paperspace as the 410 ssget list value as the name can be modified and I need it to work in all drawings. I tried
setting a variable to the paperspace layout name and using a print function at the (410 . "model") point but without sucess.
View 9 Replies
View Related
Oct 3, 2011
I wrote a lisp program which creates a selection set using ssget. Then I use the bounding box commands to get the lowest point of that selection set. Now I want to move that selection set as a whole using the vla-move command. I am having trouble doing this. Is this possible? Can we vla-move a selection set? Is there a workaround?
View 2 Replies
View Related
Oct 13, 2011
I need to explode ~2000 PolyFace meshes in a drawing.Manually I can do the following:
> QSELECT - PolyFace Mesh - Select All
> Explode
I get a question if I want to "Disregard DrawingOrder for this operation due to the fact that it might take some time", by selecting "Yes" the process takes ~10 minutes (one explode).With an VBA automation I do the following:
> Create a selection set of all PolyFace meshes
> Explode each obj (2000 times) in the selection set with SendCommand (as .Explode does not work on polyface mesh objects)
I have waited hours for the same process (might be due to multiple explodes and/or screen updating taking place).I have always though automation is faster than manual work, but this proved me wrong.So to the questions:
1. How can I prevent screen updating in VBA (disregard draw order) during "long actions"
2. Is there a better way to explode a selection set than looping through each and every object calling explode (obj.handle)
For one drawing I can do it in 10 minutes, but I have 50 drawings with the need to explode this, having an automation run over night sounds great, but having it take 6x+ times longer for each drawing causes the night not to be long enough.
View 4 Replies
View Related
Jul 27, 2013
I need to create a command which could change a color of an allready existing selection set when activated. For example i have a command which creates a cube, where each specific group of lines were added to different selection sets. how can i recall any created selection set by its name and change its color?
View 9 Replies
View Related
Mar 19, 2012
It's possible to create a dynamic block programatically? I want to create a command that captures different selection sets of drawing objects and assign them to different Visibility States of a new block deffinition, on run time.
View 2 Replies
View Related
Jan 21, 2012
When press "open" the "open"-window dosn't open. Insted it open a comandpromt by the cursor that promt me to enter full search-way and name on the file I want to open.
What can i do to get the "open"-window?
View 2 Replies
View Related
Jun 20, 2013
so im painting cars for nr2003 and i got a base scheme with layer sets that i cant open. i can simplify it, but it only flattens the contained layers. im pretty sure it has multiple layers in it. i will leave when i get an answer on how to open them in photoshop elements 2.0.
View 3 Replies
View Related
Mar 13, 2010
where can I find Polygon window selection? I have autocad 2009 .
View 8 Replies
View Related
Mar 14, 2012
when I use the selection with the mouse, I can clearly see in model space the borders of the window I create. But when I switch to Layouts, it's invisible. I can still use it, but it's annoying not seeing the window selection. I've tried with OPTIONS-SELECTION and DISPLAY tabs to adjust it and it didn't work.
View 2 Replies
View Related
Sep 15, 2013
A newbie question about brush presets ...
Brush tip shape section on the brush panel shows the brush tips for the selected set of the brush presets ... at the end of the list there are some brush tips (they are changing with the selected set) and they are not included in the selected set of brush presets. Where are those additional brush tips are coming from?
For example ... for calligraphic brushes, at the top I can see the tips for the set of calligraphic brushes in the window ... but, there are some other brush tips there at the bottom (red lined). Where are they coming from?
View 3 Replies
View Related
Sep 9, 2013
The newest version of Gimp no longer maintains the marching ants for the selection window when you select an image that is on a transparent layer (my observation). It seems to only select the (smaller) image(s) that are contained therein; the selection is restricted to the outline of the image only. I am trying to maintain proper spacing etc. and the marching ants selection window was wonderful for that.
View 5 Replies
View Related
Jun 16, 2013
That's the problem, I can't see the colored window when I go over my selection, I checked the options and I see everything seems OK...
View 2 Replies
View Related
Oct 16, 2012
In Shop shop 6, I can bring up Editor with more than one photo file, click on Windows and then cascade to make a colage of photos. When I try this in Photoshop 10 cascade is not available under Window even though it is there. How do I make it availabe in Photoshop 10?
View 2 Replies
View Related
Mar 23, 2012
How to label all lines in one go (window selection)?
Is there a way to label all the lines in one go by using the “window selection”? why the current behaviour of the selection requires to select the lines one by one?
How to remove the (‘) that appears at the end of each label? Is there an icon for the “add lables” command on the ribbon? Why the command “_AeccLblDlgGeneralNote” is not defined on the command line?
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
View 2 Replies
View Related
Dec 20, 2011
By default when we left click in AutoCAD and move the mouse, a selection window appears. Something went wrong in my system and now if I left click no selection window is appearing. For selection window to appear I have to drag the mouse instead of just moving it (which is the normal behavior).
View 3 Replies
View Related
Aug 28, 2012
is there a way, that objects only inside the selection window or lassoed region get selected rather than objects getting selected which are partially inside the selection window?
View 5 Replies
View Related
Oct 31, 2013
When I open the file.psd to edit or file.jpg (Any file type) The program will appear the dialog and then When I click "OK" to close this dialog.After that, it will appear the dialog to close program.
I could not continue to work.I must close and reopen the program. (Do not open the file.)
View 2 Replies
View Related
Jul 23, 2013
I just know I've posted about this before, in years gone by, but I've forgotten something simple. I have VideoStudio ultimatex6, but have an older computer with x5pro. When I load up my avi files, the thumbnails in the library and the edit window show only as black, though the clip name shows beneath the clip. And the clip plays clearly in the preview window that pops up when you ask it to.
I have the program on another computer and this is not a problem. All is fine. What I have assumed is there is a setting somewhere that does this - yet, comparing one to the other, I can't see any difference in the way the units are set under preferences. No doubt, there is some silly little thing causing me to think bad thoughts. So, I want to take the computer - which does have the specs for the program - to the cottage and leave the behemouth home.
View 4 Replies
View Related
Apr 2, 2013
I am having a problem opening older sheet sets from AutoCAD 2014.
I can select the .dst file, but when it "opens" I onlly have the icon in the seet set manager and nothing else, it is entirely blank.
I made a new sheet set, but now older versions of AutoCAD cannot read that one.
View 5 Replies
View Related
Mar 24, 2012
How to have “window” selection when using the “adjust space” command?
I’m wondering if there is a way to select all the dimensions needed to be adjusted in one go instead of selecting them one by one.
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
View 2 Replies
View Related