Iterating though a List with a 'next' button.

Hey people,
I am just finishing off my GUI but I had a thought, I really would like to have next and previous buttons so I can move through my list.
However I started by implementing the 'Next' button, but I have run into some trouble, on the GUI I want the user to click next and it moves obviously to the next record, then they can hit it again and it moves onto the next record again.
However when I tried to do this, the interator refuses to move to the next record, it just stays at they record with the index of 0.
I've read some books, done some research and tried all the ways I can think of, but to no avail, my code for the 'Next' method is below, the button on the GUI just calls it from a separate class.
public void MusicNext()
ListIterator titerator = iList.listIterator();
if(titeration.hasNext())
System.out.println(titerator.next());
}

Hmmm, I am a little confused (yes I am stupid), heres my code:
import java.util.*;
public class MusicList
            private List iList;  //names are stored in a list.
     public MusicList()
          iList = new LinkedList();
     public MusicList(List pListOfMusic)
          iList = pListOfMusic;
        //Here's the interator, but I get a null pointer exception error.
        ListIterator titerator = iList.listIterator();
        public void MusicNext()
                if(titerator.hasNext())
          System.out.println(titerator.next());
     public void addMusic(Music pMusicName)
            iList.add(pMusicName);
     public void removeMusic(Music pMusicName)
          iList.remove(pMusicName);
        //Return the name with the given surname, otherwise return null.
     //Uses a linear search.
        public Music findTitle(String pTitle)
          Music tTitle = null;
          boolean found = false;
          Iterator it = iList.iterator();
          while (it.hasNext() && !found)
               tTitle = (Music) it.next();
               found = tTitle.getTitle().equalsIgnoreCase(pTitle);
          if(!found) tTitle=null;
          return tTitle;
     public Music findAuthor(String pAuthor)
          Music tAuthor = null;
          boolean found = false;
          Iterator it = iList.iterator();
          while (it.hasNext() && !found)
               tAuthor = (Music) it.next();
               found = tAuthor.getAuthor().equalsIgnoreCase(pAuthor);
          if(!found) tAuthor=null;
          return tAuthor;
        public Music findPublisher(String pPublisher)
          Music tPub = null;
          boolean found = false;
          Iterator it = iList.iterator();
          while (it.hasNext() && !found)
               tPub = (Music) it.next();
               found = tPub.getPublisher().equalsIgnoreCase(pPublisher);
          if(!found) tPub=null;
          return tPub;
     public String toString()
          return "Music List = " + iList.toString();
}Thanks,
Rob.

