Re: end of song icon when editing in GB-track markings

Strange thing--I followed the Bullets & Bones'Converting LPs to iTunes article through to making the split on the track, created a New Basic Track, selected its Solo button, and dragged the track to the new track. But the end of song marker (EoS) didn't appear! So, when I sent the track to iTunes, the entire recording was sent instead of just the track I wanted. I had made sure that I clicked the right thing and moved the playhead out of the way, but that little purple triangle didn't appear.
Is there something the article (a very good one, BTW) forgot to tell me?
Jacinda

The End of Song marker probably still sits at the rightmost position it had (it doesn't move left if you shorten the song). So drag it back in, or even better, use the yellow cycle ribbon for finer adjustment.

Similar Messages

  • Playhead randomly JUMPS to the end of the timeline when "editing" during playback

    CS 6.0.1
    OSX 10.7.4
    I love the new feature in CS6 that lets you edit DURING playback, and playback won't stop. Brilliant.
    Now, I use this feature a lot making cuts as I go. I use the "command + shift + k" combo to make an edit to all tracks while the playhead is moving along. It seems though that every so often when I do this, the playhead warps to the end of the timeline. Very frustrating, and when dealing with long timelines,really slows me down, to get back to where I was working.
    Also I can repeat this "glitch" very easily, so its not some totally random occurance. Just pushing cmd+shift+k while the playhead is moving a few times repeats it very quickly.
    Am I doing something wrong here? Or toggling some OTHER key command inadvertently? Or is this a legit glitch?
    EDIT: I would like to add that using the "nudge" command during playback has the same glitch of arbitrarily jumping to the end of the timeline if you click the nudge command quickly in succession.

    This issue was NOT resolved by manually installing all cs6 updates that were failing with adobe product manager, then doing a clean installation of the latest drivers from Nvidia's website using the ODE (Optimal Drivers for Enterprise) Graphics Drivers.
    The issue came back after editing for a little bit., however this following fix worked:
    *FIXED BY ADOBE TECH SUPPORT INDIA*
    The solution was to delete all media cache files and all cache settings for the specific project.   Check all your cache locations and encoded media file locations.
    Rebuild project on load.... edit.    Thanks.

  • Icon was changed to default icon when editting a node on JTree

    I have a tree with icon on nodes. However, when I edit the node, the icon is changed to default icon.
    I don't known how to write the treeCellEditor to fix that one.
    The following is my code:
    package description.ui;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.ToolTipManager;
    import javax.swing.WindowConstants;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.tree.TreeSelectionModel;
    public class Tree extends javax.swing.JPanel {
         private JTree tree;
         private JScrollPane jScrollPane1;
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new Tree());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.show();
         public Tree() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   BorderLayout thisLayout = new BorderLayout();
                   this.setLayout(thisLayout);
                   setPreferredSize(new Dimension(400, 300));
                    jScrollPane1 = new JScrollPane();
                    this.add(jScrollPane1, BorderLayout.CENTER);
                        DefaultMutableTreeNode rootNode = createNode();
                        tree = new JTree(rootNode);
                        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
                        jScrollPane1.setViewportView(tree);
                        ToolTipManager.sharedInstance().registerComponent(tree);
                        MyCellRenderer cellRenderer = new MyCellRenderer();
                        tree.setCellRenderer(cellRenderer);
                        tree.setEditable(true);
                        tree.setCellEditor(new DefaultTreeCellEditor(tree, cellRenderer));
                        //tree.setCellEditor(new MyCellEditor(tree, cellRenderer));
              } catch (Exception e) {
                   e.printStackTrace();
         private void btRemoveActionPerformed(ActionEvent evt) {
             TreePath path = tree.getSelectionPath();
             DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)path.getLastPathComponent();
             ((DefaultTreeModel)tree.getModel()).removeNodeFromParent(selectedNode);
         private DefaultMutableTreeNode createNode() {
             DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Doc");
             DefaultMutableTreeNode ch1 = createChuongNode(rootNode, "Ch1");
             DefaultMutableTreeNode ch2 = createChuongNode(rootNode, "Ch2");
             createTextLeafNode(ch1, "title");
             return rootNode;
         private DefaultMutableTreeNode createChuongNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new ChapterNodeData(name));
             parent.add(node);
             return node;
         private DefaultMutableTreeNode createTextLeafNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new TitleNodeData(name));
             parent.add(node);
             return node;
          private class MyCellRenderer extends DefaultTreeCellRenderer {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
                 public MyCellRenderer() {
                     titleIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Text16.gif"));
                     chapterIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Element16.gif"));
                 public Component getTreeCellRendererComponent(
                                     JTree tree,
                                     Object value,
                                     boolean sel,
                                     boolean expanded,
                                     boolean leaf,
                                     int row,
                                     boolean hasFocus) {
                     super.getTreeCellRendererComponent(
                                     tree, value, sel,
                                     expanded, leaf, row,
                                     hasFocus);
                     if (isChapterNode(value)) {
                         setIcon(chapterIcon);
                         setToolTipText("chapter");
                     } else if (isTextLeafNode(value)) {
                         setIcon(titleIcon);
                         setToolTipText("title");
                     return this;
                 protected boolean isChapterNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof ChapterNodeData;
                 protected boolean isTextLeafNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof TitleNodeData;
          private class MyCellEditor extends DefaultTreeCellEditor {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
              public MyCellEditor(JTree tree, DefaultTreeCellRenderer renderer) {
                  super(tree, renderer);
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Text16.gif"));
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Element16.gif"));
              public Component getTreeCellEditorComponent(
                           JTree tree,
                           Object value,
                           boolean isSelected,
                           boolean expanded,
                           boolean leaf,
                           int row) {
                  super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
                  return this.editingComponent;
          abstract class NodeData{
              String name;
              public NodeData(String name) {
                  this.name = name;
              public String getName() {
                  return name;
              public void setName(String name) {
                  this.name = name;
              public String toString() {
                  return name;
          class ChapterNodeData extends NodeData {
              public ChapterNodeData(String s) {
                  super(s);
          class TitleNodeData extends NodeData {
              public TitleNodeData(String attr) {
                  super(attr);
    }

    Arungeeth wrote:
    I know the name of the node... but i cant able to find that nodeHere is some sample code for searching and selecting a node:
        TreeModel model = jtemp.getModel();
        if (model != null) {
            Object root = model.getRoot();
            search(model, root, "Peter");//search for the name 'Peter'
            System.out.println(jtemp.getSelectionPath().getLastPathComponent());
        } else {
            System.out.println("Tree is empty.");
    private void search(TreeModel model, Object o, String argSearch) {
        int cc;
        cc = model.getChildCount(o);
        for (int i = 0; i < cc; i++) {
            DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(o, i);
            if (model.isLeaf(child)) {
                TreeNode[] ar = child.getPath();
                String currentValue = Arrays.toString(ar);
                if (currentValue.contains(argSearch)) {
                    jtemp.setSelectionPath(new TreePath(ar));
            } else {
                search(model, child, argSearch);
    }

  • When editing an image in Photoshop from Lightroom then saving it back to Lightroom, how do i get the image to go back and  sit next to the original? Mine is going to the end of the folder. Thanks Karen

    When editing an image in Photoshop from Lightroom then saving it back to Lightroom, how do i get the image to go back and sit next to the original image? Mine is going back to the end of the folder. Thanks Karen

    Hi Karen
    You may the sort set to Custom. Click the dropdown menu on the toolbar (to the right of the word sort) and change to capture time.
    If you can’t see the toolbar above the filmstrip press the T key. Press T again to hide.

  • In iTunes I click on a song and when I click on the "get info" tab, it opens up but everything is gray - locked, therefore, I cannot edit the year or genre of the songs. Not every song is locked, only certain ones for some reason. Any help?

    In iTunes I click on a song and when I click on the "get info" tab, it opens up but everything is gray - locked, therefore, I cannot edit the year or genre of the songs. Not every song is locked, only certain ones for some reason. Any help?

    I ran into the same problem, I think that, If you tab on a song that is on your IPOD, and the song data is grayed-out, I think it means that the song is probably twice on your IPOD and that the iTunes directory can not edit THAT song data for two (or more) files @once. Check if this is the case, sinceI have the same problem,am looking for a way to have One and the same song in more playlists but only keep the song once on the IPOD.

  • Tab between fields when editing song information

    iTunes 10.4 removed the ability to tab between fields when editing song information. Is there another shortcut now?

    Yes, I know EXACTLY what you mean. Actually the Tab sequence was reversed in 10.4. I'm upset that it took me until Septeber 2011 to figure it out. For the longest time, probably every release of iTunes. The Tab sequence went (Source-->Tab-->Search Music box-->Tab-->Tracks List)
    Now it's the reverse and it's so annoying. I have both Mac and Windows and was able to downgrade my Windows iTunes to 10.3.x (though I had to downgrade to a previous iTunes Library.itl file. I cannot downgrade my Mac iTunes b/c it's my main library and I'd lose historic data by restoring and old iTunes Library.itl file
    I've written to Apple about this several times the past few weeks but they've yet to address this. The latest version is 10.5 and it hasn't been restored. I WISH Apple would RESTORE this feature to its ORIGINAL design!!!

  • "next" option missing when editing songs

    When editing songs I've added from other sources or things I ripped years go, I used to have the option to edit one song, then press "Next" and that would allow me to edit the next song in the album, or list I was working on. In iTunes 11, the option seems to be missing. I now have to edit a song, press "OK", then click on the next track and select "Get Info". Is there a way to re-enable this option? Making managing my library very tedious.

    Hi,
    Try editing in song view. It works as before but does not work in album view.
    Jim

  • I downloaded an album and it shows up on all my devices but on my iPhone 5 there is the cloud icon on most of the songs but when I tap it nothing happens and I can't play the song.

    I downloaded an album and it shows up on all my devices but on my iPhone 5 there is the cloud icon on most of the songs but when I tap it nothing happens and I can't play the song. All the songs play on my iPad and MacBook. It seems like my iPhone will not let me download the rest of the songs, and I have 3.5 GB of remaining space. Help!

    You're welcome.  I've never set up an alias but according to this article: http://support.apple.com/kb/PH2622,
    "The text you provide becomes the email address ([email protected]). An alias must contain between 3 and 20 characters."
    This certainly implies that the alias is not required to be your registered name, and only becomes the prefix for a new @me.com address.  There might be something going on with the servers right now as they are probably very focused on getting ready for the iPhone 5 pre-order release, which is supposed to happen any minute now.  You might have better luck if you waited a while.

  • I have a few iPods that cut off the ends of quite a few songs.  When I play the same songs on iTunes, they play through.  It's only the iPods that cut off.  What can I do to fix this?

    I have a few iPods (all nanos) that cut off the ends of quite a few songs.  When I play the same songs on iTunes, they play through.  It's only the iPods that cut off.  What can I do to fix this?

    Hi
    This is the same problem I am having, did you figure it out yet?
    Thank you

  • Shortcuts tab is missing when edit/modify the package

    Hi,
    1. at the end of package creation (before saving) I modified a shortcut icon and changed the icon name under Shortcuts tab
    2. deployed the package. Got the correct icon but the original app name, not a changed one.
    I thought that may be forgot change the name and decided to edit the package in order to verify and change (if necessary) the name of the shortcut.
    When edited I don't see the Shortcut tab at all.
    Sure I will try to resequence the app but would like to know what may cause Shortcut tab disappearance.
    Thanks.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

    You Need to perform the step "Update Application in Existing Package" as the description said "Use this Option to edit shortcuts or FTA's of an existing package".
    You can also edit the shortcuts via the UserConfig.xml
    Best regards, Simon

  • Can't see the anchor point or bezier handles when editing an effect

    Please help! This may be an easy fix, but when editing an effect I can no longer see the anchor point, keyframes, or bezier handles on the timeline image. Specifically, I am keyframing the Brush Position in the Write-on effect, and while I can move the brush position, there is no visual cross-hair on the image nor bezier handles to adjust the curve... every adjustment is therefore a guess as to where the adjustment handle is.
    Is there a button that toggles anchor point and keyframe path display? Obviously, not being able to see what you're working on is very frustrating. I tried to click the icon to the left of the Write-on effect bar (4-point square with the selection tool in the upper right), but nothing happens. The write-on effect bar is selected and the Brush Position is in keyframe mode.
    Thank you in advance for your help.

    I worked with this the other day. Bezier handles and the hot spots are tough to see and the write-on effect is a bit wierd for me. You may have more success placing keyframes at beginning and end of a clip as I had trouble keyframing only part of a clip and still controlling the writing effect. You can then slide the keyframes later to change the duration.
    Also, you may want to disable all the other effects while editing this one, as the others keep getting selected instead for me and I end up e.g. moving the image instead of the brush.

  • Stubborn End of Song Marker

    I divided a file/song into multiple regions using the "Split" command in the Edit menu, then saved each split region as a new file for burning tracks onto a CD. However, when I move the End of Song marker (the sideways purple triangle) to the end of the new region, it pops back to its original position, even after I do a save after moving it. This leaves about 50+ minutes after the region has played that there is silence.
    For example, when I burn to a CD, I can only get one created song onto a CD because when exporting, it thinks it is a 60 minute song.
    I've tried saving as a different file, copying and pasting into a new file, creating new tracks and moving the audio to the new tracks. Nothing works. I have done this with other songs with no problems. Any suggestions?

    The EOS marker does strange things sometimes. Use the cycle region ("yellow ribbon") to exactly mark the section that you want to export!

  • How to get clips to appear in good quality when editing?

    I worked with PE over a decade ago when I had a PC.  In 2008 I migrated to Apple -- specifcally desktop Intel duo-processor Mac, OS X Snow Lion 10.6.8.  So regretably I was forced to leave PE behind and begin using Final Cut Express 4.0.1.   Recently I bought a new HD camera so I thought it was a good time to return to PE 11 since the program is now being made for Macs too.  (I had missed the Organizer tremendously!)  Before working with my new camera however, I could not resist importing some old standard definition clips into a timeline to play around with.  Well they look horrible in the viewer -- all pixelated and poor quality!  I selected the clips, pressed render and nothing happened.  I am used to automatic rendering when editing in FCE so that what you see in the viewer is what you get, of course unless you run into compression issues later on.  But I need to see what I'm editing and can't do that with this poor quality.  So what is the problem?   The clips are all in .mp4 or .mov format.  The .mp4 clips were shot with a Panasonic SDR-H85P in that format and the .mov clip was converted from DV footage on a tape recorded with a Canon ZR900. 
    Also, I am used to seeing and working on a minutia level -- sometimes frame by frame with a "blade" tool in FCE.  I switched to expert view but still can't tell where 1 frame ends and another begins.  Is there an easy way to do that?
    Thanks! 

    Thank you for your helpful answer.   Regarding frame view, I found the  options you indicated.  However, I think my issue has more to do with  "timeline view" if you will.   For example, in Final Cut, you could  press "option +" several times to "lengthen" the timeline which in turn  would "stretch" out each frame to an extent necessary to make really  precise edits on a minutia scale.  Then in order to "compress" it so you  could see the entire timeline on the computer screen, pressing "option  -" several times would bring it back down to that size which was handy  for seeing exactly where all your other effects on other timelines were  arranged.  Does that make sense?  Is there a way to do that in PE 11?    It's zooming in and  out of the timeline essentially in order to see  more of the detail while editing. 
    Regarding  the poor quality of playback, I was able to correct the problem by  setting the playback settings to "highest."  That was a relief.   Also  the clip properties did match the project properties, but if I had  wanted to change project properties, I don't think I could have because  so many of the options remained blanked out or unavailable -- all light  in color not allowing me to access them.  Don't know what the term for  that is but you probably know what I mean.  So does that mean that  project properties are always automatically determined or must they be  preset somehow?  Any direction on that issue would be helpfui because I  also work with infrared clips a lot from a Bushnell camcorder and often  combine those with regular video clips.  What is going to happen then?   Again, thanks so much for your help! 

  • How do I get Integer in JTable cell to be selected when edit using keyboard

    I have some cells in a JTable, when I double-click on the cell to edit it the current value (if any) is selected and is replaced by any value I enter, which is the behaviour I want. But when I use the keyboard to navigate to the cell and start editing, new values are added to the end of the current value which is not what I want.
    I have created my own IntegerCellEditor (see below) and added a focus event or the textfield used when editing to select all the current text but it has no effect, any ideas please ?
    public class IntegerCellEditor extends DefaultCellEditor
        public IntegerCellEditor( JTextField textfield )
            super( textfield );    
            //Ensure old value is always selected, when start editing
            ((JTextField)getComponent()).addFocusListener(new FocusAdapter()
                    public void focusGained(FocusEvent fe){
                        ((JTextField)getComponent()).selectAll();
            ((JTextField)getComponent()).setHorizontalAlignment(JTextField.RIGHT);
         * Return as Integer (because delegate converts values to Strings).
        public Object getCellEditorValue()
            return Integer.valueOf((String)delegate.getCellEditorValue());
    }

    But when I use the keyboard to navigate to the cell and start editing,
    new values are added to the end of the current value which is not what I want.How does the use know that typing will replace the text and not append? Usually if text is to be deleted, it is highlighted to give the user a visual cue.
    Here is a renderer that does this, in case your interested:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=752727

  • Songs glitches when played

    I'm playing music from my iTunes library, and all of a sudden, the song glitches...
    Example: song plays... and starts to sound like a damaged cd.... It's awesome when I'm working on odd meter timing with my drums... but, irritating..
    Any suggestions?

    Congratulations on fixing your problem.  I wish I could say the same.
    I pinned my hopes on a new MicroSD card that was specifically supposed to work well with smartphones:  A SanDisk Mobile Ultra microSDHC 32GB.  The packaging proudly announces: "Works with Windows Phone".
    Still keeps doing the same glitching trick.
    In fact it's decided to throw a few more problems in just for fun.  Most  songs appear twice in the track list.  When I started to test it, it played a couple of tracks then stopped.  When I switched on the phone to see what was happening, it started again.  At the end of the next track it stopped again, and I couldn't turn the phone on again until I'd removed the battery.  Now there are 3 copies of most songs.  Having played a dozen tracks or so with occasional glitches it just stopped dead in the middle of a song.
    I won't bore you with the rest but I've just reset the phone using the Volume Down and Power buttons.  Instead of fixing a problem, I appear to have created a flakey, unstable monster.
    Can't wait to see what happens next.

Maybe you are looking for

  • Access Portal groups in webdynpro ABAP component

    Hi Experts, I have a requirement to access portal group in web dynpro ABAP application and based on whether user is assigned to particular group or not further processing for application will be done. Are there any UME API or some other API's availab

  • Sun one web server 6.1 - connection pools

    I can't seem to get a connection pool to work in WS 6.1. I added the pool, created a resource that points to the pool and added the jdbc driver to the classpath in server.xml. To test the pool, I added a resource reference to "default-web.xml" and tr

  • Missing internet connection icon in taskbar

    Missing internet connection icon in taskbar windows xp 8250

  • New iPhone 5, Adobe Bridge Hangs or Gives up Downloading Photos from It

    I have Adobe Bridge CS5.   Version 4.1.0.54.    Installed on Windows 7. When I try to download photos and movies from my new iPhone 5, Adobe Bridge hangs. Anyone have a fix?   How can I report this as a bug to Adobe?

  • Corrupt RAW files in Lightroom 5.

    I'm having an issue with corrupt RAW files in Lightroom 5. I have all of my RAW files stored on an external NAS system. Typically, I mainly work on my files on my PC's hard drive. The NAS is for storage only. However, in the past I have looked throug