Stacks within stacks?

Not so much a question... but why isn't this a feature?
Many times I route a handful of things into a bus (or track stack) only to end up routing that bus and maybe a few other into a semi'master' bus.
It would be awesome if I could have that master bus operate as a track stack in my environment with the 'open/close' function.  Yes, I can make that master bus into a track but I can't even take multiple busses and condense them in my environment window.  Or can I with folders or something?
Regardless... I dont want folders!
Just a thought!

Use the feedback form to request such a feature....
https://www.apple.com/feedback/logic-pro.html

Similar Messages

  • What is (Stack) in "(Stack)super.clone()"?

    hi. There's this code from the java tutorial (in the topic "Being a Descendent of Object"):
    protected Object clone() {
            try {
                Stack s = (Stack)super.clone();     // clone the stack   ---->look here
                s.items = (Vector)items.clone();     // clone the vector   -----> look here
                return s;                    // return the clone
            } catch (CloneNotSupportedException e) {
                // this shouldn't happen because Stack is Cloneable
                throw new InternalError();
    }I'd like to know what "(Stack)" and "(Vector)" stand for.

    they are casts.
    http://java.sun.com/developer/onlineTraining/new2java/supplements/2002/mar02.html#1

  • Sort images within stack by rating?

    Hi Gang,
    I'm editing a massive job and there's one part of the process that is taking forever. After I've rated every image within a stack, I seem to have to resort them manually to be shown from highest rating to lowest rating, either by dragging or by using the "promote/demote" buttons.
    Is there any way to make images in a stack sort themselves by rating? This would literally save me hours of time.

    I know of no way to automatically stack by rating. You could create Smart Albums with only certain ratings included. I know that's not exactly what you wanted to do, but it would accomplish a segregation of your photos by rating.
    Sorry not to be able to provide an answer, but I don't think there is one.
    Joel

  • "Fill base line"/"Fill to" problem within stack plots

    Hi there,
    I try to plot multi data sets within the stack plots waveform chart. But I can't control the Fill To option correctly for the plots other than the first plot in the window. As attached, even I set the fill baseline to zero for the second plot (the green one) in the first window, it performs like fill to -infinity. I am using Labview 2010 DS2.
    Any solution? Or, I made any mistake here?
    Thanks.
    Attachments:
    Stack Plot Fill Baseline.vi ‏12 KB

    I agree things behave a bit weird if the number of traces is not a multiple of the number of stacked plots. Do you want three stacked plots or have two traces share one of the plots? Maybe you should use more defined data structures, e.g. an array where each element is a clusters of size=3.
    Try the following:
    resize the plot legend so 4 stacked plots show.
    Now resize it again for two stacked plots.
    In my case, the fill to zero is now correct.
    LabVIEW Champion . Do more with less code and in less time .

  • Star Ratings within stacks

    How do you get a star rated image (that is part of a stack but is the only one rated) to show in a smart album?
    The only way this seems to work is if you rate the overall stack - then it automatically appears.
    Can't fathom it!

    Thanks for that.
    Can it also be done within the main Library for the
    Smart Libraries such as: 5 star, 1 star or better,
    Rejected etc etc?
    No, there's no way to have those or the quick-search stuff look inside stacks.
    If you need that to work, just make your own top-level smart albums with the same criteria as the "Library" smart albums, and then group them inside of a folder that you name to keep up top near Library. Create them at the top level before you put them in a folder or they will not be able to see any images. Once you create a smart almbum it always "sees" into the same places as when you created it no matter what folder you put it in after.

  • Filtering within stacks

    I have been working with a number of images, some of which are stacked together.  I open a stack, edit an image and mark it with 5 stars. Close the stack, then move on to the next one.  After finishing editing all my images, and all stacks are closed, I apply a 5-star filter so that I can select all my 5-star images and move them to a collection.  However, none of the images in the (closed) stacks are selected!   Is there any way around this without opening all my stacks one by one before applying a selection filter? 

    "Is there any way around this without opening all my stacks one by one before applying a selection filter? "
    The easiest way is to select all, then hit the letter S which expands/contracts stacks.
    Think of items in stacks as being hidden.

  • Photoshop Elements 10 - Moving photos within stacks

    I am trying to move photos from one stack to another, both of which are in the same album. Direction is required.

    Though there's no direct way of doing this. I would suggest a workaround.
    > Select the album
    > The stack which you want to move photos from, say A - Keep it expanded
    > The stack where you want to move photos to, say B - Keep it collapsed
    > From A select photos you want to move to B
    > Right click >> Stack >> Unstack selected photos
    > Once done, press 'Ctrl' key and select stack B ( This is done to retain [previous selection, On MAC use Cmd key )
    > Right click >> Stack >> Stack selected photos
    > Press ok to the dialog which says that the selected photos included stacks as well
    Hope this helps
    Thanks
    andaleeb

  • ProgressBar within Stack-Layout

    Hello, I have created a custom Node to view a Text centered in a ProgressBar by using the Stack-Layout. All works, but the ProgressBar always has a invisible space on the left and the right side and I do not know, how to delete this space:
    def progressBar:ProgressBar=ProgressBar {
    progress: ...
       def text:Text = Text{
           content: actualProgress
    def rectangle:Rectangle = Rectangle{
        width: 200
        height: 100
        fill: Color.BLACK
    Stage {
        width: 400
        height: 150
        scene: Scene {
                content: HBox {
                spacing: 10
                content: [
                Stack {
               // this does only lay out the text to left side, but not the progressBar..strange
               nodeHPos: HPos.LEFT
               // Unfortunately, the progressBar is not placed at the beginning of the HBox -
              // there is always a invisible gap at the progressBars left bound and right bound
               content: [progressBar,text]
             // the strange thing is, when using rectangle instead of progressBar, then the layout is ok,
             // as there is no gap at the rectangles left and right bound
            // content: [rectangle,text]
    }When using a Rectangle instead of the control "ProgressBar" then no invisible space occurs, which is okay.
    Is there any trick to lay out the progressBar without having a trailing space on the left and right side of this component when using the Stack-Layout?

    Hello,
    use this code and you will see, what I mean:
    import javafx.scene.Node;
    import javafx.scene.CustomNode;
    import javafx.scene.control.ProgressBar;
    import javafx.scene.text.Text;
    import javafx.scene.layout.Stack;
    public class MyProgressBar extends CustomNode{
    public var progressBarTitle:String;
    def progressBar:ProgressBar=ProgressBar { progress:0.0 }
    def text:Text = Text{ content: progressBarTitle }
    override protected function create(): Node {
        Stack  { content: [progressBar,text] }
    Now, I want to make use of my CustomNode:
    import myPackage.MyProgressBar;
    def myProgressBar:MyProgressBar= MyProgressBar{
        progressBarTitle: "Hello Progressbar"
    Stage {
        width: 400
        height: 150
        style: StageStyle.DECORATED
        scene: Scene {
                content: VBox { content: [ myProgressBar ] }
    }You will see, that the progressBar is not on the top-left corner of the scene. Am I right? Why is that so? How can I solve that?

  • ABAP and JAVA Stack ( Double Stack ) doesn't work with TDMS 3.0 correct ?

    Hi all
    I was in Walldorf and spoke with some Basis SAP persons and they told me that a "old"   "Double Stack" SAP couldn't transfer with TDMS. Is these answer correct and if its yes on which Guide i could read these ?
    Thanks for help
    SAPERLE

    Hi,
    here it is :
    TDMS shell creation
    Regards,
    Eddy

  • Stacks not stacked?

    Hi -
    I recently upgraded to 10.5.7
    When I click on either of the preset stack folders, then only show up in what I assume is "folder," no matter how I set the preference.
    Any ideas? Am I missing something? I'm not sure I want to use the actual stack option, but it should be working...
    Ron

    If you are looking for the Fan display, that is what you need to select.
    Also note that the Fan display is not available if the Dock is on the Side of the screen.

  • Business Graphics - Stacked Column - Stack with different colours

    Hello Experts,
    In the Webdynpro application, I'm using a business graphics UI element and displaying data in stacked columns. The color of the stacks are by default assigned by the framework. But I would like to change the color of the stacks and want to assign my own colors to each stacks. Is this possible in SAP Netweaver 7.1?
    Thanks and Regards,
    Saravanan

    Hi saraa,
    Go to EDIT CUSTOMIZING to change colors etc..
    Please go through this..
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ca932ebc-0901-0010-68a0-b4dd81a4bf81?quicklink=index&overridelayout=true
    also read this...http://help.sap.com/saphelp_nw04s/helpdata/en/ed/258841a79f1609e10000000a155106/content.htm
    Cheers,
    Kris.
    Edited by: kissnas on Apr 12, 2011 11:06 AM

  • Leaning Stack, Tilted Stack

    Can someone explain the logic behind the tilted or leaning Stack? Does anyone like the leaning stack? I think I understand what it is intended to represent but in reality it doesn't really come off as that. It looks "broken", like an unorganized stack or a too big stack ready to fall over - it says "Problem" - not "cute, creative, innovative" - despite the fact that I know it is an intentional effect. Reality is that - most things that lean, people fix or they have a desire to fix - Even a stack of paper or documents. I like Apple's thoughtfulness on most things but this - "not so much". Here is the real reason for the post, what do you do if you have full dock and your stack leans right off the page and you can't really see the top of the stack? Apple fix this. Recommendation to Apple - Straighten the stack and keep in mind its ok to not use all of the capabilities/"flexibility" that your operating system gives you (ala - transparent Menu Bar .
    Message was edited by: Michael McLennan

    I can only echo your sentiment. It's silly to have the stack running off the right edge.
    I have a fairly loaded dock and this makes it difficult to get at the items in the corners without activating Expose.
    Even viewing the folder as a grid means that maybe a tenth of the window is off the right edge, that is if you move the pointer into the stack window. When one clicks a stack it should open detached from the screen edge.
    I thought maybe it could be nice to put the Utility folder down there, but then it only shows about half of my utilities. So I don't really see a use for it unless it becomes a complete file browser.
    It probably would make more sense if one had a main dock on the bottom and then docks on the side to use for stacks.
    I'll have to see if there can be multiple docks and then test it.
    As it is works right now it's driving me crazy.

  • 3850 Stack and Stack Priority

    Hi,
    Question regarding a Cisco 3850 & Stack .
    I´ve two 3850 switches stacked.
    sh switch
    Switch/Stack Mac Address : c025.5cb9.1b80 - Local Mac Address
    Mac persistency wait time: Indefinite
                                                 H/W   Current
    Switch#   Role    Mac Address     Priority Version  State
    *1       Active   c025.5cb9.1b80     1      J0      Ready
    2       Standby  c025.5cb7.c480     1      J0      Ready
    Now I will change the priority from switch 1 from 1 to  15 but I can´t do this:
    (config)#switch 1 ?
      provision  Configure Switch provision / offline confi NMTSL3CORE1
    I can´t use the command : switch 1 priority  15 as exmaple . Why ?
    Thanks for help.
    Cheers

    See below :
    sh ver
    Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.03.01SE RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Thu 05-Dec-13 10:15 by prod_rel_team
    ROM: IOS-XE ROMMON
    BOOTLDR: CAT3K_CAA Boot Loader (CAT3K_CAA-HBOOT-M) Version 1.2, RELEASE SOFTWARE (P)
    NMTSL3CORE1 uptime is 2 hours, 57 minutes
    Uptime for this control processor is 2 hours, 59 minutes
    System returned to ROM by reload at 11:53:48 CET Mon Dec 16 2013
    System image file is "flash:packages.conf"
    Last reload reason: reload
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    License Level: Ipbase
    License Type: Permanent
    Next reload license Level: Ipbase
    cisco WS-C3850-24P (MIPS) processor with 4194304K bytes of physical memory.
    Processor board ID FOC1737X0T4
    4 Virtual Ethernet interfaces
    56 Gigabit Ethernet interfaces
    8 Ten Gigabit Ethernet interfaces
    2048K bytes of non-volatile configuration memory.
    4194304K bytes of physical memory.
    250456K bytes of Crash Files at crashinfo:.
    250456K bytes of Crash Files at crashinfo-2:.
    1609272K bytes of Flash at flash:.
    1609272K bytes of Flash at flash-2:.
    0K bytes of Dummy USB Flash at usbflash0:.
    0K bytes of Dummy USB Flash at usbflash0-2:.
    0K bytes of  at webui:.
    Base Ethernet MAC Address          : c0:25:5c:b9:1b:80
    Model Revision Number              : J0
    Motherboard Revision Number        : C0
    Model Number                       : WS-C3850-24P
    Switch Ports Model              SW Version        SW Image              Mode
    *    1 32    WS-C3850-24P       03.03.01SE        cat3k_caa-universalk9 INSTALL
         2 32    WS-C3850-24P       03.03.01SE        cat3k_caa-universalk9 INSTALL
    Switch 02
    Switch uptime                      : 58 minutes
    Base Ethernet MAC Address          : c0:25:5c:b7:c4:80
    Model Revision Number              : J0
    Motherboard Revision Number        : C0
    Model Number                       : WS-C3850-24P
    Configuration register is 0x102
    Cheers

  • Stacks vs stacks?

    Maybe this is obvious to everybody else, but I never noticed it before: I stack two images that originated as different shots. Then I make a Duplicate Version of one of them and do stuff to it. Now they're all three in a stack -- but the new version and its original are in a substack that can't be broken up.
    If I try to order them as new version of shot 1, shot 2, old version of shot 1, there seems to be no way to do it. (I tried unstacking them all and restacking; the linked pair join up again.)
    I've often thought that Stacks were really for two different purposes: grouping versions of a shot, and grouping shots that seem related on some more general level. Now it looks as though Aperture *sort of* thinks that way. Is there a Feature Request lurking in here somewhere?

    Starting with PSE 6, Adobe changed the way stacks interact with version sets and albums.  The core issue is that Adobe intended stacks to be used in a way different than you are using them.
    In Adobe's design, stacks are similar to version sets and are intended for grouping similar versions of the same scene, where there is one “best” photo on the top of the stack. The PSE User Guide gives the following examples: “For example, create a stack to group together multiple photos of your family taken with the same pose; or, for example, photos taken at a sports event using your camera’s burst mode or auto-bracket feature.”   Some people try to use stacks instead of keyword tags to group disparate photos of the same subject (e.g. ten different photos of a wedding), and the stacks end up having many “best” photos buried inside the stack, with the photos having different keyword tags.
    Unfortunately, using stacks this way interacts badly with the Organizer’s search – if any photo inside a stack matches the search, all the photos in the stack are displayed in the search results, regardless of whether they match.  And as you've discovered, it makes using the stacks with albums more difficult.   The underlying problem is that the stacks contain more than one "best" photo -- they contain multiple photos that you may want to use in different situations.
    I'm not at all saying what you're doing is "wrong", just explaining how what you want to do differs from Adobe's intended uses.  People have been complaining about this since PSE 6 came out, and given that Adobe puts almost no effort into the Organizer anymore, I think it's unlikely it will change.

  • Stack/Delete within a Collection?

    Using Lightroom 1.2 on WinXP. When importing I leave photos in place and import only the metadata.
    1) Is it possible to stack within a collection? I see the expand/collapse stack drop list items when right-clicking within a folder but not within a collection.
    2) Within a collection, can you delete a photo from Lightroom or from the disk? I don't see a list item to do that when I right-click on a photo/photos within a collection. Right now deleting photos can get to be a hassle for the fraction of my collections which are not organized the same as my folders.
    Thanks,
    Robert

    1) No.
    2) It's something like control-shift-alt-backspace

Maybe you are looking for

  • How to Get Resource value which are referred in code behind file using IResourceProvider

    Hi Everyone, Currently I'm working on moving the Resource file from "App_GlobalResources" to Database by using IResourceProvider. I created a CustomResourceProvider project using ResourceProviderFactory and able to get the resource values from DB whi

  • AC adapter for 5G iPOD

    Is the Apple's power adapter (AC to USB) compatible with the 5G? I have used a 3rd party power adapter with the iPOD mini, and it worked well. Now I have a 5G, and it cannot charge the 5G as the mini. Hate to spend another $30 for the Apple power ada

  • SDO_AGGR_UNION crashes the session

    Hi! I am developing a PL/SQL overlay module to overlay two polygon layers (+ some additional logic). I also use SDO_AGGR_UNION function, which aggregates polygons previously created by SDO_INTERSECTION function. At this point session crashes with "en

  • How to register?

    I can't figure out how to register my new wireless mighty mouse. I've searched in all of the categories on the registration form but none of them list it. Can someone point me in the right direction? Thanks!

  • Another Crash at Startup

    Hello, I have another “crash at startup” problem with safari (does the same with any Webkit nightly). What I've seen on other threads does not seem to help and as I does not understand crash report myself I count on you! Date/Time: 2009-02-25 10:36:1