Bounce button becomes gray? Feature or bug?

I discovered a tiny detail that I just can´t figure out: if I Ctrl - click and solo button in the Mixer, the Bnce button on the Output 1-2 channel strip becomes gray.
I know that you can do exactly the above in order to disconnect the solo safe fader from becoming affected by the Master fader.
But why, then, does the Bnce button not turn a darker shade of gray when I turn off solo safe?
Not that this can be of any real importance...just curious.
/j

I was thinking maybe it's meant to be a subtle indicator so if you were to bounce a soloed group, you'd have a reminder that there are solo-safe tracks active too. Whether or not it's a bug, or a quasi-working detail, it's fine in my book.

Similar Messages

  • Fluid Grid Layout- HTML5 video buttons become gray squares Android

    I am attempting to use Fluid Grid layouts for a simple smartphone/tablet acessible video page.  I am in Dreamweaver CS6 Cloud (updated).  The buttons for play and full screen mode are shown as gray squares on my Android phone. It works fine in other browsers (OS:Windows 7, Chrome, FireFox and IE. I have not tested iOS or iPhones). I spent a day trying variations trying to get it to work properly on the Android and finally built a whole new HTML5 (non Fluid Grid) and it works.  But that has issues with formatting, where comes in small and has text not filling the page for Android.  I am trying to avoid people having to zoom in and out to see the page.  The Fluid Grid brings the page in the way that I want it.  My guess is that the Fluid Grid boilerplate or the respond.min.js is causing the conflict.  As this is a touchy new venture into Adaptive Design I have left these files alone.
    Here is the fluid grid (stripped of formatting) http://www.oha-edu.org/Video/v1.html
    Here is the HTML5 video page where the buttons show up.  http://www.oha-edu.org/Video/2.html
    Dumping my Droid Razr Maxx (Android Version 4.04, System version 6.16.211.xt912.Verizon.en.US) is not a solution.  I wish to make this work for as many devices as possible.

  • Connect to MS Office button is Grayed out - for both Office 2010 and Office 2013

    Hi
    I have recently implemented Sharepoint 2013 Standard for a customer.
    I have got everything to work so far except one important thing, from any Ms Word or Ms Excel application save as SharePoint is missing. While having a closer look I noticed that Connect to Office button is grayed out in SharePoint. 
    During the initial setup, I created the site collection using Team Site template under collaboration. All researching is pointing me to user profile setup with my site host under enterprise section in site collection. 
    I have confirmed that the clients are opening sharepoint from 32bit browser and they have sharepoint handler add on enabled in IE. I have also followed the below guide 
    https://mywinsysadm.wordpress.com/2011/07/28/sharepoint-connect-to-office-for-new-document-creation/ 
    However, I cant actually see any user profile feature as the guide suggests, I can only see "create personal site" under manage profile service section. 
    I have searched & searched and I am not finding any solutions to this problem. 
    can someone point me to the right direction please? is it purely because the site collection is not a My site Host?
    All I need is for users with Office 2010 or Office 2013 to be able to save a document directly in sharepoint. 
    Note - Connect is outlook is working fine though. 
    MCITP, MCSA, MCSE,VCP - Consultant, Solution Design, Implementation

    Hi jawad,
    As navigating to a SharePoint Library and clicking 'Connect to Office', the link to document library is added to
    http://[mysites]/_layouts/15/MyQuickLinks.aspx. So, you need to make sure you have your personal site.
    After creating your personal site, please visit
    http://[mysites]/_layouts/15/MyQuickLinks.aspx, check whether it can open well.
    More information about creating MySite, you can refer to:
    http://blog.sharedove.com/adisjugo/index.php/2012/07/25/visual-guide-setting-up-my-sites-in-sharepoint-2013/
    Then go to IE Options->Programs->manage add-ons, make sure all add-ons related to SharePoint are enabled.
    Here is an article, it may be useful for you:
    https://technet.microsoft.com/en-us/library/ee624362.aspx#nextsteps
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Help with Sign Document button being grayed out

    I am using Abobe X Pro and I am having an issue with the Sign Document button. When I am signing a document sometimes the 'sign document' button is grayed out. I am still able to use the 'place signature' button and once I click the 'place signature' button then the 'sign document' becomes active again and is no longer grayed out. This happens randomly. Most times I am able to use both the sign document and place signature buttons but randomly the 'sign document' button is grayed out. Even when opening the same exact file sometimes the 'sign document' button is grayed out and sometimes it isn't.
    What could possibly cause this?

    hello gram2many, if you are having problems with the default flash installer, try it with this offline package (direct link to .exe on adobe's server): http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player.exe
    also see adobe's documentation: https://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html

  • Feature or bug? (ListView/SelectionModel)

    I attach a short program which illustrates a phenomenon I have observed. Basically, I am trying to repeatedly delete the first item displayed in a ListView. I select that item using SelectionModel.select(0) or SelectionModel.selectFirst() and then delete SelectionModel.getSelectedItem() from the underlying item list. The first time round it works. The second time round, SelectionModel.getSelectedItem() still returns the item from the first iteration. I would have expected the call to SelectionModel.select(0) to update selectedItemProperty. Have I misunderstood something? Should I be doing something different?
    Interestingly, a similar thing occurs if you replace select(0) with selectLast().
    But if you call select(1) everything works as I had expected (selectedItemProperty is updated).
    Feature or bug?
    Steve
    package selectionbug;
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ListView;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class SelectionBug extends Application {
        public SelectionBug() { }
        public static void main(String[] args) {
            Application.launch(SelectionBug.class, args);
        @Override
        public void start(Stage primaryStage) {
            final ListView<String> list = new ListView<String>();
            ObservableList<String> items =
                FXCollections.observableArrayList("abc", "def", "ghi", "jkl", "mno", "pqr", "stu", "vwx");
            list.setItems(items);
            list.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {
                @Override
                public void changed(ObservableValue<? extends String> ov, String oldValue, String newValue) {
                    System.out.println("*** ChangeListener: "+oldValue+" -> "+newValue);
            Button button = new Button("Go");
            button.setOnAction(new EventHandler<ActionEvent>() {
                    @Override
                    public void handle(ActionEvent t) {
                        list.getSelectionModel().select(0);
                        //list.getSelectionModel().selectFirst();
                        //list.getSelectionModel().selectLast();
                        String string = list.getSelectionModel().getSelectedItem();
                        System.out.println(string);
                        if (list.getItems().remove(string)) {
                            System.out.println("removed");
                        } else {
                            System.out.println("oops");
            VBox vBox = new VBox();
            vBox.getChildren().addAll(list, button);
            Scene scene = new Scene(vBox);
            primaryStage.setScene(scene);
            primaryStage.show();
    }Edited by: winnall on 16-Mar-2012 00:35

    Hi, I'm the engineer behind the selection model API.
    There are a few things to note first:
    1) It is totally valid for the selectedItem to represent an item that is not actually part of the ListView.items list. It just means that if the selectedItem is set to a non-existent item, and when the item is added to the listview.items list, the selectedIndex will update to point to this selectedItem.
    2) Events don't fire when the property value doesn't change. So the first time you select(0) you end up with the selected index event firing as the new value is 0. If nothing else changes and you call select(0) again, you'll get no event fired.
    Now, I would argue that if the selected item / index is removed from the ListView.items list, it should be removed from the selection. This does not appear to be happening. There may be various reasons why this doesn't happen (selection models can have a LOT of nuances that all need to be keep balanced like a man with his spinning plates), but you should file a bug so I can investigate deeper.
    Thanks,
    -- Jonathan

  • I am getting crazy. Output field become gray after invalidate();

    Before post, i have carefully read SAP docs, including the course JA310, but still don't find the solution.
    My problem is that when i called a RFC, and execute output.invalidate(), the output field becomes gray.
    (There won't be any authorization issues, i use the rfc_user for sap backend system, it has sap_new and sap_all authorization).
    I will make the case most simple.
    BAPI backed:
    - IMPORT: orgin type num2, EXPORT result type num2.
    - the function of BAPI is simple : result = orgin + 1.
    In the NWDS.
    - I have already tested the input bind, it works fine. (with an other FM has IMPORT data only)
    - but when I try to bind the output data, the display field is gray and empty. (I have check the binding between model and controller, controller and view, all is fine)
    Here is the 'logic flow'
    Part I: wdDoInit()
      public void wdDoInit()
        //@@begin wdDoInit()
    // out put field is now gray
         Ztestbapi_Output outbapi = new Ztestbapi_Output();
         outbapi.setResult("05");
         wdContext.nodeZtestbapi_Output().bind(outbapi);
    // output field is now availble
    Pari II: Button Action
      public void Execute1( )
        //@@begin Execute1()
         try {
    //         wdContext.nodeZtestbapi_Output().invalidate();
    // out putfield is now gray again
              wdContext.currentZtestbapi_InputElement().modelObject().execute();
    // out putfield is now gray again
              wdContext.nodeZtestbapi_Output().invalidate();
              Ztestbapi_Output outbapi = new Ztestbapi_Output();
              outbapi.setResult("07");
              wdContext.nodeZtestbapi_Output().bind(outbapi);
    // output field is now availble
              wdContext.nodeZtestbapi_Output().invalidate();
    // out putfield is now gray again
         } catch (WDDynamicRFCExecuteException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Thank u very much in advance!

    My recent research is :
    when i change my execute() function like:
         Ztestbapi_Input inbapi = new Ztestbapi_Input();
         inbapi.setOrgin("02");
         wdContext.nodeZtestbapi_Input().bind(inbapi);
         try {
                         // here is the key change
                         wdContext.nodeZtestbapi_Output().bind(inbapi.getOutput());
                         // End of key change.
              wdContext.currentZtestbapi_InputElement().modelObject().execute();
              wdContext.nodeZtestbapi_Output().bind(inbapi.getOutput());
              wdContext.nodeZtestbapi_Output().invalidate();
              if (wdContext.nodeZtestbapi_Output().isEmpty()){
                   inbapi.setOrgin("07");
                   wdContext.nodeZtestbapi_Input().bind(inbapi);
         } catch (WDDynamicRFCExecuteException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    The output and the input should be binded automatically, shouldn't them?
    Always confused.

  • IPhone 3GS iOS 6.1.3 -  camera doesn't work. Shutter won't open & camera button becomes disabled. Pls advise what to do? I have already tried resetting the phone several times.

    iPhone 3GS iOS 6.1.3 -  camera doesn't work. Shutter won't open &amp; camera button becomes disabled. Pls advise what to do? I have already tried resetting the phone several times.

    Hello Kunmon,
    The following article provides some useful troubleshooting that can help get your iPhone's camera working correctly.
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    My issue is still not resolved. What do I do next?
    Contact Apple Support.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Cheers,
    Allen

  • Audio tracks added to movie in both iMovie for iMac and iPhone become reversed upon export - Bug?

    Ive created a simple video in iMovie on my iPhone and on my iMac where I mute the audio from the original video clip and add a standard stereo MP3 audio file from my music library (which plays correctly durring the editting process of the video in iMovie)....
    Once the video is exported however the audio channels are strangely reversed. Any idea why this may be occuring? The only workaround Ive discovered to counter this problem is by "Exporting Using Quicktime" in iMovie on my iMac....this is obviously a pain, and there is also no workaround such as this on the iOS version for the iPhone....
    Any Opinions, Suggestions???

    Hi Steve,
    This is a long shot, but you could try copying and pasting all of your slides into a new instance of Captivate. If you have specified certain audio settings Captivate should pick these up when you export. If not then it is possible that your CP file has become corrupted.
    If that doesn't work, please file a bug report using the web address I have included below.
    Adobe Captivate Feature Request/Bug Report Form 
    It would be interesting to see if the CP team can shed any light on why this is happening.
    Best - Mark
    Visit the macrofireball blog

  • I have a MacBook Pro. Lately my volume button is grayed out and not working. Any solutions on how to fix this? Thanks.

    I have  an older MacBook Pro (circa 2009). Lately I've noticed my volume button is grayed out and I cannot adjust it. I've tried rebooting. Sometimes it becomes available to use and other times not. Any ideas on how to fix this? Thanks!

    Reset the SMC.   Check the Audio Midi Setup utility.  If connected to an external display that has audio, that may have hijacked the audio.

  • The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)

    The "always allow" button is grayed out in settings regarding cookies, and I can not find where to change the setting.  (Restrictions are not on.)  Do you know where I go to change the setting to allow me to "always allow" cookies?

    Hi lisaarnett111,
    If you are having issues turning on Always Allow for cookies in Safari on your iPad, you may want to check to make sure that you don't have Private Browsing enabled, as noted in the following article:
    Turn Private Browsing on or off on your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • I am trying to install Iphoto on my new MacBook Air adn the install button is grayed out  Any suggestions

    I am trying to install iphoto 09 on my new MacBook Air and the install button is grayed out.  Both for installation and custom install.  Is there a problem that I am not aware of?

    Check for receipts
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • If I open another URL from my homepage, the "go back one page" button is grayed out so I can't get back to my home page.

    This problem only started recently.
    Opening another web page (URL) from my homepage always opens in the same tab and the "go back one page" button is gray and does not work. If I open a series of web pages in the same tab the green "back" button is green. Clicking on the "recent pages" down arrow will allow me to go back, but only to the page after the home page.
    In other words, after browsing, I can get back to the opening page (my home page) only by clicking on the house icon but not by using the "recent pages" function.
    Is there an option that changed after the last update?

    Do you see any tab history if you right click the Back or Forward button?
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I have a MBP running 10.6.8 and after the recent iOS update I have not been able to sync my devices. I was able to sync an ipod, but not iphone or ipad. iTunes recognizes my devices, but sync button stays grayed.

    I have a older MBP running 10.6.8 and after the recent iOS update I have not been able to sync my devices. I was able to sync an ipod, but not iphone or ipad. iTunes recognizes my devices, but sync button stays grayed. I've changed my USB hub, reinstalled iTunes and run disc cleanup. No luck.

    You said that your computer will sync other iPods? Are they iPod touches? Other iPod use different drivers the the touch And iPhone and iPad).
    You can try:
    iOS: Device not recognized in iTunes for Windows
    Does it charge? Does the iPod work?
    I would try on another computer.
    Last, make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    If defective and not abused you will walk out with a replacement

  • I'm having trouble transfering bookmarks from Safari to Firefox. File, "Import" button is grayed out. I've gone through your trouble shooting, the database for imports is no longer current.

    I'm running Snow Leopard 10.6.8. I have the latest version of Firefox 5.0. I'm over Apple's Safari, and I'd like to transfer my bookmarks into Firefox. I've gone through your help and support section and found an article that could help me. However, when I click File, the "import" button is grayed out. Which prevents me from importing bookmarks into your browser. So I drug the Firefox icon into the recycle bin, and hit empty trash, then re-downloaded the firefox software from your site, and it seemed to remember my old bookmarks from a year ago. The file, "import" button was still grayed out, so I couldn't update my entire new list of bookmarks onto your web browser.

    I'm running Snow Leopard 10.6.8. I have the latest version of Firefox 5.0. I'm over Apple's Safari, and I'd like to transfer my bookmarks into Firefox. I've gone through your help and support section and found an article that could help me. However, when I click File, the "import" button is grayed out. Which prevents me from importing bookmarks into your browser. So I drug the Firefox icon into the recycle bin, and hit empty trash, then re-downloaded the firefox software from your site, and it seemed to remember my old bookmarks from a year ago. The file, "import" button was still grayed out, so I couldn't update my entire new list of bookmarks onto your web browser.

Maybe you are looking for