Slideshow songs not repeating

I've created a slideshow that uses one song that is set to repeat.
When I play it through iPhoto, the song repeats properly. However, when I export it to Quicktime or iDVD, the song plays once, leaving the second half of the slideshow with no music.
Any thoughts?

Hmm, deleted the event, and recreated it this morning and everything seems to be working (I had originally noticied the issue yesterday). Must have been a bug that was fixed.

Similar Messages

  • IOS 4.2.1, first song will not repeat

    Every since I updated to 4.2.1, the first song does not repeat even though it is fixed to repeat itself. When it is done playing, it goes to the next song and this is where the Repeat setting works or any song after that.
    It happens whenever I reconnect either the earphone or the car's audio jack.
    Has anyone had any experience on this: first song does not repeat?
    Thanks.

    tjology wrote:
    I'm also experiencing this problem, even if it's the only song on your playlist, it'll just stop after one play even though it's on repeat
    Don't remember experiencing this in other iOS versions.
    Neither have I. I think there is an issue with the phone's Playlist and playback controls in general since 4.2.1.

  • Help Please!  I've created a slideshow in iPhoto 09 and the first song just repeats 50 seconds into it.  How do I get the song to continue?

    I've created a slideshow in iPhoto 09 and the first song just repeats 50 seconds into it.  How do I get the song to continue?

    With iPhoto open click Help from the iPhoto menu bar top of your screen. From the drop down menu click iPhoto Help.
    Type slideshow music  in the search field top right corner of that window.
    You should see:   To add music to a slideshow    instructions.

  • Repeat a song not using iTunes

    hey- i am having trouble with my battery life and the help center recommended that i try my own battery test; they told me to charge it and such, but to also just put a song on repeat and see how long the ipod lasts... but i have no idea how to repeat a song by not using iTunes and by using only my iPod nano...
    All help will be appreciated!
    Thanks
    wytod

    Welcome to Apple Discussions!
    On your iPod go to settings-->repeat-->all (or once)
    Are these the instructions you are using? If not, this is the best way to test the battery...
    How To Determine Your iPods Battery Life
    Also, here are some more helpful links on battery life...
    Tips And Tricks For iPod Battery
    iPod Battery Unplugged
    Caring For iPod Battery
    About the iPod Battery
    btabz

  • Fox news slideshows are not working in Vista Home 64 bit.

    All fox news slideshows are not working since firefox 3.6 started. I can't get them to work in Internet explorer either.
    == URL of affected sites ==
    http://

    Error: $.ad is undefined
    Source File: http://www.foxnews.com/static/all/js/slideshows-pack.js
    Line: 850
    // Slideshows - updated: 04/30/2010
    // Dependencies: jQuery, jfoxCarousel plugin
    (function($){
    function SlideShows() {
    this._data = {}; // slideshow data
    this._info = {}; // current slideshow info
    this._relatedMedia = {}; // related media data
    this._trackData = false;
    this.initialized = false;
    this.toolTipId = "carousel-tooltip";
    this.defaultTrackFrequency = 1; // tracker trigger
    this._preloaderSrc = "/static/all/img/slideshow/slideshow-preloader.gif";
    this._timer = { // timers
    main: { fadeIn:800 },
    carousel: { fadeIn:300 },
    overlay: { onLast:10000,fadeIn:300,fadeOut:300 }
    this.currentFocus = 1; // current item in focus
    this.holderObj = {}; // holder for elements
    this.hashObj = {}; // hash location holder
    this.imgPreloadObj = {}; // holder for preloaded images
    // carousel object controllers
    this.carouselControlObj = {};
    this.overlayControlObj = {};
    this.trigger = { // listeners
    main: false,
    carousel: false,
    overlay: false
    this.overlayTimeout = false; // overlay timeout holder
    SlideShows.prototype = {
    init: function(config) {
    for (i in config) { this['_'+i] = config[i]; }
    this.main.root = this.carousel.root = this.overlay.root = this;
    this.hashObj = this.helper.getHash();
    if (typeof $.fn.jfoxCarousel<u>'undefined') {
    showToConsole("[init] Error: carousel plugin not found!");
    if (this._trackData) { // set tracking data
    sTracker.set(this._trackData);
    sTracker.track("pageLoad"); // page load tracker
    this.preload();
    this.setHolders();
    this.initialized = true;
    preload: function() {
    var preloadImg = new Image();
    preloadImg.src = this.preloadSrc;
    setHolders: function() {
    var SH = this;
    var slideshowElm = $("#slideshow");
    this.holderObj = {
    doc: $(document),
    body: $("body"),
    intro: $("#section-intro"),
    main: slideshowElm.find("#main-img"),
    mainHolder: slideshowElm.find(".slideshow-placeholder"),
    mainControl: slideshowElm.find(".slideshow-controller"),
    description: slideshowElm.find(".slideshow-desc"),
    relatedMedia: slideshowElm.find(".slideshow-related"),
    carousel: slideshowElm.find(".slideshow-feature .slideshow")
    this.holderObj.intro.each(function(){
    var intro = $(this);
    intro.find("h1:first").html(SH._info.title);
    intro.find("p:first").html(SH._info.dek);
    if (this.holderObj.main.size()>0) {
    this.main.properties.minHeight = this.holderObj.mainHolder.innerHeight(); // get set height as "min-height"
    this.main.build();
    if (this.holderObj.carousel.size()>0) {
    this.carousel.build();
    $(document).ready(function(){ // wait for page load for the overlay
    SH.holderObj.overlay = $("#slideshow-overlay");
    var set = (SH.holderObj.overlay.size()>0) ? (typeof $.fn.jfoxCarousel!=='undefined') ? SH.overlay.set() : false : false;
    SH.setDocReadyListeners();
    this.setListeners();
    setListeners: function() {
    var SH = this;
    var control = this.holderObj.mainControl;
    // main image controls
    control.find(".prev").click(function(){
    SH.main.prev();
    return false;
    control.find(".next").click(function(){
    SH.main.next();
    return false;
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: SH.holderObj.mainHolder,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    control.find(".next").trigger("click");
    if (directions.indexOf("right")>-1) {
    control.find(".prev").trigger("click");
    touchEventListener.append(listenerConfig);
    setDocReadyListeners: function() {
    var SH = this;
    // browse slideshow overlay
    $(document).ready(function(){
    $("#section-intro .additional-slides a").click(function() {
    SH.overlay.show();
    return false;
    SH.holderObj.overlay.find(".close a").click(function(){
    SH.overlay.hide();
    return false;
    replaySlideshow: function() {
    var SH = this;
    //TODO: build replay
    this.overlay.hide(); // hide overlay
    this.main.build(this.currentFocus = 1); // reset focus
    sTracker.track("replaySlideshow");
    // main image holder
    SlideShows.prototype.main = {
    properties: {},
    build: function(slide,origin) {
    var SH = this;
    var root = this.root;
    if (root.trigger.main) { return false; }
    root.trigger.main = true;
    slide = slide || false;
    origin = origin || "main";
    var control = root.holderObj.mainControl;
    var data = root._data;
    var initData = false;
    var desc = [];
    var helper = root.helper;
    if (slide) {
    if (slide 0) { desc.push('Source: ' + data.items[slide].source + ''); }
    root.holderObj.description.html(desc.join(""));
    // load related media
    if (root._relatedMedia.items) {
    var rmItems = root._relatedMedia.items;
    if (rmItems.length>0) {
    var rel = [];
    rel.push('Related Articles');
    for (var x=0; x 0) {
    root.currentFocus--;
    SH.build(root.currentFocus);
    sTracker.track("clickPrevMain"); // tracker
    if (!SH.isLast() && root.overlayTimeout) { clearTimeout(root.overlayTimeout); } // clear overlay timeout
    isLast: function() {
    var root = this.root;
    return (root.currentFocus+1 > root._data.items.length) ? true : false;
    // carousel
    SlideShows.prototype.carousel = {
    build: function() {
    var SH = this;
    var root = this.root;
    var carousel = root.holderObj.carousel;
    var data = root._data;
    var list = [];
    for (var x=0;x 0) {
    var li = $(".slideshow > ul",carousel).children();
    li.each(function(i){
    var el = $(this);
    var setClass = (i == eventObj.target-1) ? el.addClass("active") : el.removeClass("active");
    controlsCallback: function(control) { // callback to set up controls
    root.carouselControlObj = control;
    carousel.find(".prev").click(function(){ // previous link
    control.stopAutoScroll();
    control.slide('prev');
    sTracker.track("clickPrevCarousel"); // tracker
    return false;
    carousel.find(".next").click(function(){ // next link
    // show overlay on last carousel link
    //var lastLink = (!currentEventObj) ? false : (currentEventObj.batch.current+1 > currentEventObj.batch.max) ? $(document).ready(function(){ root.overlay.show(false,true); }) : false;
    control.stopAutoScroll();
    control.slide('next');
    sTracker.track("clickNextCarousel"); // tracker
    return false;
    carousel.jfoxCarousel(config);
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: carousel,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    carousel.find(".next").click();
    if (directions.indexOf("right")>-1) {
    carousel.find(".prev").click();
    touchEventListener.append(listenerConfig);
    // overlay
    SlideShows.prototype.overlay = {
    set: function() {
    var root = this.root;
    var overlay = root.holderObj.overlay;
    overlay.find(".slideshow-feature").each(function(){
    var carousel = $(this);
    var allItems = carousel.find(".slideshow ul").children().children();
    allItems.each(function(){
    var div = $(this);
    var link = div.find("a:first").attr("href");
    div.hover(function(){
    div.css("cursor","pointer");
    },function(){
    div.css("cursor","");
    }).unbind("click").click(function(){
    window.location.replace(window.location.hostname + link);
    var config = {
    auto: { set:false,speed:3000 }, // auto scroll
    slide: "horizontal", // horizontal or vertical
    scroll: 3, // number of items to scroll per event
    show: 3, // items shown
    speed: "slow", // scroll speed
    rotate: false, // rotate back to star if end
    //focus: { item:0,animate:false }, // focus to target item on load
    eventCallback: function(eventObj) {
    if (eventObj.batch.current</u>1) {
    carousel.find(".prev").addClass("inactive");
    } else {
    carousel.find(".prev").removeClass("inactive");
    if (eventObj.batch.current<u>eventObj.batch.max) {
    carousel.find(".next").addClass("inactive");
    } else {
    carousel.find(".next").removeClass("inactive");
    controlsCallback: function(control) { // callback to set up controls
    root.overlayControlObj = control;
    carousel.find(".prev").click(function(){ // previous link
    control.stopAutoScroll();
    control.slide('prev');
    sTracker.track("clickPrevOverlay"); // tracker
    return false;
    carousel.find(".next").click(function(){ // next link
    control.stopAutoScroll();
    control.slide('next');
    sTracker.track("clickNextOverlay"); // tracker
    return false;
    carousel.jfoxCarousel(config);
    if (typeof touchEventListener!=="undefined") {
    var listenerConfig = {
    elm: carousel,
    moveSensitivity: 15,
    eventsCallback: {
    touchmoveMoveOnce: function(direction,moveProperties,rawEvent) {
    // move callback - sensitivity
    var directions = direction.join("|");
    if (directions.indexOf("left")>-1) {
    carousel.find(".next").click();
    if (directions.indexOf("right")>-1) {
    carousel.find(".prev").click();
    touchEventListener.append(listenerConfig);
    show: function(delay,isReplay) {
    isReplay = isReplay || false;
    delay = delay || false;
    var root = this.root;
    if (root.trigger.overlay) { return false; } // if already open
    var SH = this;
    delay = (isNaN(delay)) ? 0 : delay; // delayed show
    root.overlayTimeout = setTimeout(function(){
    SH.setReplay(isReplay);
    if (root.main.isLast()) {
    root.holderObj.overlay.fadeIn(root._timer.overlay.fadeIn,function(){ root.trigger.overlay = true; });
    sTracker.track("showOverlay"); // tracker
    else {
    root.holderObj.overlay.fadeIn(function(){ root.trigger.overlay = true; });
    },delay);
    hide: function(delay) {
    delay = delay || false;
    var root = this.root;
    if (!root.trigger.overlay) { return false; } // if already closed
    delay = (isNaN(delay)) ? 0 : delay; // delayed hide
    setTimeout(function(){
    root.holderObj.overlay.fadeOut(root._timer.overlay.fadeOut,function(){ root.trigger.overlay = false; });
    sTracker.track("hideOverlay"); // tracker
    },delay);
    setReplay: function(isReplay) {
    var root = this.root;
    var overlay = root.holderObj.overlay;
    var firstList = overlay.find(".slideshow-feature .slideshow ul").children().filter(":first");
    var divs = firstList.children();
    var replayDiv = divs.filter(":first");
    var cloneDiv = replayDiv.next();
    function configInfo(elm) {
    var currentSS = root._data.items;
    var info = root._info;
    var count = currentSS.length;
    var first = currentSS[0];
    var slideshowTitle = (info.title.length > 16) ? info.title.substring(0,16) + "..." : info.title;
    var slideshowImg = first.media.tm;
    var slideshowDate = info.title.date;
    function replay() {
    root.replaySlideshow();
    var items = elm.children();
    items.filter("p.photo-count").html(count + " image" + [[count>1) ? "s" : ""]];
    items.filter("p.date").html(slideshowDate);
    items.filter("p.photo").each(function(){
    var item = $(this);
    item.find("a").attr({ href: "#", title: slideshowTitle });
    item.find("img").attr({ alt: slideshowTitle, src: slideshowImg });
    items.filter("h4").each(function(){
    var item = $(this);
    item.find("a").attr("href","#").html(slideshowTitle);
    items.find("a").unbind("click").click(function(){
    replay();
    return false;
    elm.hover(function(){
    elm.css("cursor","pointer");
    },function(){
    elm.css("cursor","");
    }).unbind("click").click(function(){
    replay();
    return false;
    if (replayDiv.children().size()</u>0) {
    replayDiv.html(cloneDiv.html());
    configInfo(replayDiv);
    if (isReplay) {
    replayDiv.addClass("active").show();
    cloneDiv.hide();
    } else {
    replayDiv.hide();
    cloneDiv.show();
    SlideShows.prototype.helper = {
    toNum: function(item) {
    item = (isNaN(item)) ? parseInt(item.replace(/[a-zA-z]/gi,""),10) : item;
    return isNaN(item)?0:item;
    imgLoad: function(obj,fn) {
    var SH = this;
    obj.alt = obj.alt || "";
    if (obj.preload && !$.browser.opera) { // opera =/= img.onload
    if (obj.mainHolder) { obj.mainHolder.css({ background:"url("+obj.preloaderSrc+") no-repeat center" }); }
    var img = new Image();
    obj.holder.css({ display:"inline", opacity:"0" });
    img.onload = function() {
    if (obj.outer) {
    if (img.height > SH.toNum(obj.outer.minHeight)) { obj.outer.holder.css("height","auto"); }
    else { obj.outer.holder.css("height",obj.outer.minHeight); }
    obj.holder.attr("src",obj.src).animate({ opacity:"1"},obj.speed,"linear",function(){
    if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
    $(this).attr("alt",obj.alt);
    fn();
    img.src = obj.src;
    } else {
    if (obj.mainHolder) { obj.mainHolder.css({ backgroundImage:"none" }); }
    obj.holder.css({ display:"inline", opacity:"0" });
    obj.holder.attr({
    src: obj.src,
    alt: obj.alt
    }).animate({ opacity:"1"},obj.speed,"linear",function(){ fn(); });
    getHash: function() {
    var hash = (window.location.hash).substr(1);
    if (hash) {
    var pairs = hash.split('&');
    var valuePair = {};
    for (var x=0;x 1 && callback && count%freq<u>0) {
    callback(data);
    var sTracker = new Trackers(); // private
    function showToConsole(str) {
    if (typeof window.console</u>'object') { console.log(str); }
    var slideShowsPack = window.slideShowsPack = new SlideShows();
    })(jQuery);
    // Tracking Data Here
    var trackData = {
    ads: {
    buildSlide: {
    frequency: 1,
    callback: function() {
    $(document).ready(function(){
    if (typeof $.ad.dc.load!=="undefined") {
    $.ad.dc.load();
    omni: {
    buildSlide: {
    frequency: 1,
    callback: function(data) {
    data = data || false;
    if (!data) { return false; }
    if (!data.slideNumber) { return false; }
    if (typeof $.ad.omni.load!=="undefined") {
    $.ad.omni.load({ "slide": data.slideNumber });
    var initializeSlideShow = window.initializeSlideshow = function() {
    if (typeof slideshowData!=="undefined") {
    if (!slideShowsPack.initialized) {
    slideShowsPack.init({
    data: slideshowData,
    info: slideshowInfo,
    relatedMedia: relatedsData,
    trackData: trackData
    } else {
    if (typeof window.console==='object') { console.log("[error] No Data found for: slideshowData"); }
    This the line highlighted:
    if (typeof $.ad.dc.load!=="undefined") {

  • HT5622 I had to change my iTunes password. Now, when I try to download a song, it repeatedly asks me for my password. This is frustrating! Can anyone tell me what I can do about this??

    I had to change my iTunes password. Now, when I try to buy a song, it repeatedly asks me for the password and doesn't seem to register it and go to the next step. It's becoming very frustrating. And, equally, if not more frustrating, is the fact that there is no simple way to contact Apple to find out how to fix the problem. I hope someone here has the solution.
    Thank you!

    After you changed the PW did you go to Settings>iTunes and App stores and sign out and sign back in?

  • Songs not playing sequentailly

    After installing iTunes 5 upgrade, I cannot play songs sequentially, repeat songs or repeat all songs in a play list. The repeat button has not affect at all. Anyone have any idea what is wrong?
    Thanks

    If the songs play in iTunes on the computer:
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Videos will not repeat

    Hi,
    I have all of my music videos on a playlist called Videos. With previous versions of iTunes, while playing in full screen or just in the now playing box, when one video would end, another one would begin playing. Now when I play videos in my playlist or Apples video list, when one ends, it just ends and nothing plays after it. I have shuffle and repeat all enabled. This is annoying because I cannot just relax and play a bunch of videos - now I have to manually begin them one at a time. Also, if I don't play a video all the way to the end, the next time it starts up it begins where I left off the time before. Any ideas on how to fix this?
    Thanks.

    How did you do this? I have a separate video playlist - not repeating, made another - not repeating either, removed all my videos from library and then re-added them, still won't repeat. I have repeat all and shuffle enabled. I cannot even use the next song arrow to move to another video - it just pauses the one I was playing. I have to manually click on another selection to make it play and then it stops and nothing plays when it is over, This is driving me crazy. If I play a video in the main library, an audio song will play after a video. Any ideas on how to fix this?

  • TS2771 when playing tunes, same song keeps repeating

    When playing tunes, same song keeps repeating and does not move on to next song. Is there a repeat button somewhere/? When I turn shuffle on and off and it makes no difference.

    On the left side of the music playing screen right below the scrubber bars it the repeat control. It is the arrowed racetrack icon. Tap the icon until it is white.
    See the users guide
    iPod touch User Guide (For iOS 5.0 Software)

  • Playing song keeps repeating

    Hi .. when I play a song in iTunes or on my iPod Touch the selected song keeps repeating no matter what Playlist I use. It simply won't move to the next song automatically.
    What have I done?
    What do I need to do to fix this?
    I have gone between shuffle and not shuffle, tried the Controls - Repeat menu but commands are greyed out. What to do? Thank you in advance.

    This can possibly help: http://forums.macrumors.com/archive/index.php/t-229644.html

  • I am using garage band for the first time.  I dragged and dropped a song from itunes into the program and I want to extend the length of the song by repeating the first 28 measures.  I can't figure it out.  Please help

    I am using garage band for the first time.  I dragged and dropped a song from itunes into the program and I want to extend the length of the song by repeating the first 28 measures.  I can't figure it out.  Please help.  I have spent several hours trying to figure it out on my own but have not been successful.  It seems like an easy task.  Can anyone help?

    dewin1or wrote:
    I want to extend the length of the song by repeating the first 28 measures.
    split the region at the 28th measure
    http://www.bulletsandbones.com/GB/GBFAQ.html#split
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    then select only the first region and option-drag it to the end of the song

  • How to Play One Song Without Repeat?

    I am a new Ipod user, with an 80 GB video version. (I don't think it's one of the latest new models, but the second to last generation. Is that "fifth generation"?)I updated it with the latest firmware, just a few days ago.
    I have used other MP3 players before though. In most respects I find the Ipod superior to the other MP3 players I have used. However, there is one setting, that I have made before on other MP3 players, for instance my old Creative Muvo 4GB (a few years old), which I cannot figure out how to set on my Ipod.
    How does one set the Ipod to play one song, without going on to the next one, and without repeating that one? The default (of course) is to play all the songs in the album or playlist, going on to the next one, when the current song is finished. Looking in Settings, I find one can set "Repeat" to repeat the whole playlist or album when one comes to the end of it, or set it to repeat the same song.
    But---what if one wants to play one song, and then have the Ipod stop (or at least pause), and not automatically go on to the next song, or repeat the same song? Is it possible to set that? I cannot see how. If there is a way to do that, please let me know.
    Some might ask--why would one want to do that? True, for normal use, the default setting is the best one, going on to the next song, as when one listens to a CD. But, there are cases where one might want the Ipod to play one song and stop. I'll explain my reason for wanting to make that setting--I am an elementary school music teacher. In my concerts with the children this upcoming week, I will put the musical accompaniments for my choirs on the Ipod, and play them from it. When the choir is performing a song, at the end of the song, I don't want the Ipod to start playing the next song on the list. I want it to stop or pause at the end. It will be a hassle for me to have to manually stop it at the right moment, and I might miss it, and it will start playing the next song.
    Any way to set it to play one song, and then stop? If so, please tell me.
    If not, I would hope that Apple would add that capability to the next firmware upgrade. Do they read here for user's suggestions? Is there another place to make suggestions for improvement in the Ipod firmware?
    Thank you for your input.

    Thank you for the reply, Chris.
    I thought of that idea, a separate playlist for each song. That would be fine, if I was only playing one song. But I want to have the list of songs ready to play, so was going to put them in a playlist together. I need to be able to get to the next song quickly, without a lot of messing around with the Ipod.
    Is it possible to put playlists within playlists? Then, perhaps I could make an individual playlist for each song, and make a playlist with all those one-song playlists together. If that is possible, it probably still would make it too complicated to go to the next song, probably having to use the menu button to go back to the higher playlist, etc. I want to keep playback simple.
    I may try your idea of creating a blank "song" to put between tracks. (Is there also no way currently otherwise, to put a certain amount of empty space in between tracks?)
    Thanks also for the feedback link. I will send this concern to Apple, and hope they add that capability soon.

  • Is there a note repeat function on Logic Pro?

    Just switched to Logic Pro but I am used to sequencing with a MPC i.e. note repeat Is there a note repeat function in Logic? It can be helpful when sequencing drums! If not, is there some other software that allow to to use note repeat on the logic instruments? Thanks

    Hi,
    press CMD-8 to open the environment window. Select "new - arpeggiator"
    Now think how you want to trigger the arpeggiator. Do you want to trigger it with a MIDI Region? Or do you want to trigger it with live MIDI input (from a keyboard or so)?
    Maybe you also have to select "new - physical input"
    You can pull cables inside the environment window. pull a cable from the source trck or source input to the arpeggiator. Then pull another one from the arpeggiator to the drum track you want to trigger.
    Now select the arpeggiator and set up the speed (1/8, 1/16 - what you want). Look in the manual for "arpeggiator".
    Now the master-hint: The arpeggiator only functions when logic is running. So when stop or pause is pressed, no arpeggio So, start your song, only press 1 key and voila: there are the manymany drumdrumdrum bangbangs.
    Have Fun, and good luck with the setup - i tried some time to get this right.
    Fox

  • Songs not playing on iPod Touch

    I upgraded my iPod Touch 4G to iOS 5.  I had trouble with apps but they are fixed now.  My problem now is music.  It retained my data but some songs won't play.  I didn't buy them on iTunes - they are from an older library when I didn't have iTunes.  Now it just plays the next song and it's very irritating.  They play on my computer and I haven't changed the file location.  Any tips?

    Not sure if your issue is the same I had: not playing tunes, playing the wrong tune, skipping ahead several tunes, selected song and playing song not matching. Here was my fix:
    Altered from original solution from Emily P:
    Okay, mine now works here is what I did.
    plug in the iPhone, iPad etc
    in iTunes select the phone or iPad
    Under Summary uncheck "Sync with this....."
    Under "Music" uncheck the "Sync Music"
    Sync
    Let it remove all the songs, dont worry it will come back no problems.
    Once that is all done all the music on the phone or ipad should be gone.
    Now check them both back on, sync, and everything should copy back onto it.
    Working now !!!!!

  • I have purchased songs from itunes on my ipad but now they are not there anymore. How can they get them back? Dont come up in songs not on this ipad and in itunes it asks to buy again

    I have purchased songs from itunes on my ipad but now they are not there anymore. How can they get them back? Dont come up in songs not on this ipad and in itunes it asks to buy again

    If you are now in the US then you can only use the US store, so you should update the address on your account
    Changing country : Change the country of your iTunes Store, App Store, iBooks Store, and Mac App Store account.
    Had you copied the songs over to your computer's iTunes library, do they show in the Music section on it ? You can copy purchases that you still have on your iPad over to your computer's iTunes library via the File > Devices > Transfer Purchases menu option

Maybe you are looking for