AutoCAD 2010 :: Adjust Transparency Of Locked Layers?
Apr 16, 2012
how to adjust the transparency of locked layers? Also when I isolate a layer the other layers appear semi transparent, is it the same setting to adjust this transparancy as well?
View 2 Replies
ADVERTISEMENT
Aug 6, 2009
I have made gridlines and put them on a locked layer. I want to be able to see them and snap to them, but I don't want to select them. Their selectability is hindering my ability to select objects on other layers. Is there any way to make lines on locked layers not selectable? (I don't like the Autocad standard grid.)
View 9 Replies
View Related
Jul 13, 2013
How to adjust the transparency of an image in the AutoCAD?
View 2 Replies
View Related
May 2, 2013
It looks as though my transparency object is locked because I am trying to edit a bitmap file and I don't get the checkered background behind the object.
View 2 Replies
View Related
May 12, 2012
I need an overrule that can not snaps object in all locked layers. How to do that.
View 9 Replies
View Related
Apr 9, 2013
In my layer prop manager, I have 2 layers with the name "0". How is this possible? Also, I'm trying to move the lines/polylines on either one of these layers and it won't move because it's locked. But when you look on the layer manager, BOTH of the 0 layers are not locked down.
View 5 Replies
View Related
Dec 29, 2012
I have this application: It's a userform with a combobox filled up with all layers. There also are 2 commandbuttons and a label.When I apply the command button all the layers except the selected layer in the combobox lock. That's good.This is the problem:
Normaly when I lock a layer it is fading (laylockfadectl 80). But when I lock layers with this vba code it doesn't fading locked layers.
Option ExplicitPrivate Sub cmbx1_Change()Label1.Caption = cmbx1.ValueEnd SubPrivate Sub cmdAPPLY_Click()On Error Resume Next 'handle exceptions inline
Dim objlayers As AcadLayersDim objlayer As AcadLayer
Set objlayers = ThisDrawing.Layers 'make the layer selected in the combobox current
[code]....
View 1 Replies
View Related
Dec 10, 2013
where is the setting to change the Fade Control when you lock a layer?(It is not the same as the Fade Control of the External References in the Display tag of the Options dialog. I know that one and I am aware of this one.)
The one that I want to know is of the locked layers. When I lock a layer, the objects in the layer fade.
View 5 Replies
View Related
Sep 7, 2012
locked objects get selected, but nothing acts on them. that is i do see them getting dotted while i selected all objects on other unlocked layers. is there way that locked layers don't get dotted while selection? just like in sketchup?
View 5 Replies
View Related
Apr 27, 2012
I have a question regarding AutoCAD 2012 and when it comes to locking layers.
When working on the basement layer I would like to see that layer locked in turn not affecting my other layers, ie: my house/garage/second-floor.
View 9 Replies
View Related
Aug 16, 2011
Create a command (macro) to unlock all locked layers and remove the fade effect. I know how to unlock them by using the command LAYULK, selecting the entities on the locked layer. I have been trying to automate the command so I don't have to select entities.
View 4 Replies
View Related
Dec 21, 2012
I have a form with a combobox and a commandbutton.
All layers in the layermanager must be locked except the active layer chosen in the combobox. I try it with this code but it’s not the right solution.
Private Sub CommandButton1_Click()Dim layer As AcadLayer'check if all layers are lockedIf layer.Lock = False Thenlayer.Lock = True'make the layer selected in the combobox currentThisDrawing.ActiveLayer = ThisDrawing.Layers.Item(ComboBox1.Text)End SubPrivate Sub UserForm_Initialize() Dim layerColl As AcadLayers Dim layer As AcadLayer Dim LayList As String ' all layers locked For Each layer In ThisDrawing.Layers If layer.Lock = False Then layer.Lock = True End IfNext 'fill combobox Set layerColl = ThisDrawing.Layers For Each layer In layerColl ComboBox1.AddItem layer.Name Next End Sub
2. When I choose the for next method to lock all layers (40 layers) it’s very slow.
View 4 Replies
View Related
Jun 25, 2012
The routine below delete group of blocks by name, but if the blocks are on locked layers, these are not removed.
How can improve the lisp?
(defun c:deleteblock (/ rn ss)(defun Jd (realname) (setq ss (ssget "x" (list '(0 . "INSERT")(cons 2 (strcat "`*U*," REALNAME))))) (mapcar '(lambda (x) (if (not (eq REALNAME (vla-get-effectivename (vlax-ename->vla-object (cadr x))))) (ssdel (cadr x) ss))) (ssnamex ss))(setq ss_len (sslength ss)) (command "_erase" ss "") ) (setq rn (vla-get-effectivename (vlax-ename->vla-object (car (entsel "
Select the block you want to delete:"))))) (jd rn) (princ (strcat "
" (itoa ss_len) " Blocks called "" rn "" has been deleted")) (princ) )
View 9 Replies
View Related
Jan 4, 2012
i am trying to restrict users from modifying certain attributes in a block,i can create the blocks with some of the attributes on locked layers, but then autocad pops up an annoying alert box, is there a way to disable this? the other option i can think of is to redefine the commands *ddedit, *attedit, *ddatte,*attipedit,
View 5 Replies
View Related
May 15, 2008
I am using Photoshop CS2 and whenever I open a .jpg , .gif or use my scanner and scan something into PS the layer always starts out locked.
Is there a way to change this so it is not locked everytime?
View 2 Replies
View Related
Mar 8, 2009
I am using Photoshop CS2 with Windows XP. Why are all the photos that I import into Photoshop have the layer locked. I tried to save them both as .psd and as .jpeg. But, it makes no difference. In the layer pallette, the layer is marked as locked but the icons at the top are all grayed out.
View 7 Replies
View Related
Dec 21, 2011
I have this problem with AutoCAD 2012 and with LT2011. When first opening a drawing in a layout with the viewport locked and activated, the first scroll action moves the drawing within the viewport. After the first scroll, any scrolling moves the entire viewport as it should when locked. Putting the drawing back to where it was within the viewport requires unlocking the viewport or undoing everything back to the first scroll action. This is very anoying especially if you are zoomed in and can't see the edges of the viewport and don't notice the move right away. I did not have this problem in the older versions.
View 2 Replies
View Related
Aug 21, 2012
Working in AutoCAD 2011. Unable to modify text once the text box is closed. I can only erase and re-write once closed. Bummer! When I re-select and double click on text, neither the box that typicallly encloses the text nor the "drop down box" w/ the various modifications that can be made appears. This includes new text just written since re-opening the file and existing text that was entered in previous sessions. I don't see anything that indicates that the text is "locked" or otherwise restricted from modification.
View 2 Replies
View Related
May 29, 2013
I've locked a layer and this one went off, too. This is AutoCAD 2010, it's because the program?
I want my layer ON but locked, what can I do?
View 2 Replies
View Related
Mar 17, 2012
I am trying to draw dimension leader arrows. I start "_LE QLEADER" and go to settings and tell it I want my arrowhead to be "closed filled". I draw the arrow, and it comes up as a "DOT" arrow.
I can change this in the Properties, but who wants to do that every time? When I go back to "_LE QLEADER" and go to settings, the arrow block is set back to DOT, even though I just changed it to "closed filled".
I used "rename" to rename my "closed filled" block to "dsfsdfsdf", in case the block got redefined somehow.My dimblk is set to "", as are dimblk1 and dimblk2. Tried both setting of dimsah as well.
I do not see any "CExxxxxx" variable which might control this.
View 4 Replies
View Related
Feb 21, 2008
I am trying simply to work with layers, however when I start a new document and then import a photo, the background automatically locks. The lock icon is visible in the layers pallate. I can drag that icon to the trash and import another photo but the first photo disapears as the layers all merge on top of one another and the lock icon returns.
View 2 Replies
View Related
Jan 17, 2008
Is it possible to unlock a locked layer? The program seems to decide which photo I want to use as a background, and locks it, and it's not the one I want to use anyway lol
Is it possible to change which photo is used as the background, and unlock the layers? Can't seem to find a reference to it in help section.
View 2 Replies
View Related
Feb 15, 2007
Is it just me or was it easier to lock/unlock layers before CS2?
View 9 Replies
View Related
May 7, 2008
I am making a montage for my son's 40th birthday showing small pictures of him and our family over the years fro very early-age to the present time.
I had about 30 pictures already arranged as ALL the layers disappeared and the Background Locked layer is the only one left!
way of getting my layers back?
View 10 Replies
View Related
Jun 4, 2008
I have been sent a template that contains 4 fully locked layers. I seem unable to unlock them to enable me to edit them. Can someone advise how to do this in cs3.
View 8 Replies
View Related
Oct 15, 2012
I exported a few png's out of Avid that I want to edit in Gimp and bring into After Effects. It's a process I've done many times before. However, none of my tools seem to be working. They either give me the circle with a line through it or have no effect at all. I've found a few similar posts on various websites, but none of the solutions have worked for me. It's a brand new file, I'm opening for the first time., which is the only variable I can think of.
View 2 Replies
View Related
Aug 15, 2013
I would like to make a document which he can open in illustrator and only can edit the layers with text.The layers with my illustrations must be locked and not be editable.Who knows how i can save this document?And is it possible to do this with a PDF-document?
View 12 Replies
View Related
Jan 16, 2014
I have PSE 11 and no matter how I save what I am working on, even as a PSD with layers, I am unable to edit the project after it is saved. This started happening all of a sudden and it is difficult to work with being unable to simply edit as needed.
View 2 Replies
View Related
Mar 1, 2013
My colleague made some drawings using AutoCAD 2011. Somehow the sheet status in Sheet Set Manager says all the drawings are locked for editing - it was unintentional. The drawings can be fully viewed only from the computer, which created the drawings. In other computers, we can only see the text. The model view and the bottom of the drawing which contains drawing number and other info do not show.
We need to deliver our drawings to the customer so they can see the coordinates in the maps/drawings.
How could we change the status or unlock it so the customer can view the entire drawings? If possible, we still want the drawings unable to be edited.
In our computer, we have AutoDesk Vault - did it somehow kicked in automatically?
View 4 Replies
View Related
Sep 27, 2012
Whenever I try to adjust my LTS for a line it changes the LTS of every line in my drawing instead of the individual line. How do I get it so it changes one line at a time?
View 2 Replies
View Related
Nov 12, 2012
My bg layers are locked on all my files. I can't move them to desktop etc. How can I unlock these.
View 2 Replies
View Related