Expanded or collapsed layer status

Every time I open a file, almost all of the layers in the first level seems increased, even if the file has been saved with these layers colapsed.

So, as I have many layers and sublayers/groups, it is difficult to navigate to a specific place and I need to reduce the layer by layer.

Y at - it a trick to force Illustrator to remember the State of the layer?

Thank you

Furia

This problem is resolved in 17.1 update released for Illustrator CC

Simart

Illustrator team

Tags: Illustrator

Similar Questions

  • Lightroom cc 2015.2.1/ panels will not expand or collapse/also straighten sovereign hit and Miss on the crop tool

    develop signs 2015.2.1/ Lightroom CC mode not to expand or to collapse/also straighten rule hit and miss out on the crop tool ~ any suggestions?... it's also very very slow! ~

    We just released 6.4/2015.4 Lightroom that fixes Lightroom 6.3: problems with crop rotation / & Nikon question attached with Lightroom running on Mac OS 10.11.

    Please see Lightroom CC 2015.4 / 6.4 available

    Kind regards

    Mohit

  • How expand/resize single-layer multilayer image?

    I have a picture that I am wanting to use as a reference of size for a cartoon character.  I tried several methods to resize the layer, but all the resizing seems to be the entire image even when the layer is selected.  Is there a way to do this?  I use the latest version of CC in Windows 7.

    Thank you, Suzi

    Hi Suzi

    Select the layer, and then use ADSI > free transform or Ctrl (Cmd) t

  • TreeField and navigationClick for expand/collapse?

    I'm doing a MSN Messenger or Google Chat interface on blackberry. One of the functions they have is a TreeField that when a parent is clicked above immediately develop or reduced the subtree.  By default, TreeField seems to open a menu where it actually have to highlight, and then click to expand or collapse.

    Is the best way to implement a single click to open/close using the method of the TreeField navigationClick?

    Anyone with the code example?

    Thank you.

    NavigationClick using should work fine. This should be close:

    protected boolean navigationClick(int status, int time) {
      // we'll only override unvarnished navigation click behavior
      if ((status & KeypadListener.STATUS_ALT) == 0 &&
          (status & KeypadListener.STATUS_SHIFT) == 0)
      {
        int node = getCurrentNode();
        if (getFirstChild(node) != -1) {
          // node is an internal node
          setExpanded(node, !getExpanded(node));
          return true;
        } else {
          // click is on a leaf node. Do some default action or else fall through
        }
      }
      return super.navigationClick(status, time);
    }
    

    It can also function as a method on a form that contains only a single TreeField (after that change of all TreeField method calls while they are called on a variable of TreeField rather than on this).

  • How to add expand all trees and collapse all buttons tree in Oracle JDeveloper?

    Hello

    I want to add two buttons on my page. I got a tree and add two buttons to expand and collapse all tree nodes. When the user clicks on expand all the button he will develop any node of the tree, and when the user clicks on reducing all the button, it will collapse all the tree how...?

    I have JDeveloper 11 g R2 version...

    Put your tree in an af:panelCollection that has this feature out of the box.

    Timo

  • Expand/collapse PanelBox behave differently on wls integrated and stand-alone wls

    12.1.3 jdev

    WebLogic 12.1.3

    I have a test page which Expand/Collapse PanelBox according to a logic managed bean when a button is clicked. User can also manually click on the small triangle to open/close the group box.

    If I run my integrated weblogic Server page of jdev, everything works fine. PanelBox develops or reduced depending on the result of my bean managed after that I click on a button. After that I have manually expand/collapse it, by clicking the button again can expand or collapse the group box.

    But when I deploy my test on stand-alone weblogic server, by clicking on the button can expand/collapse the box. But if I manually expand/collapse the box for once, while clicking on the button after will not not expand/collapse the box not more.

    I check all the associated adf jars on integrated wls and wls autonomous. I have not noticed any difference.

    No idea why the same code behaves differently on different servers? Any suggestions that pot I should double check?

    Thank you.

    The difference has something to do with the doctors that we have configured on wls. We did the following and now the panelbox open/close correctly.

    1 Add a class to extend ComponentChangeFilter.

    SerializableAttribute public class RejectPanelComponentChangeFilter extends ComponentChangeFilter {}

    @SuppressWarnings("compatibility:-4979717484313581204")

    private public static final long serialVersionUID =-3565272558295489717 L;

    public RejectPanelComponentChangeFilter() {}

    Super();

    }

    Public ComponentChangeFilter.Result accept (ComponentChange, componentChange, UIComponent uIComponent) {}

    If (RichPanelBox instanceof uIComponent & "disclosed".equals (((AttributeComponentChange) componentChange) .getAttributeName ()) ") {}

    Return ComponentChangeFilter.Result.REJECT;

    }

    else {}

    Return ComponentChangeFilter.Result.ACCEPT;

    }

    }

    }

    2 and in the bean of backup of the page with panelBox on the PanelBox setter, follow these steps:

    {} public void setFinderCriteriaPanelBox (RichPanelBox finderCriteriaPanelBox)

    this.finderCriteriaPanelBox = finderCriteriaPanelBox;

    int filterCount = ((UIXComponentBase) finderCriteriaPanelBox) .getComponentChangeFilters () .length;

    If (filterCount == 0) {}

    finderCriteriaPanelBox.addComponentChangeFilter (new RejectPanelComponentChangeFilter());

    }

    }

  • Expand/collapse extracts (assets/styles/layers) Panel when viewing in CC MyAssets psd files online

    Hello

    It's more of a feature than a question in itself, request but I didn't know where to post a feature request, so here we go:

    When you view PSD Photoshop online in "MyAssets" of Creative cloud, which IMO is actually one of the best features of the creative cloud, it would be very helpful if you could expand and collapse the styles/assets/channels Panel that is located on the right side.

    I don't think it would be particularly difficult to implement, but it would be really useful when displaying the drawings on more small (or portrait) monitors.

    Thank you very much

    Thanks for the feature request. Assets CC and extract team have heard of you.

  • Collapse and expand Splitter via code

    Experts,

    I have a pannelSplitter that I'm expanding and collapsing using JS on click of a button (by my button is enabled or disabled). I want to have the same functionality by clicking on the collapse of the separator - so that the button is enabled or disabled as above.

    I tried to use the clentListener on pannelSplitter with the guy like propertyChange, but my page hangs in Jdev 11.1.1.5

    Please notify.

    thnks

    Use "propertyChange" event in the client listener. Please check the sample below.

    PanelSplitter.jspx:

    
    
      
      
        
          
            function onPanelSplitterClick(event) {
                component = event.getSource();
                AdfCustomEvent.queue(component, "PanelSplitterServerEvent", null, true);
                event.cancel();
            }
          
          
            
              
                
              
              
                
              
              
              
              
          
        
      
    
    

    PanelSplitterBean.java:

    package com.samples;
    
    import oracle.adf.view.rich.component.rich.layout.RichPanelSplitter;
    import oracle.adf.view.rich.render.ClientEvent;
    
    public class PanelSplitterBean {
        private RichPanelSplitter panelSplitter;
    
        public PanelSplitterBean() {
        }
    
        public void setPanelSplitter(RichPanelSplitter panelSplitter) {
            this.panelSplitter = panelSplitter;
        }
    
        public RichPanelSplitter getPanelSplitter() {
            return panelSplitter;
        }
    
        public void panelSplitterServerEventListener(ClientEvent clientEvent) {
            if (panelSplitter.isCollapsed()) {
                // Do necessary logic for collapsed
                System.out.println(":::: Collapased ::");
            } else {
                // Do necessary logic for Expanded
                System.out.println(":::: Expanded ::");
            }
        }
    }
    

    Thank you
    Nini

  • Problem with ADF expand/collapse tree

    Hi all

    I have a customer that has problems using the af:tree on a deployed application component. When he tries to expand or collapse a node in the tree, the icon just flashes. This happens not only on our request, but also the Oracle ADF Rich Client demo on http://jdevadf.oracle.com/adf-richclient-demo/faces/components/tree.jspx. It uses Internet Explorer v7.0.5730.13. As far as I know, our browser settings are the same, but I can use the tree without problem.

    Any ideas as to what could be the problem?

    Thank you

    Brad

    Make sure that under Advanced settings, they have Enable native XMLHTTP support under tension.

  • Presentation layer - tree structure Question

    Hello

    In the layer of my presentation, I have three tables of presentation, they expand (+) and collapse (-) sign next to them when necessary. Is it possible to make a layer below as a column of presentation only model topic with expand and collapse trees inside, as below.

    -----
    PRESENTATION

    -NEW DOMAIN
    -DIMENSION
    + - HIERARCHY - dummy column
    Column1
    Column2
    -------
    + - ATTRIBUTES - dummy column
    Column3
    Column4


    Please NOTE: I am aware that I can create a dummy column as the title, but what I need is a tree structure with expand option (PLUS SIGN, when you click on extends the list), as well as the list isn't too long.

    Thank you.

    Sorry, I should have said,

    you won't see it in the RPD, it comes through in the answers :-)
    In my view, that I missed the point here if your only interested by the RPD :-(

  • The Explorer does not collapse 'Libraries' and 'User' to the closing and reopening of the records.

    This is a rather minor annoyance, but it seems every time that a user develops their folder 'User' and farm explore, Explorer will continue, opening with the folder 'User' expanded until they reduce manually.

    Part of the computer is to be efficient as possible, and when I open explore to find the folder of the user is developed, pushing "Computer" and "Drive C:" out of the box, I think it's pretty boring.

    Vista always collapsed the "User" folder, then why isn't Windows 7 do as well?

    Is it possible to disable this behavior? I already looked through Group Policy, but until now, I had no chance.

    This is a rather minor annoyance, but it seems every time that a user develops their folder 'User' and farm explore, Explorer will continue, opening with the folder 'User' expanded until they reduce manually.

    Part of the computer is to be efficient as possible, and when I open explore to find the folder of the user is developed, pushing "Computer" and "Drive C:" out of the box, I think it's pretty boring.

    Vista always collapsed the "User" folder, then why isn't Windows 7 do as well?

    Is it possible to disable this behavior? I already looked through Group Policy, but until now, I had no chance.

    I found a working answer to the Microsoft web site. A record appropriate to the real problem-solvers to the destination address.

    There is a registry key that captures the State of the State of opening and closing of the main files in the Explorer on the left Nav-component, which can be set in the left of the Explorer, Explorer closed to set the key "reg", then the value of reg key manually turned to unalterable. Now when you open occasionally these folders as Favorites or your user ID (or several program file is more problematic / parameters of the open dialog box will open your user folder), after having turned regkey unalterable, when Explorer or application of file dialog box is closed, the expanded NavPane records regkey is not re-written, staying at your preferred expanded state / collapsed.

    State information about the left NavPane of Explorer are stored in the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\NavPane registry key. If you delete the value of registry ExpandedState, the next time you open the browser it will show the tree 'by default' State.

    A user also wrote a batch text file (so you can see each line of code to see what it does) to allow you to explore the value as you wish, then turn to the State of NavPane read-only to preserve the State indefinitely. The batch script also allows you to reset the features to windows default (turn the read/write registry key) and so on.

    Here is the link to the site of Microsoft with all the details and the script file:

    http://social.technet.Microsoft.com/forums/Windows/en-us/48ebc898-290D-405f-b4d5-c3dc72278b76/collapse-all-foldertrees-when-closing-Explorer

    ---------------------------------------

    As a feature add-on to what precedes, I understand this info because the comma/space syntax is different for Win7 vs. WinXP / other versions which is well documented on the web sites. This sytnax opens the Explorer to your file preferred, separate records that are expanded / collapsed with the answer provided to the direct question of this thread, but usually directly related to the objective of opening explore according to your specific needs.

    Here are the command line parameters to further open Explorer to a directory preferred in Win7 32-bit Home Premium. Create a shortcut with this command as a target line: C:\Windows\explorer.exe explore/e/root, / select "C:\". ","C:\PreferredDataDir ".

    Replace C:\PreferredDataDir with of course your favorite directory, including only a reference to the root of C:\ or a different drive letter if you prefer on a subdirectory. The specified root option still allows access to drive E: etc, unlike the desired effect added to the possibility of limiting traffic only within the specified root, which may work on other versions of Windows.

  • Navigation bar collapse

    I started to make my Web site with DW tutorial and now I stuck on a site navigation. Why it is not expanding and collapsing when I click on the navigation of parent to see the sub navigation?  I want to do only with css without adding any javascript. I want it to look like this site navigation http://explorecalifornia.org/tours.htm

    Here's what I did on my site:

    < div id = 'mainNav' >

    < ul id = "baseNav" >

    < li > < a href = "#" > Link1 < /a > < /li >

    < ul class = "subNav" >

    < li > < a href = "SubLink1.html" title = "SubLink1" > SubLink1 < /a > < /li > "

    < li > < a href = "SubLink2.html" title = "SubLink2" > SubLink2 < /a > < /li > "

    < li > < a href = "SubLInk3" title = "SubLInk3" > SubLink3 < /a > < /li >

    < /li > < /ul >

    < li > < a href = "#" > Link2 < /a > < /li >

    < li > < a href = "#" > Link3 < /a > < /li >

    < li > < a href = "#" > Link4 < /a > < /li >

    < li > < a href = "#" > Link5 < /a > < /li >

    < /ul >

    < / div >

    and here's the css:

    {#mainNav}

    background-color: #FFF;

    height: 600px;

    Width: 200px;

    float: left;

    top of the margin: 100px;

    }

    / * Homepage navigation * /.

    UL #homeNav {}

    float: left;

    list-style: none;

    margin: 0;

    padding: 0;

    margin-bottom: 50px;

    Clear: left;

    border-top: 1px solid #CCC;

    }

    UL li {} #homeNav

    margin: 0;

    padding: 0;

    Background: #FFF;

    color: #006;

    border-bottom: 1px solid #E5E5E5;

    }

    #homeNav li UL a {}

    display: block;

    Width: 200px;

    Padding: 15px 0px 6px 0px;

    text-indent: 2em;

    text-decoration: none;

    }

    UL #homeNav li a: hover {}

    color: #006;

    text-decoration: underline;

    }

    / * navigation database * /.

    UL #baseNav {}

    float: left;

    list-style: none;

    margin: 0;

    padding: 0;

    margin-bottom: 50px;

    Clear: left;

    border-top: 1px solid #CCC;

    }

    UL li {} #baseNav

    margin: 0;

    padding: 0;

    border-bottom: 1px solid #E5E5E5;

    }

    #baseNav li UL a {}

    display: block;

    Width: 200px;

    height: 40px;

    Padding: 15px 0px 0px 0px;

    text-indent: 2em;

    text-decoration: none;

    }

    UL li ul li a.current:hover {} #baseNav, a. #baseNav

    border: none;

    cursor: default;

    }

    UL #baseNav li a: hover {}

    border: none;

    color: #006;

    text-decoration: underline;

    }

    / * sub navigation * /.

    UL #baseNav ul.subNav {}

    list-style: none;

    margin: 0;

    padding: 0;

    margin-bottom: 0px;

    }

    UL li {} ul.subNav #baseNav

    margin: 0 5px 0 50px;

    }

    UL #baseNav ul.subNav li a: link, ul #baseNav ul.subNav li a: visited {}

    display: block;

    Width: auto;

    height: auto;

    text-indent: 0;

    padding: 5px 0;

    color: #003;

    }

    UL #baseNav ul.subNav li a: hover {}

    color: #006;

    }

    UL #baseNav ul.subNav li a.the {}

    color: #666;

    border-bottom: 1px solid #e5e5e5;

    }

    I'll be very grateful if you could help me!

    Thank you very much, I took off. What about css, is it correct? It is still not collapse.

  • Y at - it a keyboard shortcut to reduce all the effects in the layer panel?

    It would be very convenient. I have tried searching without success. Of course, the reverse is also true. It would be nice to have a shortcut key that extends to all effects.

    In photoshop cs6, you can Alt (option) click the little arrows in the layers Panel next to the fx to expand/collaspse all layer effects.

    I think it is new in photoshop cs6.

    http://helpx.Adobe.com/content/help/en/Photoshop/using/JDI-productivity-enhancements-CS6.h tml

  • What does my computer when "Maintenance is underway"?

    Why my computer is always run maintenance tasks? I have Norton and I regularly update Windows. I have also stop and restart my computer every day. So why it seems that he is perpetually makes a kind of maintenance.

    I also noticed that my CPU fan is frequently turned on during these sessions and my mouse control gets really 'glassy '. I have a paranoia that my computer has somehow been hacked and when he said that he performs maintenance, I imagine that it is actually performing a subroutine where she is taken hostage by a third party provider for any harmful use. Probably sending spam or something like that. Why Microsoft does not include a status bar, or something? A simple "your computer is clean unused files, or defragment the drive hard or at least something!

    And why he last so long?

    Hello Joel,

     

    Welcome to the Microsoft community. I will certainly help you with the problem you are experiencing.

    The automatic Maintenance Windows reduces the impact to the PC in planning maintenance only when the PC is powered on and idle. By default, the system performs maintenance every day at 03:00. (Note that the user can set a new appointment in case of maintenance). This session is limited to a maximum of 1 hour per attempt. If the user is actively using the machine, the system differs maintenance until a later date. The system suspends also maintenance running any task, if the user returns to the PC.

    You can go to the center of the Action and click on maintenance and read why service is running. To do this, follow the steps below.

    1. press Windows + X on the keyboard. Click on Control Panel.

    2. click on system and security and then click on the status of your computer.

    3. to view details about the security or the maintenance of the article, click on the title or the arrow next to the heading to expand or collapse the section.

    For more information, see these links:
     
     
  • No visible mask values?

    I have a bit of a problem with masks. It seems that I can't change the values of the pen, the opacity, the expansion... anything really. The values are simply not there. Has anyone encountered this problem?

    See the image below:

    masks.png

    I use a computer laptop HP, AE 13.5.1.48 running

    Thank you!

    You have hidden column. Right-click in the column header and turn it back on. Looking for the Modes column or switches.

    Or - go to the lower left corner of the timeline and click on the first icon to expand or collapse the Panel layer Switches

Maybe you are looking for