Transport bar - lack of configurability

Re: The transport bar in Logic 8
Is it possible to save your own personal configuration of buttons so that all songs open with your selection? Seems to me to be a song-specific setting, not a global preference. It wastes time to re-configure the transport and you have to do it in every screenset!! (Let alone in every song)
Regards - Colin

Not really THAT easy...
What if a song has 20-30 screensets in use?
What if I need to regularly open old Logic 7.x songs (which I do)?
Yes, I'll certainly re-configure my startup template, but a global pref would be better. I see that Logic 8 now offers 9 alternatives (in Global tracks) for Tempo (as before) but also for markers and signatures. Let's have alternatives for the Transport bar - ie different sets for different needs, that can be easily loaded via the local contextual menu.

Similar Messages

  • Customize transport bar and save changes?

    Am I missing some here but if I customize the transport bar and make changes, close logic and open it again those changes are not there? Shouldn't my changes to the transport bar remain? How do I save them as standard for all projects? I just want the pre-fader metering button there on all my projects.

    No the changes in the transport bar are project dependent (this is not an overall preference setting) so you have to customize your template and take it from there.

  • A way to show what notes/chords are playing in transport bar?

    Hey everyone,
    You can see what chord or note you are playing in the transport bar when you are recording, but is there a way to display what note is being played after you have recorded and playing back the midi/instrument track?

    Score.

  • Transport bar issue

    Hello Happy New Year...
    I dont know what i did but the end result is even when i have set the marker to 0 my transport bar is reading 7: 43. so basicaly now when im at the 16 measure im already at 8 mins.. anyway shed any light how to solve this problem?
    thank you,
    Jason

    Hello,
    maybe you dragged the start marker to the right by accident. It's the small grey handle on top left of the arrangement time track (just peeking out of the right side of the global track header).
    Grab it, drag it to the left to set the project start to a lower value.
    Fox

  • No Master Level slider in Transport Bar?

    Hi,
    I'm new to Logic, just bought Logic Studio and am now exploring Logic Pro 8, which, at first sight looks really nice (if compared to Pro Tools, which I used before).
    Got a small question though.
    Although I customized my transport bar to show the "Master Level" meter, it simply doesnt show up. I checked and unchecked the box, but nothing changes in my transport bar (whereas if I check or uncheck other boxes, buttons come and go in my transport bar)
    This is, of course, not a big issue, but it seems quiet a handy feature to use and I was just wondering if this could be a bug or am I doing something wrong?
    Thx!
    Senne

    It shows up here... bottom right hand side of the Transport bar.
    It's 2 speaker icons, one on the left, one on the right, with a slider inbetween.
    You're really not getting that when you select it?
    It might be a good idea to trash preferences then...

  • Blank Transport Bar

    Unlike the Logic Pro 8 documentation, my transport bar is completely blank. Worse, if I try to right click to customize it (to try to add some controls), nothing happens.
    What gives? With a blank transport bar, how do you record and playback?

    Guys:
    For what its worth, I found the solution to my Blank Transport Bar problem - a bad "Demo Content" CD that shipped with the installation disks.
    I spent a fruitless several hours reinstalling the entire installation disk set, only to have the installer get hung up (again) on the last disk in the set - "Demo Content". While I can open and copy any file on this disc, the installer keeps telling me to insert it into my iMac. It has no idea the disk is already loaded. The only way I can get around the hanging installer script is to "Force Quit" it.
    Apparently, the Logic Pro installation script does not register the Transport Bar controls until the very end of the installation process as everything else in Logic Pro interface can be accessed. (I suspect this has something to do with the mechanism that Apple uses to differ between a 'demo' and a 'registered' version of this software as the 'record' control is on the Transport Bar.)
    The solution was to ONLY reinstall Logic Pro, and none of the other software on the disk set. The installation script didn't need the 'funky' Demo disk, so it was able to finish completely. Suddenly, I have a transport bar packed with all sorts of controls.
    (The only thing that remains is to call a disbelieving Apple customer support person and try to get them to believe that Apple shipped a bad disk - and beg for a replacement. That should be fun.)
    Hope this helps someone.
    Thanks and Regards

  • What is a transport and how to configure it?

    Hello,
    I am using NW 04 Patch 11.
    When users go to home->work there is a calander there.
    The calander is not active and there is a message there:
    "No transport has been configured for the calendar".
    Can someone please explain me how do I get this calander to work, how do I configure a transport and is it possible to connect this calander to the user's exchange calander?
    Roy

    Hi Roy,
    @Lars: sorry, but this has nothing to do with Portal Transport Management, it's about transporting data from
    the Exchange server to the portal.
    @Roy: yes, it should be possible to connect this to the users Exchange calendar. This calendar is part of the
    Microsoft Exchange Connectivity Architecture. You can find a detailed explanation in the NetWeaver
    documentation under the topic Collaboration --> Groupware ...
    http://help.sap.com/saphelp_nw04/helpdata/en/4b/be49e7e0b0eb449fdebc79d018f896/frameset.htm
    Best regards,
    Kilian

  • Widgit for horizontal bar divided by configurable number of sliders?

    hi,
    does anyone know of a prefabricated gui widgit (or how to construct one) that is a horizontal bar divided in a configurable (and run-time changable) number of sections, each which can be changed by the user?
    I've tried constructing this by nesting JSplitPanes but the dragging behaviour is such that you have to decide the rightmost dividers position first, and then continue downward in the nesting hierachy. It would be much better if all sliders were equal and other sliders repositioned themselves as a result of dragging any one.
    the non-programming-oriented explanation is that i'm trying to let the user divide a region of time up into proportions spent doing different activities - if theres a nicer way of doing this then i'd be v. happy to hear of it also :)
    thanks,
    asjf

    ok, i've hacked up a quick bit of code that demonstrates vaguely what I'm after
    this code is appalling, and the gui widget behaves wrongly but in the right ball park. If you imagine trying to divide up a horizontal slice into sections then you'll get the idea and see why it isn't really very helpfull..
    you can click once on the vertical gray bars to start dragging, and click again to release
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import java.util.*;
    import java.util.List;
    class DragBar extends JComponent {
       List dividers;
       Divider mouseOver = null;
       Divider dragging = null;
       static class Divider implements Comparable {
               double x;
               Color c;
               public Divider(double x) {
                       this.x=x;
                       c = new Color(100 + (int)(Math.random()*155),100 + (int)(Math.random()*155),100 + (int)(Math.random()*155));
               public int compareTo(Object o) {
                       Divider other = (Divider) o;
                       return (int) ((this.x - other.x)*Integer.MAX_VALUE);
       public DragBar() {
          dividers = new ArrayList();
          for(int i=0; i<8; i++) {
             Divider d = new Divider(Math.random());
             dividers.add(d);
          addMouseMotionListener(new MouseMotionAdapter(){
             public void mouseMoved(MouseEvent e) {
                Collections.sort(dividers);
                if(dragging!=null) {
                        double newx = (double) e.getX() / (double) getWidth();
                        double oldx = dragging.x;
                        dragging.x = newx;
                        boolean before = true;
                        for(Iterator i = dividers.iterator(); i.hasNext(); ) {
                                Divider d = (Divider) i.next();
                                if(d!=dragging) {
                                double oldw = before ? oldx : 1-oldx;
                                double neww = before ? newx : 1-newx;
                                if(before) {
                                        double px = d.x / oldw;
                                        d.x = px * neww;
                                } else {
                                        double px = (d.x - oldx) / oldw;
                                        d.x = newx + (px * neww);
                                } else {
                                        before = false;
                } else {
                double x = 0;
                mouseOver=null;
                for(Iterator i = dividers.iterator(); i.hasNext(); ){
                   Divider d = (Divider) i.next();
                   double gx = getWidth() * d.x;
                   int dx = (int) x;
                   if((e.getX() <= dx+3) && (e.getX() >= dx-3)) {
                           mouseOver = d;
                   x = gx;
                repaint();
          addMouseListener(new MouseAdapter() {
            public void mouseClicked(MouseEvent e) {
                    if(dragging == null) {
                            if(mouseOver!=null) {
                                    dragging = mouseOver;
                                    mouseOver = null;
                    } else {
                            dragging = null;
       public void paintComponent(Graphics _g) {
          Graphics2D g = (Graphics2D) _g;
          Collections.sort(dividers);
          double x = 0;
          boolean b = true;
          for(int i=0; i<dividers.size(); i++){
                  Divider d = (Divider) dividers.get(i);
                  g.setColor(d.c);
                  double gx = getWidth() * d.x;
                  int dx = (int) x;
                  g.fillRect((int) x, 0, (int) (gx - x), getHeight());
                  if(mouseOver == d) {
                          g.setColor(Color.WHITE);
                  } else {
                          g.setColor(Color.GRAY);
                  if(dragging == d) {
                          g.setColor(Color.RED);
                  g.fillRect(dx-3, 0, 6, getHeight());
                  x = gx;
                  b = !b;
       public static void main(String [] arg) throws Exception {
          JFrame frame = new JFrame("DragBar");
          JPanel p = new JPanel(new BorderLayout(8,8));
          DragBar db = new DragBar();
          p.add(db, BorderLayout.CENTER);
          frame.getContentPane().add(p);
          frame.setSize(600,100);
          frame.show();
    }any help appreciated,
    asjf

  • No transport request generated while configure the payment terms

    Hi Gurus,
    When i am configure the payment terms in DEV with tcode OBB8,At that  time the system is not generated any transport request,plz give the any other process for creation of transport request.
    Regards,
    Ramesh

    Hi gpr rao,
    From screen Txn OBB8>Table view>Transport>Create request. Now you will get the transport number.
    Hope this will help.
    TQ
    Regards,
    Nazrul

  • How to transport number range group Configuration in Material Master

    Hi,
    I have this query regarding how to transport number range group in material master from one server to another.
    Problem: There was no number range assignment done for a particular material type. So, i assigned the particular mat. type to a group which had some number range intervals with the help of T-Code MMNR.
    But when i want to transport this config. to other sever, it is only transporting the interval but not the assignment done to that group. In the menu bar only Interval transport option is there.
    Can anybody help me with this I hope the query is clear.
    Regards
    Vivek

    Hi,
    Number range objects can be transported using Workbench requests.
    Thanks
    Kishore

  • CMS Transport Load Software Component Configuration

    Hi All,
    We have done the Development SOAP to RFC scenario. We are trying to move the chages to QA system through CMS transport, we did't find the SC in Add SC, for that we have updated the CMS and tried to load SC configuration while doing this we are getting
    Load Software Component Configuration
    Enter Name of SC configuration file
    Last month i have done one created one track at that time i did't get this type of message.
    could you pls suggest me what i need to give here.
    Thanks,
    Venkat

    Hi ,
    With in the CMS ,you need to add your Software Component from which you need to transport the Repositiry Object.
    Software Component Can be added from Landscape Configurator of the CMS.
    Hopes this helps.
    Thanks,
    Madhu

  • Stock transport order ("Q" stock, configuration) - cross-company code

    We tried to create stock transport order (cross-company code) and consequents documents with
    using "Q" stock and material configuration. Unfortunately we have got
    1) message M7 146 concerning the special Q stock not supported by the
    movement 643., 2) configuration is not taken into delivery type NLCC. Can anyone help?

    Hi,
    Please follow the below process for stock transport order...
    1. Create stock transprot purchage order (ME21N)
    2. Create delivery Vl10b or VL01n and then goods issue
    3. Inter comapny billing with billing type IV...
    Please go to VOV7 there speical stock filed as blank and billing relevance as A...
    Regards
    sankar

  • Logic Express 9 not saving transport bar settings

    I changed my transport settings by adding buttings and clicked the 'save as default' button, but the the settings do not stay when I quit logic and reopen the project file.

    Well,
    What I have to say is that the Roland's support helped me to find an answer. We tested the controller with another computer and everything was fine. The main problem was about software. When I formatted my computer almost everything was solved. The only problem that still remain is the midi oscillations in MIDI OUT display when ACT is lit. Now I can control LOGIC, and there is no strange advise when I start it. About the detail of the oscillations, maybe is a problem of configuration in LOGIC, maybe is a problem of hardware in my computer, I still don't know.
    I wrote this because if anyone in the world is in the same situation, who knows, these words could help in any way.
    Best

  • Configuring parameter fields in Search Bar pattern UI configuration

    Hello all,
    Im configuring a search bar UI pattern for an entity service and have some doubts. The parameter fields description seems to be the entity service field description.
    - Is there a way to internationalize this field descriptions ?
    - The search bar always generate a button called "Go". Is it possible to change the button text ?
    Thanks in advance,
    Helder Ribeiro

    Thanks Abdul, but where in CAF Runtime configurator?
    Regarding the recommendation of custom WDP or VC app: Under what circumstance would one use the UI patterns.  Again our desire is to find the limit of configuring UI patterns vs. custom UIs.

  • Tunnel Transport MTU different from Configured MTU

    Hi,
    I have the following -
    interface Tunnel0
     description VPN TEST
     ip address 172.27.240.10 255.255.255.252
     ip mtu 1452
     ip virtual-reassembly in
     qos pre-classify
     tunnel source FastEthernet0/1
     tunnel mode ipsec ipv4
     tunnel destination x.x.x.x
     tunnel protection ipsec profile TEST
    end
    However, when I do a show interface tu0 I see the following - I have omitted most of Output from this. Is there a specific reason for the difference in 6 bytes?
    Tunnel0 is up, line protocol is up
      Hardware is Tunnel
      Description: TEST
      Internet address is 172.27.240.10/30
      MTU 17886 bytes, BW 100 Kbit/sec, DLY 50000 usec,
         reliability 255/255, txload 255/255, rxload 255/255
      Encapsulation TUNNEL, loopback not set
      Keepalive not set
      Tunnel source xxxx FastEthernet0/1), destination yyyyyy
       Tunnel Subblocks:
          src-track:
             Tunnel0 source tracking subblock associated with FastEthernet0/1
              Set of tunnels with source FastEthernet0/1, 1 member (includes iterators), on interface <OK>
      Tunnel protocol/transport IPSEC/IP
      Tunnel TTL 255
      Tunnel transport MTU 1446 bytes
    On the opposite end of this VPN tunnel - I see the following -
    interface Tunnel32
     description TEST VPN
     ip address 172.27.240.9 255.255.255.252
     ip mtu 1452
     qos pre-classify
     tunnel source FastEthernet0/0
     tunnel destination y.y.y.y
     tunnel mode ipsec ipv4
     tunnel protection ipsec profile TEST
    end
    When I do a show interface Tu32 however, I do not see the transport MTU configured as i do on the other router so I'm not entirely sure if the route is indeed honoring my IP MTU command of 1452
    sh int tu32
    Tunnel32 is up, line protocol is up
      Hardware is Tunnel
      Description: TEST
      Internet address is 172.27.240.9/30
      MTU 1514 bytes, BW 9 Kbit, DLY 500000 usec,
         reliability 255/255, txload 48/255, rxload 148/255
      Encapsulation TUNNEL, loopback not set
      Keepalive not set
      Tunnel source y.y.y.y (FastEthernet0/0), destination xxxxx
      Tunnel protocol/transport IPSEC/IP
      Tunnel TTL 255
      Fast tunneling enabled
      Tunnel transmit bandwidth 8000 (kbps)
      Tunnel receive bandwidth 8000 (kbps)
    Any ideas on why I am not seeing my configured MTU under the show interface command?

    Hi. Did you ever find out the reason and a solution to this problem. I am having the same issue where CUSP decides to change the transport type to TCP (from UDP) when talking to CUCM on certain invites from Acme SBC. On some invites from the same Acme SBC, CUSP doesn't change the transport type and leaves it as UDP.
    Thank you.

Maybe you are looking for

  • Problem in getting opening balance for multiple GL Account

    Hi, I am working on a  Trail Balance Report in which i am trying to fetch the data for the opening balance for multiple GL Accounts but it is not coming accurate.. Here is the link to the code which i am using currently right now:- http://docs.google

  • IPhone 4s Signal Strength decreases after updating to iOS 6.1.2

    Hi, Yesterday, I have updated my iPhone 4s to iOS 6.1.2 and the signal strength decreased from 5 bars to 2 bars. All of my phones at home with the same GSM provider shows 5 bars (full) and my iPhone 4s swings between 2 and 3 bar. Prior iOS 6.1.2 this

  • My Nvidia Gforce GT 120 is freazzing frames And I need to change it

    My Nvidia Gforce GT 120 is freazzing frames every 1 or few seconds and im thinking of changing it for the ati RADEON HD 5770, (OLD BUT REALIABRLE MAC PRO 2009) can I use one that was used on an old pc or do I need a "MAC VERSION" of this card?

  • Loading Sharp printer driver on iMac

    Hi, I have just come back to Mac after 15 years and in setting up my new computer, I cannot load the Printer Driver for a Sharp ARM205 laser printer. I have downloaded the latest Mac driver from Sharp and I can see the file in the Downloads Folder bu

  • HCM Forms issue

    Hi Friends,    We are using custom workflow for Transfer process, which uses the HCM Processes and Forms Framework. When the approver is trying to approve the transfer form the workflow is going into error, when i check the application log it says th