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...

Similar Messages

  • 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.

  • 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 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.

  • 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"

  • Move items up and down

    I am trying to create the spry based mechanism to move
    selected items either up or down. I have drop down and 2 buttobns
    up and dwon how can i incorporate this in spry. I have this working
    JS. But how about spry.
    function Field_up(lst) {
    var i = lst.selectedIndex;
    if (i>0) Field_swap(lst,i,i-1);
    function Field_down(lst) {
    var i = lst.selectedIndex;
    if (i<lst.length-1) Field_swap(lst,i+1,i);
    function Field_swap(lst,i,j) {
    var t = '';
    t = lst.options
    .text; lst.options.text = lst.options[j].text;
    lst.options[j].text = t;
    t = lst.options
    .value; lst.options.value = lst.options[j].value;
    lst.options[j].value = t;
    t = lst.options
    .selected; lst.options.selected = lst.options[j].selected;
    lst.options[j].selected = t;
    t = lst.options
    .defaultSelected; lst.options.defaultSelected =
    lst.options[j].defaultSelected; lst.options[j].defaultSelected = t;
    function SetFields(lst,lstSave) {
    var t;
    lstSave.value=""
    for (t=0;t<=lst.length-1;t++)
    lstSave.value+=String(lst.options[t].value)+",";
    if (lstSave.value.length>0)
    lstSave.value=lstSave.value.slice(0,-1);
    }

    What happens when you run it?  Does the drag start?  Does it drop?
    If you have a sort applied to the collection you won't be able to rearrange items.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Custom Report for slow and fast moving items

    Dear Xperts,
    My client wants to develop a new report for slow and fast moving items, I checked the std report MC46 however as per std SAP design this report does not consider the special stock like project stock (Q)...could you please help me to know how can develop this new report with following input and output fields?
    Input fields:
    Plant
    Material
    Material Group
    MRP Area
    Special Stock Indicator
    Special Stock (Type)
    Output Fields:
    Material
    Material type
    Material group
    MRP Controller
    MRP Area
    ABC indicator
    Material price
    Category field – Slow, Fast, Non-moving
    Current Stock
    Last Issue Date
    Thanks in Advance
    Regards
    Rahul

    Dear Rahul,
    If you required  project stock and consignment stock with valuated stock report in same place you need to generate new info structure as given below link. Or you can go with customized report with abaper.
    Info structure validation
    Regards
    Sanjeet Kumar

  • 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.

  • 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

  • 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.

  • I can not download the Golf digest magazine purchased from the i-tunes store, when i attempt i get the message "can not install item, restart app and down load" i have tried that without success. This started after i changed ipads

    I can  not access my Golf digest down loads from the newstand, when i try to down load purchased items i get the message "can not install item, please restart the app and down load" that piece of advice has not helped, any one else encountered this?

    chicx wrote:
    This is the third time of writing this on your Apple Support Communities!
    Not with your current user id.
    Far too much uneccesary information in your post, which only confuses things, a vast amount!
    Let's start with iTunes.
    Have you updated iTunes to 11.1.5, because the previous version did appear to have an issue about seeing iPods?
    With iTunes 11.1.5 installed, look in Edit/Preferences/Devices, (or use the ALT key, followed by the E key and then the F key) and make sure that the box named Prevent iPods, iPhones and iPads from syncing automatically does not have a tick in the box.
    Once you have doen those two things, check to see if the iPod is seen by iTunes.
    chicx wrote:
    By the way, what does IOS mean? (I thought IO stood for operating system, but am flummoxed by the S on the end.
    Really?
    OS stands for Operating System. (In computer speak, IO means Input/Output.)
    iOS originally stood for iPhone Operating System, but it now refers to the iPod Touch and iPhone. The iPod Classic, which you have listed in your profile as your iPod, does not use iOS.
    I assume that you have been listening to the Podcast in your iTunes on the computer as you cannot transfer it to your iPod. It's what I'd do.

  • WRT54GX V2 .. My Wireless "signal" keeps moving up and down causing lag.

    Anyone know how to fix this? The "signal" keeps moving up and down (on the bar) and its causing "lag" or slowness when I go on the Internet.
    This had not happened before, this only started recently.
    Please help.

    Hello? Anyone?

Maybe you are looking for

  • How to delete email from iPhone ONLY and not from server?

    Hi. I have a Yahoo! POP mail account.. Can anyone advise me how to setup my iPhone so it ONLY deletes email from the iPhone and NOT the server. So, after I read an email on the iPhone and delete it, the email remains in the INBOX on the server? If no

  • How to make Cost Center display/default at expense level in PR05

    Dear Friends I've a requirement in Travel Mgt where in PR05 at each expense line item level i need cost center to be displayed by default as 100%. Is there any possibility at the config level or Exit level to make it default. Currently we are using a

  • Iam trying to create a PO for a material.

    In Material Master source list is activated in purchasing view and source list is created for the material,plant and vendor combination.A contract is created with the same vendor with validity period.contract number is assigned in the source list.Now

  • How to play .VOB files with QuickTime?

    I get an "Error opening file" message trying to play a VTS014.VOB file. This is a file of home movies scanned to the above file. I use Pro (QuickTime™ Version 7.1.6, Player Version 7.1.6) with the mpeg-2 addition and went through the process identify

  • HI about CATT Scripts

    HI Thanks for every one who gave me the reponse to my previous thread. Now i can run both CATT and ECATT scripts. But can any one clearly tell me the differences or advantages of ECATT scripts over CATT Scripts.