Moving tracks up and down...?

So easy to do in PS AE etc, but a real mystery in PP...
And is it possible to insert a track?
Cheers!

But that is ridiculous. Moving tracks or layers is standard practice in so much other software.
I assume you're talking about software like After Effects or Photoshop, which contain "layers" and not "tracks" in the way that Premiere Pro, and any other editor for that matter, have them . Perhaps it's a semantic difference, but it's an important one: in Adobe software, a "layer" contains one and only one footage item or graphical element, whereas a "track" can contain one or more footage items or graphical elements. In After Effects, you HAVE to seperate footage items by both time (X-axis) and stacking order (Y-axis)--that's simply how it works. However, with Premiere, you only necessarily have to seperate footage items by time (X-axis)--if you can do everything on one track, so be it.
If you were able to drag tracks up and down in the stacking order (Y-axis), you may be able to achieve the layering effect you want at a certain point in time in your sequence, but you would also change the stacking order for the entire duration of the sequence. This may be what you want, or what you don't want, but I would submit that most people would never need this kind of functionality. How often does one need to completely rearrange the stacking order of an entire sequence? I know that I never need this; it's only small portions of time where I need to rearrange items on the Y-axis. I just think this capability would be so rarely needed that there is no point adding it; it could potentially cause more trouble than good.
I'm currently working on something that has (at its peak) five small windows with different clips with lots of edits running with their own effects. At times I've wanted to reprioritise a track (to put it above another) so just draggng a track up would have been a quick way of doing it.
You might consider nesting each track (or track segment) in its own sequence, so at least you're only dragging one element up and down, instead of multiple small clips. Just add one empty track to serve as a temporary landing zone, that you can move an individual nest into, and then continue to reshuffle until you get the order you want. I realize this isn't what you really want, but it's the best workaround I can think of.
How disappointing - and a shame the project is too long for AE!
Why is it too long for AE? After Effects has something like a 3 or 4-hour limit to a comp, which I imagine would be pretty difficult for most people to exceed. It would be a bit of a pain to manage, I suppose, but you could do it.
Alternately, if you've got the suite and therefore Dynamic Link, just select the clips in the section of timeline you're trying to work with, and select Replace with After Effects Composition. That chunk of timeline will be sent to AE and the clips will be stacked as individual layers in the same order they're in in the PPro sequence. From there, you can organize and reorganize things to your heart's content, and that will be reflected in your PPro sequence. You may want to consider creating nested sequences in PPro first, because those will be recreated in your AE comp as nested precomps. Might make layer management a bit more friendly.