Similar Messages

  • PDF Opening in Adobe reader with previous/next buttons always showing

    Is there any way to make it so when a specific pdf is opened in Adobe Reader, it always opens with the previous and next buttons showing, regardless of the user's settings?
    Thanks in advance.

    No.

  • Problem with Showing Next Button in Advanced Action

    I'm having problem using advanced actions (using Captivate 5.5) to show the next button after the user clicks three other buttons on the page.  I followed the directions here: http://blogs.adobe.com/captivate/2011/11/enabling-forced-navigation-for-your-interactive-s creens-in-adobe-captivate-5-5.html and also here: http://forums.adobe.com/message/4046433#4046433, although obviously not accurately.  Here are some screen shots to show what I've done. 
    From the slide properties panel
    The SSB_Completion Action
    The Scope Action (the schedule and budget actions follow the same format)
    And the slide timeline
    Thanks for any help - I'm about ready to pull my hair out with this.
    Debbie

    The check, conditional action is triggered on entering which slide? If it is the same slide as where the buttons with the standard actions sit, this condition will never result in True.
    I just answered a similar question in this thread:
    http://forums.adobe.com/message/4454104#4454104
    I think the best way is to have your present SSB.... action integrated in the different actions triggered by the buttons. Or is this not what you want: to have the Next button appear at the moment that the three other buttons have been clicked?
    Lilybiri

  • Problem navigating article with prev next buttons

    I place a next and previous button to navigate between pages in the same article using gotonextpage but it stops working after a few times navigating the article. I tried with navto://article# but it did not worked either

    You might have run across an intermittent page link bug in the Adobe Content Viewer. This bug was addressed in a recent hot fix. If you build a custom app (or a new Content Viewer), the issue should be resolved. Or, wait until the viewer is updated in the store.

  • I can't remove Yandex Elements from the Open menu list with right mouse button and Tools menu although I removed Yandex. I think it slows down Firefox.

    I downloaded Freeyoutube downloader from internet and somehow got yandex installed in my computer with toolbars on firefox.Despite I removed Yandex from my computer Yandex elements still stays in open menu when right mouse button clicked and in the Tools menu. I tried to uninstall Firefox, remove yandex registry from windows registry and restart computer, and then reinstall firefox, Yandex elements still hangs there. Firefox is now running very slow compared to the running before Yandex.

    hello, please try all these steps:
    # [[Reset Firefox – easily fix most problems|reset firefox]] (this will keep your bookmarks and passwords)
    # afterwards go to the firefox menu [[Image:New Fx Menu]] > addons > extensions and in case there are still extensions listed there, disable them.
    # finally run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] and [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] to make sure that adware isn't present in other places of your system as well.
    [[Troubleshoot Firefox issues caused by malware]]

  • Could not work next button.

    Hey All!
    I'm now working with j2me for Nokia. And for this I'm using a third party named Jmobilecore.
    Its nice to use.. but I'm now facing a problem to show the next page as with softKey(Next Button) action.
    this works for the second part not for the first part.. to work this I've to press key Up or down after Next button.
    My code snippet is given below:
    * AddSurveyUI.java
    * Created on March 29, 2009, 2:20 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package com.bxpress.mid.ui;
    import com.jmobilecore.ui.core.Label;
    import com.jmobilecore.ui.core.List;
    import com.jmobilecore.ui.core.ListComponent;
    import com.jmobilecore.ui.core.ListLabel;
    import com.jmobilecore.ui.core.ListScreen;
    import com.jmobilecore.ui.core.SoftKey;
    * @author ronu
    public class AddSurveyUI extends ListScreen {
    List list;
    private String[] mediaType = {"TV", "Radio", "Other"};
    String[] subMediaList;
    public String item = "";
    static AddSurveyUI addSurvey;
    ListComponent listComponent;
    EntryInfoUI entryInfoUI;
    int mediaId = 0;
    int state;
    public SoftKey next_Btn = new SoftKey(Localization.CC_NEXT_LBL) {
    public void performAction() {
    getMediaNameList();
    if(mediaId !=0){
    refresh();
    state = 1;
    makeServeyUI(subMediaList);
    }else if(mediaId == 0){
    state = 0;
    entryInfoUI.showTransactionTable(Localization.NINTH_FORM_IDENTIFIER);
    public SoftKey back_Btn = new SoftKey(Localization.CC_BACK_LBL) {
    public void performAction() {
    if(state == 0) {
    refresh();
    entryInfoUI.goNext(Localization.NINTH_FORM_IDENTIFIER);
    }else if(state == 1){
    BXpress_Keya_2nd_Phase.mydisplay.setCurrent(BXpress_Keya_2nd_Phase.startPage);
    /** Creates a new instance of AddSurveyUI */
    public AddSurveyUI(String title) {
    super(Label.createTitleLabel(title));
    this.state = 0;
    entryInfoUI = EntryInfoUI.getInstance();
    System.out.println("In AddSurveyUI:::: ");
    makeServeyUI(mediaType);
    public static AddSurveyUI getInstance() {
    try {
    if(addSurvey == null) {
    addSurvey = new AddSurveyUI("BXpress");
    return addSurvey;
    catch(Exception exp) {
    exp.printStackTrace();
    return null;
    private void makeServeyUI(String[] mediaList) {
    try {
    System.out.println("In makeServeyUI:::: " + mediaList.length);
    for (int i = 0; i < mediaList.length; i++) {
    this.add(new ListLabel(mediaList));
    softKeyBar.setSoftKey(this.next_Btn, SoftKey.RIGHT);
    softKeyBar.setSoftKey(this.back_Btn, SoftKey.LEFT);
    } catch(Exception ex) {
    ex.printStackTrace();
    private String[] getMediaNameList() {
    item = getListItem();
    System.out.println("In getMediaNameList:::: " + item);
    if(item.equals("TV")) {
    mediaId = 2;
    subMediaList = new String[]{"NTV", "RTV", "CHANNELI"};
    } else if(item.equals("Radio")) {
    mediaId = 3;
    subMediaList = new String[]{"Radio Abc", "Radio Furti", "Radio Today"};
    } else if(item.equals("Other")) {
    mediaId =4;
    subMediaList = new String[]{"Internet", "NewsPaper", "Others"};
    } else {
    mediaId = 0;
    subMediaList = mediaType;
    return subMediaList;
    private String getListItem() {
    System.out.println("in getListItem::::");
    listComponent = getFocusedComponent();
    String str = listComponent.getText();
    return str;
    public void refresh() {       
    this.removeAll();
    Can any body pls help me about my step to taken to out this problem???

    See here: http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipod
    Be sure to choose China as your country though from the drop down list.
    B-rock

  • Using Next Button To Go From Track To Track?

    I'm working on a concert DVD. The show has two sets. The content was edited elsewhere and I'm doing the authoring only. They send the first and second sets as two separate files MPEG files (with matching audio). No biggie for my authoring accept this...
    If a user is using the next and back buttons to go from song to song, how can I make the next button go to the first marker of the next track from the last marker of the last track? In other words, how can one navigate from the last song of set 1 to the first song of set 2 with the next button considering they're on separate tracks? Right now it simply doesn't do anything when pressing next during the final song of the first set.
    I normally put both sets into one file but I'm stuck with two files here.

    I've found the marker in the advanced connection tab but not sure how to direct it.
    Its not the Marker you need to Direct its the Track. If you select Track 1 in Graphical View or the Outline Tab. Then go to the Connections Tab>Advanced View. You can set the Next Jump option for the Track. Then you can set the Prev Jump option for Track 2 by selecting it and heading back to the Connections tab.
    Look-up sequential-PGCs (PGC = Program Chain) and Multi-PGCs. You may need to google as its spec stuff and you wont find that level of info in the dvdsp manual probably. You might want to search the discussions too... not sure it's come up before.
    -Jake

  • Next button problems DVD studio pro

    I'm having a problem with navigation on a project, specifically the next button navigation.
    I have a dual layer disc with 7 20 minute shows. Track 1 = show 1, etc. Play All button leads to Track 1. End jump of Track 1 is set to Track 2 and so on until the last show the end jump is set back to menu 1. Each track has 4 chapter markers.If I just sit back and let it play through it plays perfectly (on disc and simulator).  When I hit the next button in the simulator it advances to the next chapter as it should except that at the last chapter marker for each track it does not advance, instead playing through a 12 second credit sequence before jumping to the next track. However when I burn the DVD and hit next at the last chapter marker it goes back to the beginning of that individual show, I can then  hit next to go through the chapters again, and the second time through it will jump to the next track on the disc as it should. This happens for every track.
    Similar problem for Menu 2, buttons for individual shows lead to Stories for each track with the end jump going back to Menu 2. It works fine if I just let it play through. However when navigating with the next button it plays as above in the simulator (does not skip credits) but then goes back to Menu 2. On disc however it will either jump back to the beginning of the same track or to a different track, sometimes sequential, sometimes not.
    Seems like I'm missing something simple but I've been through the manual and searched through the inspector for any kind of controls and can't find anything that applies. Anybody have any idea what area I should be looking in? I suppose one answer would be to burn everything as one single track and then do stories for the individual shows, but is there away to make this work?
    This is my first dual layer disc, don't know if that is causing issues. Jump point is set manually 4.2G into the project, OTO, not seamless, at a black spot in show 5. It seems to be working fine, don't know if this has anything to do with the navigation problems.
    Thanks all

    I'd put all 7 onto 1 track.  Then use stories to build the disc.   Way less complicated and easier for you (and the DVD player) to know what is going on.
    This way you can set it where Story 1 Plays just the first Show and then goes back to the menu.  The way you are trying to set it up now it would play the next show automatically (you may want it to do this, I don't know)  but with stories you can have each show play and the go back to the menu (or continue playing the next one).  Then on your play all button you point to a story that includes everything. (Or just point it to the 1 track that has everything on it already)

  • Problem with Back and Next Buttons: a solution?

    Hello,
    It is well known that including the Back and/or Next buttons in Captivate quiz questions presents real problems. I have come up with what I think to be a solution. It should allow one to include both Back and Next buttons, if one wants to do this. It involves doing the following:
    With Question 1, do not include a Back button. (This is so that the quiz-taker cannot get out of the quiz scope in the forward direction.)
    Create this advanced action: If cpQuizInfoTotalUnansweredQuestions = 0, then Go To The Next Slide (i.e. the results slide); Else Continue.
    Insert a slide after the final question (and before the results slide). On this slide, include the following:
    A message to this effect: ‘You have not answered all of the questions. Please go back and complete all of them.’
    A button labeled ‘Return to Questions’ (on success: Jump to slide with Question 1). But include no other buttons. That is, if the quiz-takers lands up on this slide, he or she has only this option.
    On Enter (i.e. on entering the slide being described here), Execute Advanced Action =  the advanced action described in Item 2 above.
    Now for something odd. Before the slide described in Item 3, insert a slide with a Text Caption with variable $$cpQuizInfoTotalUnansweredQuestions$$. Keep the slide as brief as possible (something like 0.5 sec.) and make the text of the Text Caption invisible. And why all this? Because I found that, without it, problems arose quite regularly. If one or more questions were not answered, the quiz-taker would come, as expected, to the slide described in Item 3 above. The quiz-taker would then go back to complete the unanswered questions. But then—sometimes—the Item 3 slide would still appear, even though all the questions were answered! The quiz-taker would return once again to the questions (since this is the only option available), only to find that now none of the questions were answered! And at this point, there was no escape: the Item 3 slide would always appear no matter what one did. Why should inserting the additional slide described in the present item solve the problem? I don’t know. All I can say is that (1) without it, the problem arises often (though not always), and (2) with it, the problem hasn’t occurred yet, even though I’ve done lots of testing.
    Final note. It will be clear that this solution is meant to be used together with the option Allow Backward Movement. Will the solution work with Branch Aware? I don’t know yet. Will it work with Question Pools? Again, I don’t know yet. I’ve only done a bit of testing in both cases. The results thus far indicate that at least one of these options presents real problems. Both might.
    I’m still testing this solution (or what I hope is a solution). If anyone else wants to try it, I’d be interested in hearing how it goes.
    Best regards,
    Marvin DuBois

    Dear Lilybiri,
    Thank you for your response.
    1. 'I don't get it why you don't use the Submit All option?'
    Submit All is fine in some cases. But it limits the options: the quiz-taker does not get immediate (question-by-question) feedback. So where immediate feedback is wanted, the Submit All option presents problems.
    2. "Why do you need a Back button . . . ?'
    a. The Back button is needed during Review. Otherwise, the quiz-taker can only review in one direction.
    b. In some quizzes, the quiz-taker should be free to go back, whether to check earlier question slides (since the questions and/or responses can be relevant for the current question) or to re-read/re-hear information slides inserted between question slides.
    But the more general issue is this. The Cp Back and Next buttons provide us with possibilities, with further options. Workarounds are available, such as not allowing backward movement and placing a Clear button over Next. But these workarounds limit the possiblities, i.e. the possibilities that are there—i.e. that Adobe puts there. It's not that we always need these possibliities. But neither should we be hindered from using them if we so choose—and especially when we would be hindered simply because Cp doesn't work as well as it should.
    Kind regards,
    Marvin

  • Edit a list  with "button list" template to limit the no: of list entries

    Hi Friends,
    I am having a list with "button list" template. But this list is having a large number of list entries. I am trying
    to limit the list entries shown in a page. For example display first '6' list entries and at the end of the 8th list entry
    having a "Next" or ">" and when pressing it show the next '6' list entries and so on. Is there any way to do this.
    Please help,
    Thanks,
    Tj

    With each line that you are writing out, you will have to add two additional fields, one for line number and another for page number.
    You will move sy-linno and sy-pagno to these fields respectively and modify the record.
    Then you will use the READ LINE itab-linno OF PAGE itab-pagno.
    Srinivas

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge.
    I am using  the edge commons JS library to load multiple compositions into a main composition.
    You can see how this works here: Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    The way the edge commons tutorial is set up requires a button for each composition i want to load. I am interested in loading multiple compositions with a "next" and "back" button, and a "swipe left, "swipe right" gesture on the content symbol that each composition is loaded into. I also need the swipe features on the content symbol not to interfere with the interactive elements on the loaded composition.
    Please suggest a solution that will work without adding additional scripts beyond edge commons and jquery.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • How do I change multiple list items at once in a SharePoint list with ribbon button

    Hi
    I have a sharepoint list and a ribbon button that open a dialog box with buttons to set color on a row
    The problem is that i can only selecet one item at once to set the color. 
    How can i do so it could set all or a couple items att once to the color i want 
    I want to do this with javascript
    here is the code i use to get the item id and the color code is in a seperate js file
    'use strict';
    var clientContext, hostweburl, parentContext, parentWeb, selectedItem, itemId, listId;
    clientContext = new SP.ClientContext.get_current();
    hostweburl = decodeURIComponent(getQueryStringParameter("SPHostUrl"));
    listId = decodeURIComponent(getQueryStringParameter("SPListId"));
    itemId = decodeURIComponent(getQueryStringParameter("SPListItemId"));
    parentContext = new SP.AppContextSite(clientContext, hostweburl);
    parentWeb = parentContext.get_web();
    selectedItem = parentWeb.get_lists().getById(listId).getItemById(itemId);
    $(document).ready(function () {
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(OnSuccess, OnFail);
    function OnSuccess() {
    $("#Blue").click(function () {
    selectedItem.set_item('Color', 'Blue');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Green").click(function () {
    selectedItem.set_item('Color', 'Green');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Red").click(function () {
    selectedItem.set_item('Color', 'Red');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });
    $("#Transparent").click(function () {
    selectedItem.set_item('Color', 'No Color');
    selectedItem.update();
    clientContext.load(selectedItem);
    clientContext.executeQueryAsync(function () { window.parent.postMessage('CloseCustomActionDialogRefresh', '*'); }, function (sender, args) { alert('Error:' + args.get_message()); });

    Check if below can help you
    http://sp2010batchedit.codeplex.com/
    http://sharepoint.stackexchange.com/questions/35935/use-view-ribbon-custom-action-on-multiple-list-items
    http://webcache.googleusercontent.com/search?q=cache:XqMO-PRLHQIJ:dannyjessee.com/blog/index.php/2014/06/enabling-custom-ribbon-buttons-dynamically-based-on-multiple-selected-item-values-using-refreshcommandui-and-jsom/+&cd=1&hl=en&ct=clnk&gl=in
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="DannyJessee.TestCustomAction"
    Location="CommandUI.Ribbon"
    RegistrationId="100"
    RegistrationType="List">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListItem.Actions.Controls._children">
    <Button Id="DannyJessee.MarkItemsFinishedButton"
    Command="cmdMarkItemsFinished"
    Image16by16="/_layouts/images/kpinormallarge-0.gif"
    Image32by32="/_layouts/images/kpinormallarge-0.gif"
    LabelText="Mark as Finished"
    TemplateAlias="o2" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="cmdMarkItemsFinished"
    CommandAction="javascript:MarkItemsFinished();"
    EnabledScript="javascript:EnableFinishedButton();">
    </CommandUIHandler>
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    <CustomAction Id="DannyJessee.TestScript"
    Location="ScriptLink"
    ScriptSrc="/_layouts/15/CustomRibbonButton/CustomAction.js" />
    </Elements>
    If this helped you resolve your issue, please mark it Answered

  • Tried purchasing iTunes music. Put in my apple id and password then i was directed to a 'Terms and Conditions' page. I checked the box then clicked the 'accept' button next page read 'your Session has timed out '  try again  with a Done button to click on

    Tried purchasing music from the iTunes Store. When the window popped up I put in my apple id and password. Then I was directed to a 'Terms and Conditions' page. I checked the box next to the 'Yes I agree to these terms and conditions' - then clicked the 'accept' button next page read 'Your Session has timed out. Try again.'  with a 'Done' button to click on. Oh the same thing happens when i try to download  free iTunes. Yes I have tried & tried it again I even logged off and singed back in-- no joy 
    After accessing my iTunes account I was not able to change anything like my credit card number when I tried and was sent right to the 'Your session has timed out. Try again.'
    The last time I purchased any anything was on September 25th 2011 and the 'terms & conditions' page was last updated on October 12, 2011
    Does anyone have an idea to what is going on with my iTunes version 9.2.1 (5) and I can not upgrade to a higher version my iMac does not have the intel processor chip.Thank you for your time and help with this matter. You are greatly appreciated 

    I am having the same problem also! I posted on here about it, but no one has responded with ideas. I called technical support and e-mailed them, the only suggestions they gave was for the to turn off my firewall. But I didn't change anything, so it shouldn't suddenly stop working. Maybe this is just an iTunes issue? But it doesn't even recognize my account anymore, and I cannot log in now.
    If you happen to get an answer, will you please let me know what works for you?
    Thanks!

  • How can I create a "Next" button with Insert database action

    Hello,
         I want to create a "Next" button that will redirect to another page and at the same time to do an INSERT database action. I've searched on google but I didn't find nothing specific that could help me.
    Below are some screenshots:
    http://imagizer.imageshack.us/v2/800x600q90/22/2yqj.jpg
    http://imagizer.imageshack.us/v2/800x600q90/585/wbn6.jpg
         Thanks.

    DO NOT USE THIS CODE !!!!
    Declare 
      -- Added by ramani 20-feb-2013 
       Seq_Val_ Number; 
    begin 
        if  :P17_NWM_DOC_NO  is null  then 
           Select Nvl(count(NWM_DOC_NO),0) + 1  -- THIS IS VERY VERY WRONG !!! REPLACE WITH A SEQUENCE !!!!!!!!!!!!!!
            into Seq_Val_ 
            from  DMS_NEW_MASTER; 
           -- ref number 
            return  Seq_Val_ ; 
            --summa oru elsif irukku 
           end if;  
    end; 

  • The sound doesn't work.  It's set appropriately in settings, the volume is turned up all the way with the side buttons, but no volume.  When we try to play songs, it acts like it's going to play and then goes back to the play list.  Restored and still no

    It's set appropriately in settings, the volume is turned up all the way with the side buttons, but no volume.  When we try to play songs, it acts like it's going to play and then goes back to the play list.  Restored the device and still no sound.

    Try A and B
    (A) Restart iPad
    1. Hold down the Sleep/Wake button until the red slider appears.
    2. Drag the slider to turn off iPad.
    3. Turn iPad back on, hold down the Sleep/Wake until the Apple logo appears
    (B) Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

Maybe you are looking for

  • Help, where are the render preferences in Adobe Photoshop CS6

    Okay, I admitt, .... I am an idiot that is new to Adobe Photoshop. But help the new girl out, here.... Please... Where are the render preferences in Adobe Photoshop Extended CS6. I searched Adobe Help in Dutch already but they point me towards option

  • Errant question mark.

    On one of my sites I have a very simple page http://www.cydelia.org.au/Management.htm), which is supposed to display the following lines: "For further information contact the Secretary at: [email protected]" the code to do this is: <p>For further inf

  • Access Restrictions bug of firmware 1.01.1 for WRT54G V5 V6

    I am using WRT54G V5. The Access Restrictions function won't work properly when using firmwares 1.01.1 and 1.01.0. Ports can't be blocked by using the "Blocked Services" in this function. Now I have to switch back to 1.00.9 to make the port blocking

  • Table Field missing in ECC6.0 compare with 4.6C

    Hi Gurus During copying a Z Report i getting the following error ie) the field A906-MATNR not avaialable in the newer version I checked the table, that field not avaialble in A906 in ECC6.0 Which table i can use K.Prabakaran

  • What is use of TRANSPORTING

    Hi  to all , Please can any body tell me purpose of  TRANSPORTING , what does it do and why we use it with any example . Regards Pavneet Rana