Photoshop :: How To Turn Off/on Layer (visibility)
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
ADVERTISEMENT
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
Jun 5, 2012
I'm using BIMLink to adjust parameters in a model... If a dimension ends up being zero, is there a way for me to have conditional formatting to turn off visibility of a dimension with a zero value?
View 7 Replies
View Related
Apr 8, 2013
The attached part has multiple holes in multiple locations...... I want to show in the .idw one set "row" around the circumference at a time.
So I want to show set one, how far in from the end of the tube, then how many and at what degrees around the 360*. to do this i can only suppress the other features right now.
so when I make another View those same parts are suppressed and i cant change it around otherwise it messes with the holes I want and don't want to show in the previous view.
View 4 Replies
View Related
Apr 17, 2013
See attached screenshot.
Somehow my top level assembly shows the UCS triads for hundreads of my parts (but not all of them). I know I didn't turn the visibility of all these UCS triads on manually. Now I cannot get them to turn off.
When I toggle the visibility status of a few and save the file they come back when the file is reopened.
Note, they are NOT visibile in their respective part files, just in my top level assembly.
View 6 Replies
View Related
Jul 23, 2013
I'm just looking for some basic information about geo-markers and am having a hard time finding anything. What exactly is the geo-marker, and what is it used for? Is it important to have referenced? I know how to set the coordinates and to turn the visibility off. I'm just wanting info about what the geo-marker is, and it's uses.
View 1 Replies
View Related
Mar 18, 2013
I am trying to tag doors in a drawing. What I want to see is the door size, so I turn on 'width' parameter, and turn visibility off on the border of the text. Change the size of the text to match, easy enough. Now I want to place the text along the open door in the floor plan view, but the tag always jumps to the center of the door frame. Can this be modified to do as I want? is there an alignment parameter I can alter? Perhaps tagging the door family and aligning it in the family editor? Does Revit is capable of doing this. Until then, I have to place the text for each individual door.
View 2 Replies
View Related
Jul 21, 2008
The API doesn't appear to provide the ability to turn visibility off on a custom table row. Is there anyway to turn off the visibility of a row?
Auto desk: do you have plans on adding this functionality to the API?
View 4 Replies
View Related
Aug 29, 2011
In Inventor dwgs when I turn the visibility of the harness assembly off (the icon turns gray) the harness still remains visible in the View on the dwg. My co-worker is having the same problem. This is happening on several different inventor dwgs where the harness is not visible (the visibility is turned off) but once an edit is made to the assembly (such as making a part visible) the harness becomes visible even the the visibility is turned off in that View. I don't know if this is related to the recent installation of service pack 4 for inventor 2010 as this problem recently began occurring.
View 2 Replies
View Related
Oct 4, 2011
It happens sometimes, when I try to turn off the visibility of a part in a created view, the option is grayed out, can't uncheck visibility. Whats the reason?
View 4 Replies
View Related
Jul 28, 2012
As we have layers in AutoCAD Product, I Started using different sketches and using them as layers by turning the visibility on and off.
Can we write a macro (button Click) to turn one perticular Sketch on and off???
For example If I had a Sketch named as GROUNDFLOOR, can I use a macro to turn them off and on when needed?
View 9 Replies
View Related
Jul 4, 2012
I have three sketches. Two are 2D sketches and the third is a 3D sketch created by the intersection of two surfaces created from the previous two 2D sketches. The order of the browser is as follows:
Sketch1
Sketch2
Revolution (surface)
Extrusion (surface)
3D Sketch 1
When I go back to edit Sketch 2, Sketch 1 is always showing...regardless of whether or not I turn on/off visibility. The visibility toggle has no effect. Sketch 2 has no projected geometry from Sketch 1.
View 9 Replies
View Related
Feb 29, 2012
How do I turn sketch visibility on and off using ILogic rules.
View 3 Replies
View Related
Jul 16, 2008
I have an assembly that was generated by Pro/E. It opens fine, but there are roughly 1000+ planes that are all visible. Is there a way to easily shut these all off whithout having to do it in each part?
View 4 Replies
View Related
Aug 21, 2013
At my company when producing drawings for manufacture we require a sheet for any steel profiles to be cut!..We do this by selecting the assembly from base view,hitting model view tab, selecting presentation and choosing the relevant profile from the drop down!
Once the profile is placed, we highlight the view and hit the parts list tab which obviously creates a parts list, but for the whole assembly, we then have to edit the parts list by turning off the visibility of the lines of all the parts which are not relevant!!...as you can imagine this is quite a laborious task if you have 50 different profiles.
The reason for this is to show the qty, steel grade and part number to the suppliers. My question is, any code that will take the lines of the parts list that are not relevant to the selected view and turn the visibility of those lines off?
View 1 Replies
View Related
Jul 28, 2013
I've managed to cobble this code together to turn some sketch visibilities on and off. However, what I'd really like to do is have a single sketch containing some blocks, and turn the visibility of the blocks on and off... How to call the blocks -
'Iterate through the sketches collection'Turn the edging indicators On And Off
For Each oSketch In oDoc.ComponentDefinition.Sketches Select Case
oSketch.NameCase "Front Edged"If E01 = True Then
oSketch.Visible = TrueElse oSketch.Visible = FalseEnd IfCase "Top Edged"If E02 = True Then
oSketch.Visible = TrueElse oSketch.Visible = FalseEnd IfCase "Back Edged"If E03 = True Then
oSketch.Visible = TrueElse oSketch.Visible = FalseEnd IfCase "Base Edged"If E04 = True Then
oSketch.Visible = TrueElse oSketch.Visible = FalseEnd IfEnd SelectNext
View 2 Replies
View Related
May 20, 2010
Since changing to Inventor I seem to be unable to turn off visibility of parts in assemblies on a drawing. Usually I just expand the view in the browser then right click on parts and turn off visibility. When I try this the visibility option is grey.
View 5 Replies
View Related
Jul 5, 2012
It's 2012. I haven't found a setting in the dim style or the RMB options to turn off the extension line. I saw the posts showing drawing a sketch in the view but come on, all that to just turn off the line?
IV 2012 all sp & fixes
View 8 Replies
View Related
Jun 20, 2013
I there a way of finding each Bom structured part that is set to reference in an assembly and setting the view of that component to in-visible.
Also needs to iterate into all set View reps that where created and set all views to not show the referenced parts as well.
View 8 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
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
Oct 6, 2011
I have a drawing where I need to open the layer manager to turn on a layer in a view port but cannot get to that particular column. As you look across the top of the layer manager I can see all the headings of each column beginning with "Name", "Status", "On" and so forth. The last column heading I see is "Description" but I need to go even further to the right to get to the column I need to be at but can't get there. There is no scroll button on the bottom of the layer manager which would allow me to do that.
View 7 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
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
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
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
Dec 6, 2012
Is it possible to turn grids into a layer? I know this can be done with the vanishing point filter but can it be done with normal grids? I ask because grids are very useful but at times get in the way. If I could create a layer of my grids I could then turn them on and off as needed.
I am using Photoshop CS6 on Windows.
View 3 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
Mar 11, 2013
Difficult to explain this in the title hense I haven't found an answer with a google search.
What it is, is that I have an image (a stud of an earring) that needs to be repeativly added to each image by hand at the moment I leave the image of the stud open and cut and paste it.
There must be an easier way to do this?
I was thinking I could turn it into a brush? I found the clone pattern but in the way I am using it, it doesn't work as I can't see is what my brush is to get it to line up.
View 12 Replies
View Related
May 16, 2012
Is there a way to permanently turn on "view layer edges" in CS6? How about a way to bring back the arrange icon that was in the menu bar in CS5?
View 3 Replies
View Related
Dec 24, 2012
Just experimenting with grading in photoshop - so far so awsome
Trouble is I often dupe the original video layer to apply effects and this appears to dupe the audio - rendering the final audio totally overblown and distorted. - is there a way to switch it off for a specific layer?
View 3 Replies
View Related