If I am working on a layer, then select a new layer to work on, then paint on that layer, then undo: the brush stroke is undone, but also the previous layer I was working on re-becomes the active layer. I want it to stay on the new layer I selected. Is there an option for this?
I want to know if I have understand this correctly or not: layer previous undos the last change in layer related command. Then If my last action is on layer, unod command will do the same. layer previous advantage is when you want to perform an undo which is not your last action.
I was messing around in CS6 and accidentally selected "conver to smart object" on one of the layers. So now with layering multiple layers, I can't just select the areas once and use Gaussian blur. I would need to keep re-selecting all the areas for ALL the textures. It's because the layers have become smart objects.
How can I undo my layers being smart objects? I want to just have the regular layers and only want to use the same selection (with the lasso tool) once to erase multiple layers of textures I don't want?
Here is an image so you can see what I am talking about. I don't want ANY smart layers on there. I Just want to do gaussian blur on the layers themselves.
I feel really dumb right now but for some reason I'm having trouble deselecting. First off, I'm talking layers and vector objects here. I know Cmd D deselects selections. But how you do deselect any layer which might currently be active? I'm working in PS CS6 for the first real time and it's like I suddenly got dumb or something.
I know you can select a blank area of the Layers Panel to do it, but my Layers Panel is full right now, so I don't even see any dead space. This is especially troubling because I'm making a lot of shape layers and if I do that while a layer is selected then I wind up making masks.
Undo in Adjustment layer in Photoshop CC doesn't work well. When I made undo, the photo would go back, but "Properties Panel" doesn't go back. It still keeps the same value before undoing.
Properties Panel would go correct value, after I select a another layer and select adjustment layer again. I checked all of adjustment layers, and I found that most of them has the same behavior. (Between Brightness/Contrast... and Selective Color...)
What version of Photoshop : 14.0 Have you installed the recent updates?: Yes What operating system? : Windows7 64bit What kind(s) of image file(s)? : any kind If you are getting error message(s), what is the full text of the error message(s)? : no message What were you doing when the problem occurred? undo Has this ever worked before? no (CS6 works well) What other software are you running? Google Chrome Tell us about your computer hardware. RAM16GB Free space on C: 80GB Has this ever worked before?
Is there a script to convert a layer or layer group to a 32-bit image rather then the entire active document at present that is the only option in Ps 5.x.
Using Photoshop CC, if you have a vector mask on a layer and attempt to crop the image, the vector mask shifts incorrectly after the crop is completed. The image is garbled. If I rasterize the vector mask to a standard layer mask, the crop works successfully.
I've checked to make sure that there are no numbers in the crop tool options. Nothing appears to be set incorrectly.
New user: I erased the background (BG) on the image I have so it is transparent. Saved as PNG. Now how do I put the new BG? I know I have to get the new BG on an active layer. Then, do I copy the FG (Foreground) image and paste somewhere. IOW how to merge the two? Must they be same size etc?
When you try to rescale a layer using the Rescale Tool with a layer mask active, it scales of the mask, likewise if you select the layer it will scale the layer. Can I select both the layer and layer mask and scale the layer, thus it keeps the layer mask showing the desired masked area only. As the only way I can see currently is by applying the layer mask on the layer and then you can see the layer/s below to get the scaling that is desired. But I would like to keep the layer mask active for editing after scaling.
I have a layer I'm resizing and is currently in Transform.When I beging to drag the layer to position while it is in resize the center reference point will jump to my mouse causing me to move the reference point outside of the tranform layer. Normally I would have to click on the reference point and drag it intentionally or hold CTRL and click in the transformed layer to set a reference point, but it since CS6 is had still remainded in CC.
This happens when I transform the layer (Ctrl+T) and then grab the layer to move. I have to put the reference point back to center via mouse or by the reference point on the menu bar up top. Then I can go back and drag my later where I need it to finish my transform.
Dim editor As Editor = Application.DocumentManager.MdiActiveDocument.Editor Dim db As Database = HostApplicationServices.WorkingDatabase Dim tr As Transaction = db.TransactionManager.StartTransaction()
[Code].....
the only prob is : I want selec all block but not the block on layer frozen, off or not visible...
I can check all layer stat on each block.. (i do that already for check each block (name) but i want a solution more easy.)
Is there event for change current (active) layer of document?
(it's not Database.ObjectModified - it's not raised).
I tried to do it with binding as:
public void Initialize() { var layerList = Application.UIBindings.Collections.Layers; layerList.PropertyChanged += new PropertyChangedEventHandler(LayerList_PropertyChanged);
And -= in Terminate, but... Autocad 2012 chashed _sometimes_!!!
Impossible to understand when it happened. So I reject this way. Is there other way to handle this event?
There is a method for extruding ignoring the actual active layer, so the extrussion result is the same as 2D base object...(and is not created in active layer) i forgot how coul i do this, is really useful
It does almost what I need it to do. except that it also copies the ".ai" in to the layer name. Is there some way to modify this script to have it exclude or delete the file extension?
I think it'd be so cool to be able to replay your entire undo history of a picture, so you can see and show others how you proceeded on a picture you made. That way, it's never necessary to capture screen video for like 10 hours and stuff..
So first you'd need to add an option to save the undo history (so that you always keep the history from when you started). Then you'd need an option to playback the undo history.
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.
I have a problem understanding how undo marks are added to the undo stack.In the code below a fan of lines are draw in a random location.If you run MTest a few times, the AutoCAD Undo command will remove the fans one at a time.
If you run MMulti to draw 10 fans, the AutoCAD Undo command will remove all the fans in a single step.I want to be able to remove the fans one at a time.I thought that a StartTransaction / Commit pair would act as markers for the undo stack, but this isn't working.
Tested on AutoCAD 2010 VS 2008 <CommandMethod("MMult")> _ Sub testmult() Dim i As Integer For i = 1 To 10 Call testdraw() Next End Sub [code]....
How to go about making it only change the color of text frames on the active layer? In the final script I will hide all other layers so if it could be done by a visible attribute more easily that would work just as well.
Since Edge only has rectangles and ellipses built in as available shapes, how to I/we work with polygon shapes and active mouseover areas INSIDE of these shapes and non-active mouseover areas OUTSIDE of the shapes?
Problem/symptom: when I import a polygon, be it any file format from from Photoshop or SVG from Illustrator, a rectangular border/background (transparent) gets applied, leading to this rectangle defining the mouseover area of the shape - and not the shape itself (be it a star or whatever).
WHAT I WANT: the very shape defines the mouseover area. How do I achieve this?? See examle below:
My current scene has 10 animation layers for a character, and seeing every f-curve from all layers, although grey and locked, when I only need to see the f-curves in layer I'm working on is really cluttering the graph editor. My current work around is selecting my active layer in the Layer Editor every time I select a rig control. Simple enough, but a pretty inefficient way of working. I can't seem to find a setting that allows me to just see ONLY the fcurves in the active layer. I imagine some of you out there may have hundreds of animations for a single game character.
I've made the switch from Photoshop v7 to Photoshop CS2 (yay), but theres this one very annoying little nuisance! In v7, i could try some things out and experiment with things, and if i was unsatisfied with the results, i would just pres Ctrl+Z a couple dozen times, and voila! Back to where I would experiment some more. However, in CS2, i can't find out how to set so that i can UNDO more than once. It just toggles between UNDO and REDO. Its just a minor annoyance, but it really bugs me. Is there a way to undo more than once (or a whole lot ) by pressing Ctrl+Z or another keyboard shortcut, or am i stuck to using the history window?
I have photoshop CS, I can't undo more then one action!! Is there a way to Undo more then one step? All it's doing for me now is Undo, Redo, Undo, Redo... im usd to bein gable to just hit undo undo undo and say for example undo three lines I had drawn... How do I have multple undos?
In CS that I've just installed (yes, new to PS the ctrl-z only undo's 1 step backwards, what can I do to enable it to undo multiple times? Coming from PSP, you could undo for hundreds of steps....
Whenever i make a mistake i press Ctrl+Z but it only go's back one step. I cant find the setting to change it so i can go back about 10 or 20 steps. Is there such a setting?
Also, can anybody give me advice about making a (Simple) mouth. I can only make straight line. I tried to curve them with the smudge tool but it looked awful.
Undo method, under the Edit menu. The Undo turns into Redo, and you have to use the Step Backward command if more than one undo is required. Even Ctrl Z is both an Undo and Redo if pressed consecutively. Image Ready doesn't work like this, nor do most other apps, including other Adobe programs. Just seems a strange approach, particularly as it appears only Photoshop uses this method (Although maybe it's changed since PS 7?).