Similar Messages

  • When i track up and down, my screen start stops or jitters

    hi all,
    when i track up and down with my track pad, the screen seems to "jitter", its really startign to annoy me, i have looked at settign and preferences, but ntohign seems to sort it.
    can some one help me.

    What graphics card does your computer use? Look for that brand name and search for drivers.

  • How to control system volume by moving mouse up and down using java

    hi,
    please give me suggestion that how to control the system volume by moving mouse up and down in java..
    thanks,
    prabhu selvakumar.

    Prabhu_Selvakumar wrote:
    Thank u for ur reply... i dont know wat is JNI interface... i have to read about that.... Unless you're a whiz-bang C/C++ coder, using this won't be easy or pretty. For my money, if I wanted to create a program that interacted closely with a specific OS, I'd use a more OS-specific programming language such as C# if I'm coding for Windoz.

  • Moving items up and down in a JList

    Hello I posted this query in the wrong forum and so now I am trying to correct the problem Here is the link
    http://forum.java.sun.com/thread.jspa?threadID=5267663&tstart=0
    Hi-
    I have a problem with moving selected items up and down in a JList..
    When I select an item in the JList and press ctrl + (the up or down arrow key),
    I want the selected item to move up (or down).
    My code works. That is to say it does what I want, only the highlighted item does not correspond to the selected item.
    When I move an item up I would like it to remain selected, which I guess it is as repeated moves will move the item.
    But it does not appear to be working. because the highlight is above the selected item when moving up and below the selected item when moving down.
    Here is my code:
    public class MyClass  implements MouseListener,KeyListener
    private JList linkbox;
    private DefaultListModel dlm;
    public List<String> Links= new ArrayList<String>();
    private String Path;
    private JScrollPane Panel;
        public MyClass  (String path,JScrollPane panel){
        super();
            Path=path;
            Panel=panel;
    //Populate the ArrayList "Links" etcetera.
         dlm = new DefaultListModel();
            linkbox = new JList(dlm);
            for(int k=0;k<Links.size();k++){
                dlm.addElement(Links.get(k));
        public void keyPressed(KeyEvent e) {
        System.out.println("You pressed "+e.getKeyCode());
           if(e.getKeyCode()==38&&e.getModifiers()==KeyEvent.CTRL_MASK){
            Link sellink =linkbox.getSelectedValue();
                MoveUP(sellink);
            if(e.getKeyCode()==40&&e.getModifiers()==KeyEvent.CTRL_MASK){
                Link sellink =get(linkbox.getSelectedValue();
                MoveDown(sellink);
    private void MoveUP(Link link){
        int pos=-1;
        for(int p=0;p<Links.size();p++){
            Link l=Links.get(p);
            if(l.indexOf(link)==0){
            pos=p;
            break;
        if(pos!=-1&&pos>0){
            Links.remove(link);
            Links.add(pos-1,link);
            dlm.removeAllElements();
            for(int k=0;k<Links.size();k++){
            dlm.addElement(Links.get(k));
            Panel.setViewportView(linkbox);
            linkbox.setSelectedIndex(pos-1);
        private void MoveDown(Link link){
            int pos=-1;
            for(int p=0;p<Links.size();p++){
                Link l=Links.get(p);
                if(l.indexOf(link)==0){
                pos=p;
                break;
            if(pos!=Links.size()-1&&pos>0){
            System.out.println("pos= "+pos);
                Links.remove(link);
                Links.add(pos+1,link);
                dlm.removeAllElements();
                for(int k=0;k<Links.size();k++){
                dlm.addElement(Links.get(k));
                Panel.setViewportView(linkbox);
                linkbox.setSelectedIndex(pos+1);
        }And here is a compileable version...
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.DefaultListModel;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.UIManager;
    class MoveableItems  implements KeyListener
         private JList jlist;
         private List<String> items = new ArrayList<String>();
         private DefaultListModel dlm;
         private JScrollPane sp;
         public MoveableItems(){
             JFrame f = new JFrame();
           items.add("Fox");
           items.add("Hounds");
           items.add("Cart");
           items.add("Horse");
           items.add("Chicken");
           items.add("Egg");
             dlm = new DefaultListModel();
            jlist = new JList(dlm);
             KeyListener[] kls=jlist.getKeyListeners();
             for(int k=0;k<kls.length;k++){
                 jlist.removeKeyListener(kls[k]); 
             jlist.addKeyListener(this);
             for(int k=0;k<items.size();k++){
                dlm.addElement(items.get(k));
              sp = new JScrollPane();
                sp.setViewportView(jlist);
             f.getContentPane().add(sp);
             f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             f.setSize(650, 250);
             f.setVisible(true);
         public static void main(String[] args)
             try{
                UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
                }catch(Exception e){System.out.println(e.getMessage());}
             new     MoveableItems();
        public void keyPressed(KeyEvent e) {
        System.out.println("You pressed "+e.getKeyCode());
            if(e.getKeyCode()==38&&e.getModifiers()==KeyEvent.CTRL_MASK){
            String selString =(String)jlist.getSelectedValue();
                MoveUP(selString);
            if(e.getKeyCode()==40&&e.getModifiers()==KeyEvent.CTRL_MASK){
                String selString =(String)jlist.getSelectedValue();
                MoveDown(selString);
        public void keyReleased(KeyEvent e) {
         public void keyTyped(KeyEvent e) {
    private void MoveUP(String link){
        int pos=-1;
        for(int p=0;p<items.size();p++){
            String l=items.get(p);
            if(l.indexOf(link)==0){
            pos=p;
            break;
        if(pos!=-1&&pos>0){
            items.remove(link);
            items.add(pos-1,link);
            dlm.removeAllElements();
            for(int k=0;k<items.size();k++){
            dlm.addElement(items.get(k));
            sp.setViewportView(jlist);
            jlist.setSelectedIndex(pos-1);
            jlist.requestFocus();
        private void MoveDown(String link){
            int pos=-1;
            for(int p=0;p<items.size();p++){
                String l=items.get(p);
                if(l.indexOf(link)==0){
                pos=p;
                break;
            if(pos<items.size()){
            System.out.println("pos= "+pos);
                items.remove(link);
                items.add(pos+1,link);
                dlm.removeAllElements();
                for(int k=0;k<items.size();k++){
                dlm.addElement(items.get(k));
                sp.setViewportView(jlist);
                jlist.setSelectedIndex(pos+1);
                jlist.requestFocus();
    }Now for some reason this works better.
    I notice that the highlight does follow the selection but there is also something else there.
    Still in my original version the highlight seems to appear where the dotted lines are?
    There seems to be dotted lines around the item above or below the selected item (depending on whether you are going up or down).
    Any thoughts at this point would be appreciated.
    -Reg.
    Can anyone explain to me why this is so and if it can be fixed?
    If any one can help I would be grateful,
    -Reg

    You seem to be making a genuine effort. Key Bindings like anything else involves getting familiar with the code and the idiosyncrasies involved and just playing with the code yourself. To get you started, if the JList were called myList I'd do something like this for the up key:
            KeyStroke ctrlUp = KeyStroke.getKeyStroke(KeyEvent.VK_UP, InputEvent.CTRL_DOWN_MASK);
            myList.getInputMap().put(ctrlUp, "Control Up");
            myList.getActionMap().put("Control Up", new AbstractAction()
                public void actionPerformed(ActionEvent e)
                    // do stuff to move your item up
            });Please read the tutorial for details, explanation, etc...

  • DataGrid Moving rows up and down

    I have this function to move rows up in a datagrid , yet i am having problems when it comes to move to rows down. I have tried changing the following line to +1 but it dint work any hints please.
                ac.addItemAt(itemToShift,dg.selectedIndex-1);
    This is the code
    public function up():void
                if(dg.selectedIndex == -1)
                    Alert.show("Select the row which you want to up.");
                    return;
                if(dg.selectedIndex == 0)return;
                var selectedRowInx : Number = dg.selectedIndex;
                var itemToShift : Object = ac.getItemAt(selectedRowInx) as Object;
                ac.addItemAt(itemToShift,dg.selectedIndex-1);
                ac.removeItemAt(dg.selectedIndex);
                dg.invalidateDisplayList();

    Okay.  So, I made the code a little simpler than what I said. With my code, you could have selected a row, clicked a cut button, then selected a another row to past afterwards or whatever.  Here is the code for simply moving the row up and down.
    I added code to catch if the row was at the top or the bottom of the data.  Also, I created two indexes, one for the grid and one for the array collection.  It will probably work with the one index, but I was trying to see if I could do the move on a sorted datagrid, but that is basically pointless.
    protected function moveUpBtn_clickHandler(event:MouseEvent):void
    var upSelectedIndex:int = myDataGrid.selectedIndex;
    // Move Item
    if(upSelectedIndex > -1) {
      if(upSelectedIndex > 0) {
       // Get the selected Object
       var moveObject:Object = myArrayCollection.getItemAt(upSelectedIndex);
       // Get actual Object location if grid is sorted
       var upActualIndex:int = myArrayCollection.getItemIndex(moveObject);
       // Remove selected item at actualIndex
       myArrayCollection.removeItemAt(upActualIndex);
       myArrayCollection.refresh();
       // Move both indexes
       upActualIndex--;
       upSelectedIndex--;
       // insert item at actualIndex
       myDataGrid.dataProvider.addItemAt(moveObject, upActualIndex);
       myArrayCollection.refresh();
       // select grid at selectedIndex
       myDataGrid.selectedIndex = upSelectedIndex;
      } else {
       Alert.show("Item is currently at the top of the list.", "Move Alert",  Alert.OK, this);
    } else {
      Alert.show("No Item Selected.", "Move Alert",  Alert.OK, this);
    protected function moveDownBtn_clickHandler(event:MouseEvent):void
    var downSelectedIndex:int = myDataGrid.selectedIndex;
    if(downSelectedIndex > -1) {
      // Move Item
      if(downSelectedIndex < myArrayCollection.length -1) {
       // Get the selected Object
       var moveObject:Object = myArrayCollection.getItemAt(downSelectedIndex);
       // Get actual Object location if grid is sorted
       var downActualIndex:int = myArrayCollection.getItemIndex(moveObject);
       // Remove selected item at actualIndex
       myArrayCollection.removeItemAt(downActualIndex);
       myArrayCollection.refresh();
       // Move both indexes
       downActualIndex++;
       downSelectedIndex++;
       // insert item at actualIndex
       myDataGrid.dataProvider.addItemAt(moveObject, downActualIndex);
       myArrayCollection.refresh();
       // select grid at selectedIndex
       myDataGrid.selectedIndex = downSelectedIndex;
      } else {
       Alert.show("Item is currently at the bottom of the list.", "Move Alert",  Alert.OK, this);
    } else {
      Alert.show("No Item Selected.", "Move Alert",  Alert.OK, this);
    Here is the blog post with the working DataGrid and Source View
    Message was edited by: DeanLoganBH  - Had to set the Down Move to look for the Length of the ArrayCollection -1, because the DataGrid row starts at 0, it is one less than the total length of the ArrayCollection.

  • Moving Tracks Up Or Down?

    Is it possible to move a track up or down? I have a video with many tracks and I've been using the fact that the top-most track has precedence. Now I want to make a track lower on the list the top-most. Is it possible to move it to the top or does one have to create a new track and move all the clips up there?
    TIA,
    ---JC

    JC,
    Is there a way to see the 'real' track number along side the track -name-? I rename my tracks 'Narrator', 'Wideshot', etc. but then when adding new tracks, the tracks are referred to by their -number-. I wish I could see -both- side by side so when I add a track I know where it's going without having to count the track #s.
    Not that I am aware of. I also rename all of my Tracks, especially my Audio Tracks. You might want to rethink your naming convention, and say do "1 Camera 01," etc. That would get your number out front, so you do not have to expand the Track header to see it all. I do similar with my Audio Tracks, as I find them more difficult to keep a handle on. For me, it's AV Audio 01, SFX Mono 01, SFX Mono 02, SFX Stereo 01, Music Front 01, etc.
    Video Tracks are often left with just the PrPro Track numbers, until I get to Track Matte, or Lower Third 01 Titles.
    Just remember that the Track numbers in PrPro go up from the bottom for Video Tracks and down from the top for Audio Tracks. When you do go to Add Tracks, look at the drop-down menu for positions relative to the targeted Track.
    Good luck, and sorry that there's now a really easy way to do much of this.
    Hunt

  • Is there a way to make the scroll wheel move up and down instantly like you could with previous versions, instead of moving slowly up and down?

    I've only recently updated my firefox to v 15.0.1 after using v 10 for so long, and I was wondering if there is a way to make the scroll wheel move up and down instantly without having it slowly crawl to it's spot?

    you can disable smooth scrolling.
    *Tools > Options > Advanced > General: Browsing: "Use smooth scrolling"

  • Trouble with Premiere timeline moving up and down multiple audio tracks.

    I have a project that has multiple audio tracks, aver 40. Only a portion of them are visible even when I use the new side scroll, I don't know the official name but the scroll on the side that Increases or decrease the size of the track so you can see the waveform. Even when I hide the video tracks and the other preview panels I still can't see all my audio tracks. How do I scroll up and down so I can see the tracks that I want to work on. You know, like in every other program I have ever used. 

    I feel like there's a bit of egg on my face. Rereading your message and messing with the horizontal bar I realized for both horizontal and vertical bars I grab in the center and drag left or right, up or down. There's a short cut for scrolling up and down your timeline tracks, hold down ctrl/cmd and then use the scroll wheel on your mouse, and that's what I was doing for my project last night. Ah growing pains of learning a new workspace.

  • My Magic Mouse is not moving the pointer on the screen but it allows me to scroll  up and down by sliding my fingers on the mouse.

    My Magic Mouse is not moving the pointer on screen. However, it is allowing me to scroll text up and down by dragging my fingers on the mouse.  How can I recover full use? I am using a MacBook Pro with Mavericks. All indications are that the mouse is connected through the Bluetooth connection and the batteries have significant life in them.

    Have you tried this:
    http://support.apple.com/kb/TS3048?viewlocale=en_US&locale=en_US#7
    Mouse does not track as expected (jittery, jumpy, slow, fast).
    The Apple Wireless Mouse can be used on most smooth surfaces, however if tracking issues occur try these options:
    Choose System Preferences from the Apple () menu, then choose Mouse from the View menu. Set the Tracking slider to adjust how fast the pointer moves as you move the mouse.
    Try using a different surface to see if the tracking improves.
    Turn the mouse over and inspect the sensor window. Use compressed air to gently clean the sensor window if dust or debris is present.
    If multiple Bluetooth wireless devices are in use nearby, try turning them off one at a time to see if the issue improves. Bandwidth intensive devices could affect tracking.

  • How do I get the page to stop moving up and down so much?

    Re: Pages - Please tell me how I can keep the page from moving up and down so much.  It's irritating.  The page I'm writing on wants to bounce several times before it finally stops...like when you move the cursor, sometimes the page bounces.   Thanks for any help you can give.
    -R.J.

    R.J. Johnson wrote:
    Jerrold, good input about the scrolling to the end and the irritating "bounce."  This is what annoys me.  I bought a refurbished iMac 2 weeks ago that was made in May 2011 and I thought it would have Snow Leopard on it.  But it came with Lion.
    Also, yes, it comes with the Magic Mouse that is wireless.
    1,  So, I am just stuck with the Lion bounce?
    2.  PS Do you guys know how to have the Mail icon open on the Dock without the big mail window opening, too?  I do not set the Option for Mail to OPEN AT LOGIN because I hate having to close that big mail window every time I boot up the computer.
    R.J.,
    1. No matter what mouse you have, you will get a "bounce" if you bang into the limit. If you scroll gently into the limit and then back off, you will not see the same effect, or at least not the same degree. Check to see if your tracking speeds are similar with the two pointing devices. I think this will have more influence than whether the device is wireless or not.
    2. If you don't want anything to change in Mail when you boot up, I think you should just leave it open when you Shut Down the computer. With Lion, your Mail app should come back in the same state as when you Shut Down.
    Jerry

  • HT4930 My mouse suddenly started lagging when moving up and down. Left and Right seem to move fine. Waht's wrong?

    My mouse has suddenly started lagging when moving up and down. Left and right movement seems fine. in fact, it's perfect. I tried changing the tracking speed to no avail. it sped up the left and right movement, but "up and down" still remain sketchy. HELP!!

    Hi Torrence,
    You may have to suffer until you can get to your local artist's products store.   There you should be able to buy square metres of fine matt black felt (maybe in a shop selling materials too).   This makes an excellent and inexpensive base that looks good too.   Have used it for years.
    Lay it on your desk and hold it in position with some double sided sticky tape.

  • Satellite A215-S4757: screen started shaking, moving up and down

    I purchased my laptop about a year and a half ago and had no major problems till this week.
    It began a couple of days ago when the image on the screen started shaking, moving up and down and lines started appearing on the screen and going away. I restarted the computer but the screen did not want to power on. After a few tries it eventually came and worked fine for a while before it began doing the same thing again. This happened a few times until yesterday when no matter how many times i tried it did not come on.
    I do not think the problem is only with the screen because I have the laptop connected to my TV through the VGA cable and the image on there did the same thing once as well. Also even though the laptop powers up and the power light lights up, the words SATELLITE do not light up unless the screen comes on.
    Also the CAPS LOCK key has a light on it that should be lighting up(when pressed) as well if everything is working fine and it does not light up either.
    Does anyone know what I can do to fix this?
    Thank you.

    You make a good point but I had a notebook from an other manufacture before this laptop and I kept it going for over a year with several problems, each by itself bad enough to stop it from running. I am not saying I have any kind of skill or expertise but with some advice and assistance I think I can fix this myself. I have read some things online that point to the inverter and I have also found instructions on how to take the laptop apart. I wouldn't be so set against going to the ASP if there were any within 100 miles of me but there aren't. For now I'll have to keep looking.

  • Screen page keeps moving or bouncing up and down slightly when I use my scroll wheel on my mouse, it only happened after updating to 6.0

    I just updated to Firefox 6.0 with my windows 7 64bit OS. As soon as it was installed, pages began making quick moves up and down just a half inch or so when I use the scroll wheel on my Logitech MX620 mouse. When I use the scroll wheel, it does scroll, but when I stop scrolling, the page bounces up and down a half inch a few times before the page stops moving.

    I found a temporary fix, go into Logitech Setpoint and uncheck the box "Enable Smooth Scrolling" in the pointer and scrolling settings. It will make scrolling slightly less smooth but at least the web pages stop bouncing up and down on their own.

  • Moving selected objects up and down with keyboard is automaticly applying a colour fill.

    Hi,
    My InDesign is strangely applying a colour fill when i move an objects up or down using the directional arrow in my keyboard. If the colour pallet is open. Nudging an object up makes the pallet disappear on the first press. It then reappears on the second press while filling the object (text frame) with black. This is instensly frustrating. How can I stop this? Suggestions would be very appreciated.
    I have already reset the preferences.
    Cheers,

    Thanks for your reply.
    I fixed the problem by replacing the keyboard!
    Cheers,
    Nick Meadows
    0421 976 704
    www.nickmeadows.com
    Date: Fri, 30 Mar 2012 06:01:22 -0600
    From: [email protected]
    To: [email protected]
    Subject: Moving selected objects up and down with keyboard is automaticly applying a colour fill.
        Re: Moving selected objects up and down with keyboard is automaticly applying a colour fill.
        created by Peter Spier in InDesign - View the full discussion
    I have to ask if you reset the prefs uing one of the methods in this thread: Replace Your Preferences If not, there's a good chance you left out one of the files, so please try again using one of the listed methods. And please tell us the OS and your version of ID, including the patch level. Obviously this is not normal behavior. It sounds as if the Swatches panel has focus when you are pressing the arrow keys.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4302200#4302200
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4302200#4302200. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in InDesign by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • The mozilla firefox browser vertical slide bar is moving up and down automatically?

    The mozilla firefox browser vertical slide bar is moving up and down automatically. This is happening when i am browsing internet?

    Hello,
    You said you have disabled all add-ons and plug-ins. This may be a repeat exercise but can you please test for the problem when Firefox is in safe mode. This disables plug-ins as well but also applies various other changes. See here for details:
    [[Troubleshoot Firefox issues using Safe Mode]]
    If the problem still appears in Safe Mode then it may be that there is still some part of Hola that is causing the problem. You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    If none of that works then I suggest resetting Firefox. This will return Firefox to its default state but will keep your personal data, bookmarks etc. See here for instructions:
    [[Reset Firefox – easily fix most problems]]
    I hope that helps.

Maybe you are looking for