Why does my bus list display 64 when i only have 32 in my environment

Hi in audio hardware and drivers 64 busses is unchecked, and my environment only has 32 busses yet when i select a bus there is 64 available, 32 in bold and 32 greyed out (out of use). How can i get around this so i can only have 32 busses.
Thanks, Ben

When i select a bus send on a channel there is a list of 64
busses and the first 32 are only enabled.
There has been a thread about this a few months ago.
You have enabled the 64-busses option at some point, hence the bus list has geon from 32 to 64 items. Then you turned it off again, so only 32-busses are available.
However, Logic doesn't shrink the flip menu back to 32 entries, so you still see 64-entries, but only the first 32 are enabled, and the remaining 32 inactive ones are greyed out and disabled.
It's a minor display glitch - do a search for the original thread for more info.

Similar Messages

  • Why does FaceTime keep saying "connection lost" when we both have full bars on our wifi?

    Why does FaceTime keep saying "connection lost" when we both have full bars on our wifi? My friend in Texas has tried to call my via FaceTime but for some reason, every time she does, it keeps saying "connection lost" when we both have full bars on our wifi. Keep in mind, I am from Nebraska so we have the same time zone and I have an iPod 4 while she has a iPhone of some sort but that shouldn't matter because I am still able to FaceTime my friend in California, which is two hours behind me. So, I guess I just want to know why I cannot reach my friend in Texas. Please, someone help me!
    -Mukestina

    Apple has released a document which is reported to address the recent FaceTime issue.
    http://support.apple.com/kb/TS5419

  • Why does my Macbook Pro tell me that I only have 1GB of memory, when I have 2GB?

    Hello all, I'm a new user so forgive me if I'm asking something already asked.
    I'm looking to download OSX Lion on a 2010 Macbook Pro, 13 inch.  When I tried to download it, an error message came up saying that Lion needs 2GB of memory.  I checked "About this Mac" and it told me I only have 1GB of memory.  I opened up my Macbook, and there are two seperate 1GB sticks inside...call me crazy, but doesn't that mean I have 2GB?  I ordered two more 2GB sticks to upgrade myself to 4GB just for the sake of having more memory, but I'm confused and concerned.

    Try re-seating the sticks.
    Trouble shoot,  swap the location and monitor the results here:
    >About this Mac>More Info>Memory
    Is it a bad bank or a bad stick of RAM
    or no issue after you more firmly seat the RAM

  • Why does my mac use virtual memory when I still have free physical memory?

    I have a 2011 i7 quad core mac, I was hoping it would scream. Most of the time it does. However when trying to edit within FCPX I get a very disappointing experience with many pauses and pin wheels if I don't close every single other program.
    I have 8GB of physical memory and when i'm experiencing these problems I see that i still have 1-2 gb of physical memory free or inactive. At the same time FCPX is only using 2gb of memory. I just happened to keep an eye on the VM page in/outs and noticed them going up.
    Right now i'm doing some browsing and emailing, that's about it.. its sat with over 4gb of memory free or inactive and yet still the page in/outs is still going up occasionally. It's currently at over 2 million page ins, and over 1 million page outs.
    So with so much physical memory free why is this happening!? At the moment the mac feels nice and responsive, but if i start trying to use FCPX i'll start to experience these slowdowns, stalls... whenever i see these i see my main hdd is being accessed whilst the pinwheel is displayed.. I mean i get it, its VM, the hdd is too full, a bit fragmented perhaps, its stalling... but i've got gigs of memory sitting free or inactive... why wont the OS use it!!!
    Would my experience improve if i took the plunge and got 16gb of memory instead of 8gb!?
    Thanks for your help!

    Because without virtual memory, managing computer RAM is a royal pain in the ...
    Virtual memory cost you nothing, and gains you huge benefits, even if you do not notice it
    What cost you is when you need more real RAM than is available, and things are thown out of RAM, either back to the original file it came from (Read Only information), or pushed out to the swapfiles (/var/vm/*).  Then the system has to wait for slower disk access.  But even this is better than not being able to run the apps until you quit something else.
    (speaking as someone that starting his professional life working with 1" punch paper tape, 80 columns cards, 7-track and 9-track mag tapes, 1MB disks (you heard me right 1 Megabyte), etc..., and trust me when I tell you that virtual memory is a god send to software development).
    There are a lot of problems running a modern operating system with out virtual memory.  For example all the shared libraries and frameworks that provide services to an application would all need to be compiled into the application, which means every application gets bigger and instead of having a single copy of the shared library or framework, you would have dozens of copies wasting your RAM.
    Without virtual memory, you would be required to find a contiguous chunk of RAM to run your application.  Think of this like going out to dinner by yourself, you can find any available table, but if you go to dinner with your extended family, you need a table for 10 to 15, and if you are going to dinner with your high school graduation class, you will need hundreds of seats all next to each other and a very large table.  In the later situations you have to wait until the resturante has enough contiguous space, which means you have to wait until other diners finish.  There may be lots of empty tables, but they are not together, and your group wants/needs to sit together.  Virtual memory allows gathering any 4K chunk of RAM, building a virtual memory map for all those random 4K chunks, and make it look like one big contiguous chunk of RAM, so you can run your application right away, no waiting.
    Going back to shared libraries and frameworks.  This code will need to have addresses resolved so they branch to the correct locations during execution, and it will need to have addresses resolved on where its program variables are located in RAM.  Using virtual memory, you can local a shared object into RAM, then place it in everyone's virtual memory map at the exact same RAM address.  This means everyone can use the exact same code, and since everyone is using it at the same RAM address, it makes life so much easier for the operating system (translation, less work, less wasted CPU time, faster execution).
    When a program wants to grow, for example a web browser loading a web page (and its images) into RAM, it needs to allocate additional RAM.  In the contiguous RAM model, you need to get control of the RAM that imediately following your program, but if that RAM is being used by someone else, you have to wait until that program goes away.
    Virtual memory provides protection from another program looking at and modifying your program's RAM.  Malware would just love for virtual memory to go away.
    You want virtual memory.  What you do not want is excessive paging activity.
    If you are concerned, then you can launch Applicaitons -> Utilities -> Terminal.  Once you have a terminal command prompt, enter the following command:
    sar -g 60 100
    which will tell you the number of 4k pages written to /var/vm/pagefile ever minute for 100 minutes (modify the numbers to suit your tastes).  You can then go about your normal usage, and come back later to see how much you have been using the pagefiles.  If you have mostly zeros, and an occasional small burst, this is noise, and not worth worrying about.  If you have sustained pageout activity, with higher numbers, then you should either consider running less things all at the same time, or looking for an application that is being greedy with its memory use (or has a memory leak), OR get more RAM for your Mac if you need to do all those things at once.
    But do not complain about virtual memory.  Life would be much worse without it.  Then again if you have a better idea, write a research paper, and get operating system vendors (as well as hardware vendors) to implement your ideas.  I am serious, as I've seen many accepted computing ideas be overturned by good new ideas.

  • Why does itunes charge my credit card when I still have itunes credit on my account?

    I have a credit on my itunes account but each time my wife or I purchase something on itunes or the App Store, it defaults and charges my credit card? I have a credit that never gets used? Help!

    Either the credit's not applicable to that purchase(as opposed to iTunes Store credit, individual song credits can't be used on album purchases), or something's wrong on Apple's servers. If needed, click here and contact the iTunes Store staff.
    (108273)

  • Why does the iCal app on my MacBook Pro only have a 2-year archive? Where did everything before that go? And can I get it back?

    I use my iCal as a daybook and every now and again need to reference events or occurences from several years ago. I tried to look something up from back in 2010 and the iCal on my MacBook Pro only has iCal data from Jan 1, 2011 onwards. Everything I've put in prior to that seems to have disappeared! I can't find anything under preferences that mentions archiving/storage. Can I change the setting so that this info is kept forever? And can I get my previous info back?

    You can only sync with one computer. When you synced to the new computer it would have erased it and synced what was on the new computer.
    You always need to have a backup, an iPhone is not a storage device.
    When you get a new computer you need to transfer your library before syncing
    If you don't have a backup you may be out of luck
    The only thing would be if you're in the US and have access to the iCloud beta to reload purchases
    http://support.apple.com/kb/ht2519

  • Texting on iPhone 5.  When texting to multiple people why does the contact list return to the "A"s after you select a contact and try to add the next one in order?

    Texting on iPhone 5.  When texting to multiple people why does the contact list return to the "A"s after you select a contact and try to add the next one in order?  This really slows you down when trying to contact 50 people with information.  iPhone 4 worked just fine.  Any suggestions on how to fix this?

    None of my pictures that I uploaded into iPhoto are in my Finder under Pictures.  Should I copy and paste my folders from iPhoto into here, in case something happens to my iPhoto program (in addition to backing them up onto an external hard drive like I already do)?
    No, that's just wasting space.  A back up needs to be on a different disk.
    Your photos are within the iPhoto Library.

  • Why does my preferred desktop display immediately switch to another display when I open an icon on the current desktop?

    why does my preferred desktop display immediately switch horizontally to another display when I open an icon on the current desktop?

    That's not a shortcut you are creating with "save as", you are saving a copy of the webpage to your desktop - hence the folder with files for that webpage.
    https://support.mozilla.com/en-US/kb/Creating+a+desktop+shortcut+to+a+web+page

  • Why does  ArrayList implement List when extending AbstractList

    Hi
    I am unable to understand why would the ArrayList class implement the List interface, when it is already extending the AbstarctList class. If anyone can explain, it would be a great help.

    Why does ArrayList implement List when extendingAbstractList
    It is a question of style. ArrayList'simplementing
    List is a crucial piece of information, whereasits
    extending AbstractList is a kind of implementation
    detail. If would not matter much to the user if it
    did not extend AbstractList but implemented List
    directly.So why don't those subclasses of ArrayList step up
    and implement List again? I agree, extending
    ArrayList is an implementation detail, and in fact
    perhaps they should have made ArrayList a field
    rather than a superclass...Because those subclasses job is not to be a List but to be an extension of ArrayList. In general if you wanted to be a List you would be extending AbstractList. You don't just implement List because you happen to have the right methods, you implement List because you feel being a List is part of that classes main behavior.
    Its a suttle point but I feel its more than a matter of style. Its a matter of correctness.
    Also, ArrayList could use composition by having an AbstractList member within itself. In this case it would implement List as well and achieve the same result. Letting users know it intends to fill the role of a List.

  • Why does the reading list appear blank sometimes

    why does the reading list appear blank sometimes  when using safari moutainlion  10.8.2

    See this.
    http://docs.info.apple.com/article.html?artnum=60945

  • Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 Windows XP Thanks.

    Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 . Using Windows XP Driving me nuttier! Thanks.
    (Is is that MicroNetFrame Asst thing?)
    == This happened ==
    Every time Firefox opened
    == When I installed latest version

    Thanks for your reply. I appreciate your help.
    It was just a hunch that MircoNetFrame was causing the problem. I disabled it as you suggested, and I still have the problem.
    I just changed under Tools>Options> General - had checked "ask me every time" under downloads, so instead of asking me, FF saved the download to I know not where. It no longer saves it to the desktop, leaving a duplicate in "my documents".
    In windows, I have found unless one knows the entire name of the document, one can never find anything. It isn't listed under recent ''''''__. I can't recall the nomenclature, but the
    capability is ridiculous. So, I don't know where that file I just downloaded is!
    I downloaded a PDF file, but this happens with all DL's. It was so easy to have them all stacked in one place and I could recall
    what I had and when I downloaded it easily.
    Do you have any other suggestions other that going back to the old version of FF, which I would rather not do?
    Thanks again for your time, it is very considerate to help a complete stranger, I must say. Sounds like something I might do! Cheers!

  • Why does Safari still accept cookies, even when I put Block Cookies "Always"

    Why does Safari still accept cookies, even when I put Block Cookies "Always",? There are always a list of every website with cookies. Is that just a record of what could've been accepted or its a bogus feature that still accepts regardless of what feature is on?

    Apple has rolled over users since OS X 10.6.8 when this issue first appeared.
    If you want a browser that actually CARES about it's users, then install Firefox, it's the only one that does.

  • Why does my iphone keep turning off when i put my pass code in

    why does my iphone keep turning off when i put my pass code in

    Hi ManiPictures,
    If your iPhone shuts down unexpectedly during use, I would suggest that you troubleshoot using the steps in this article - 
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it - Apple Support
    As your iPhone's operating system is already up to date with iOS 8.1.1, follow the last instruction - 
    If you still see this issue after updating, contact Apple Support.
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Why does the Date Created metadata change when images are exported?How do I stop it from changing?

    why does the Date Created metadata change when images are exported?  How do I stop it from changing? I must have a prefernce set up wrong.

    I don't know what OS you are using, or what application you are using to view the data about your exported files, but on Windows and using Windows Explorer the "Date Created" field relates only to the date that the exported file was created, i.e. if viewed immediately after export it will show the date created as being the same date. In order to view "Capture Date" in something like Explorer, you first have to ensure you have included the Metadata as Conrad outlined above, then you have to adjust the display properties of Explorer to show the "Date Taken" field. Here is an example, part of a folder I exported back on March 3rd, note the difference between that last two dates:

  • Why does my FCX program quit suddenly when I try to capture from my camcorder?

    Why does my FCX program quit suddenly when I try to capture from my camcorder?
    When it opens it says "no codec found". I used HDV Apple intermediate codec 1080i60. What codec should I use?

    Do you mean Final Cut Express or FCP X?
    These are two different apps.
    Al

Maybe you are looking for

  • Purchase Order - Approval Workflow - Automated EMail to Approvers & Vendors

    Hi there, We are on SAP ECC6.0 with ABAP Stack.  That is we do not have Java or Net Weaver Components.  There is a specific requirement to have Workflows set up in SAP ECC6.0.  Here is the detailed requirement: 1. The Purchase Order in MM is created

  • Where are the update files located?

    Hi. We have five Macs around here: two Tigers, two Panthers, and a Jaguar. It's a royal pain to have to download the update files individually for each machine. Can somebody tell me where the update files are stored, so we can save time and bandwidth

  • No data available,data selection ended

    Hi Experts, In BI 7.4 quality system when I did the infopackage load for 0HR_PA_PD_1 (FULL) it is showing nodata available selection ended  in detail tab. But I have data in RSA3. when I saw the job in SM 37 in ECC Quality it is showing result of cus

  • How to add cover sheet without affecting page numbering?

    No replies yet, so perhaps I should change the question to "Can one add a new section break at the beginning of a document?" Or "How do you apply a section break on a Master Page so that when the Master Page is added at the beginning of a document, i

  • When i am in firefox and i try to use my apps, it says that it is turn off

    when i am in google or my gmail there is a place for apps. and when i try to use the google play it says that it is turn off. now i don`t now a lot about computers, but i try. i would like to have my apps turn on, is there any one that can help me wi