Non Tempo-Event problem

Hi,
I keep getting a "Non Tempo-Event Found in Sync Reference" alert, every time I try to do a tempo change, and the "Unable to sync audio and midi" afterwards.
I am only using external midi in sync with a quicktime movie (without audio). No other audio in the project.
(Btw. does anyone know how to turn of the vertical mouse-zoom that happens when you try to navigate in the timeline?)
Mac pro 3 OS 10.5.2
FW 1884 audio/midi interface
Xiste

I found that in my tempo list, there was an odd event that I didn't place there, and I think that was what was causing this error message although, now my MIDI is extremely delayed, to the point where it is unplayable when composing.
The playback is fine, but anything I play live is really delayed, and it is only in this song! It reminds me of the problems people had when trying to import some Logic 7 songs and getting delayed MIDI. It is the smae problem here, but this is a song composed entirely in L8.
Any ideas to this new delay problem? The MIDI was fine at the beginning of this composition...

Similar Messages

  • "Error While Trying To Synchronise Audio And Midi"...non-tempo event found

    "Error While Trying To Synchronise Audio And Midi"...non-tempo event found
    now when I shutdown Logic And relaunch the Project, the notes hang and "WHAT THE FRIIGIN"
    (this was a bug way back when Logic7 was first released)
    this is bad!
    SvK

    Thanks Steven.
    big help. In our session we keep getting this problem where the song counter stops, the music keeps playing and we get an error message saying:
    Non Tempo-Event found in Sync Reference
    We looked in the tempo list and somehow there was a tempo event of 0.00 tempo in there.
    We deleted it, got the same error message, but the prob seems to be fixed.
    Apple, please fix this!
    Thanks
    Felix

  • Non Tempo-event found in sync reference

    Hello everyone. I ran into a problem yesterday. I was working on a project and out of nowhere (I don't remember anything I was doing out of the ordinary) the tempo changed to 5bpm. I changed it back and kept working and when I was done I saved a new instance of the project which I normally do after substantial editing, but when I try to open the new file I get this error "Minor correction of project data has taken place. (1)" . After pressing Ok I get "Warning! Project may be damaged". Then Garageband freezes and I have to relaunch. The original file (the one I was working on when the tempo changed) gives me the error "Non Tempo-event found in sync reference", but proceeds to enter the project fine. The only problem is the tempo is still set to 5bmp and any changes made to this project appear to save fine, but when I try to open them I get the double error that I explained.
    I've tried copying the contents of ProjectData to another blank file and tried renaming and saving in different locations but nothing worked.
    My concerns are that I still want to do work on this project and be able to save it. At this point all I'd be able to do is work on it and finalize with a mixed down audio file. The other concern I have is that I don't want this to happen again to another song.
    Anyone encounter this problem? Can't find information anywhere.
    Thanks in advance.
    Tony

    TJraije wrote:
    I still want to do work on this project and be able to save it.
    you may be able to rescue most of the data:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutrescuingfiles
    Anyone encounter this problem?
    in 6+ years i have never seen, nor heard of anyone seeing this error which could suggest a random/non-recurring bit of data corruption

  • Non Tempo-event???

    I am getting an odd error message that says "non tempo-event found in MIDI sync reference." It doesn't appear to be causing any problems except that it pops up three times every time I try and alter the tempo. Pretty annoying.
    I happened after I got a midi snyc error from logic saying, it couldn't snyc the midi, but then it was fine on restart. Now I just get this message over and over and over again.
    Anyone know what this means and how to fix it?

    I found that in my tempo list, there was an odd event that I didn't place there, and I think that was what was causing this error message although, now my MIDI is extremely delayed, to the point where it is unplayable when composing.
    The playback is fine, but anything I play live is really delayed, and it is only in this song! It reminds me of the problems people had when trying to import some Logic 7 songs and getting delayed MIDI. It is the smae problem here, but this is a song composed entirely in L8.
    Any ideas to this new delay problem? The MIDI was fine at the beginning of this composition...

  • Non Tempo-Event Found Warning

    I'm hanging on by a learning curve thread as I score a film. Made to 59 minutes out 77, and ****..now I get this Warning Window saying: "Non Tempo-Event found in Sync Reference." I've tried to look it up in the Logic Reference Manual and here in the Logic Pro 7 discussions, but didn't find anything. Does anyone how this happened and how I could correct.
    Any help is appreciated.

    Last night I had it working great. And then this morning I wake up and load the project and now I get that warning window, AND the film audio is out of synch with the film by about 2 mintues by the end, it seems to have happened after this one section in the middle where I tried to change the tempo in the tempo bar above from 110 to 132 and then back to 110 after it, in playback I get another warning that says "Error while trying to synchronize Audio and MIDI." In the past I did try a beat mapping to figure out the tempo of this same audio section so that I could set it correctly to put some loops in at the right tempo. Now everything is screwed up.
    Is there another place to ask these technical discussion questions, it seems that this discussion area is a lot less active than the Final Cut Pro area. Any other websites?
    I appreciate it.

  • More event problems

    Hello again, I have yet another event problem. When I try to use this code I get an error saying Abstract class actionPerformed is not implemented in non- abstract class TableWindow. I'm not quit sure how I'm supposed to implement it.

    Here is what I believe to be the relevant code. addWindowListener works but addFocusListener returns the error.
    // Table window
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class TableWindow extends Frame implements ActionListener
    public TableWindow ()
    Create Window
    super ("Test Window");
    setBackground (SystemColor.control);
    setLocation (0, 0);
    setLayout (new GridLayout (5, 5));
    addWindowListener (new WindowAdapter ()
    public void windowClosing (WindowEvent e)
    try
    if (Connected == true)
    // Close the Statement
    stmt.close ();
    // Close the connection
    con.close ();
    catch (SQLException sqle)
    dispose ();
    System.exit (0);
    tPane = new JTabbedPane ();
    tPane.addChangeListener (new ChangeListener ()
    public void stateChanged (ChangeEvent c)
    //Status.setText ("Clicked");
    tablePane = new JPanel ();
    recordPane = new JPanel ();
    recordPane.addFocusListener(new FocusListener()
    public void focusGained(FocusEvent e)
    Status.setText ("Clicked");
    queryPane = new JPanel ();
    TName1 = new TextField (25);
    TName2 = new TextField (25);
    TName3 = new TextField (25);
    idField = new TextField (10);
    idField2 = new TextField (10);
    TitleField = new TextField (25);
    TitleField2 = new TextField (25);
    result = new TextArea ("Under Construction", 5, 30);
    NewT = new Button ("New Table");
    NewR = new Button ("New Record");
    NewQ = new Button ("New Query");
    NewT.addActionListener (this);
    NewR.addActionListener (this);
    NewQ.addActionListener (this);
    TNameLabel1 = new Label ("Enter name of table here");
    TNameLabel2 = new Label ("Enter name of table here");
    TNameLabel3 = new Label ("Enter name of table here");
    idLabel = new Label ("Enter movie ID here");
    TitleLabel = new Label ("Enter title of Movie here");
    TitleLabel2 = new Label ("Enter title of Movie here");
    tablePane.add (TNameLabel1);
    tablePane.add (TName1);
    tablePane.add (NewT);
    recordPane.add (TNameLabel2);
    recordPane.add (TName2);
    recordPane.add (idLabel);
    recordPane.add (idField);
    recordPane.add (TitleLabel);
    recordPane.add (TitleField);
    recordPane.add (NewR);
    //recordPane.add (tableChoice);
    queryPane.add (TNameLabel3);
    queryPane.add (TName3);
    queryPane.add (TitleLabel2);
    queryPane.add (TitleField2);
    queryPane.add (NewQ);
    queryPane.add (result);
    Status = new Label ("");
    // make the window and add components to it
    tPane.addTab ("Table", tablePane);
    tPane.addTab ("Record", recordPane);
    tPane.addTab ("Query", queryPane);
    add (tPane, BorderLayout.CENTER);
    add (Status, BorderLayout.SOUTH);
    pack ();
    setVisible (true);
    public static void main (String args [])
    ConnectToDatabase ("vdds");
    TableWindow tw = new TableWindow ();
    }

  • HELP!  Deadline!  Tempo events disappear!

    I created three tempo events to sync to picture. I continue working on the tracks and at some point they all disappear! I never hit delete or anything. It happens every time. I kept the tempo list up and visible for a while to see when it was happening, everything seems fine, but eventually, when I'm lulled into a false sense of security, I'll be danged if they don't disappear again and I'm left with only one starting tempo event.
    What the heck??

    I am trying to import just onto my iMac, They are being stored in the normal location (user home folder > Movies > Final Cut Events) I am importing them directly from my cameras. I thought it might be a problem with my cameras, the format, or the importing. So I tried the same process on my MacBook Air, importing to the same location on siad MacBook Air (user home folder > Movies > Final Cut Events). The MacBook Air works perfectly, but the iMac just keeps loosing the events after quiting.
    I will see all the events in the Final Cut Events folder, but Final Cut will only show me an event named (New Event 11-28-11) and each time I open and quit the "New Event 11-28-11" keeps growing from "New Event 11-28-11 1" to "New Event 11-28-11 2" and so on. So Final Cut keeps making a new event almost like it is the first time I have opened it.

  • Missing non recurring events

    All of my old non recurring events are gone, only current month is correct. last 7 months are gone. seam to disapper after a month. Anyway to get them back? on my icloud setting my calendar is "on" but don't know where they went

    I don't know how to do what you suggested. However, I was able to get my handheld 22 working, so all the data  thought was gone is in there. My problem now is that I purchased a new palm (e2) when i thought the other one was dead, and now i am afraid to hot sync the z22 to the new desktop, as I am afraid it will somehow wipe out the data from 2005 to present on my handheld z22. Is there any way to save that data without hot syncing? I would rather hand enter it all than risk wiping it out on the handheld as that is the only place it now exists.Thankx. Also is there a phone support number?
    Post relates to: Palm Z22

  • Tempo events stop the song

    It's funny:
    The project is playing,
    Logic sees that there's a tempo change coming up in the composition,
    and...BAM!
    Logic STOPS the whole Song, and pops open the warning dialog box:
    "Multiple Tempo Events detected, open Tempo window?"
    "Wow! But no thanks", I say to the arrange window,
    "I put the tempo event in there."
    _Every time_ a tempo change approaches
    I am greeted with total silence and a popup warning dialog box.
    Wouldn't it be nice if the song didn't *stop all audio*
    just to +warn me+ there's a tempo change coming up?lol.
    How about these new additions to version 9:
    *Need to use the scissors tool? You have to stop the song before you can snip.*
    Every time you change the loop markers you have to stop the song, then press play again
    or Logic will just keep on playing right past the loop!
    *Move an audio region* in the arrangement?
    *stop the song, then press play again* or Logic will not even notice you moved the audio.
    Please understand: if you outsourced development of this app, you without a doubt
    need to hire a new room full of developers.
    Maybe even put a--dare I suggest--A P-R-O-D-U-C-E-R in the room with them?
    *Disk Overload or Computer is too slow.* <- saw this one when I was
    running version 5 on Windows '98.
    Who wants to be the first to tell S.J. that a 2010 MacPro is too slow to run his
    flagship audio app? Because I will write the email right now.
    *Problem synch'ing Audio and Midi.* So many years of this one and still going strong.
    Windows '98 running Logic version 4.5--> SAME WARNING DIALOGS.
    So..still workin' on the fixes, guys? lmao.

    Seems it'll work with Movies, TV Shows, etc. but not with music.
    You can double click iTunesDJ and add the music there to listen to (select it, right click Add to iTunesDJ).
    Then view the music in the library.

  • "Multiple Tempo Events Detected" -- Propblem with Logic and Reason

    I have just migrated from a MacBookProp to a MacPro. All seems well except for the rewiring of Reason. When I rewire, I get the error message in Logic "Multiple Tempo Events Selected" asking if I want to review the list. Since no song is open in Reason, this would appear to be some kind of glitch. Also, there is a huige amount of latency between Reason and Logic. When I have just Reason open, there is no latency at all when I play. the same in Logic when I create a software instrument. But in rewire mode, it is about half a second! Any advice and help would be appreciated.

    Update on this: the tempo issue was relegated to one project where there was a tempo change within Logic, so I apologize. But I still have a tremendous amount of latency between the two programs.

  • InputField fire event problem in webDynpro

    I have one validation or Fire Event problem with respect to Inputfield in web Dynpro.
    I have one Input filed and created the context varible for that, then i mapped the context varible to the InputField, and i changed the context varible type as date.So , when i run the view , it will show the calender near to the text box to select the perticular date. On select of the perticular date. It will populate selected  date in to the inputField.
    On selection of the perticular date. Based on the date i want to generate the next 12 months date at runtime in different text boxes. But the only event available for the InputField is only "onEnter". This is not useful in my case, bcz on selection of the Date , the user may not use the Enter key. so , how can use the other events like onSelection or onChange events in the InputFields to reach my needs.
    Any one  give me the idea to solve this problem.
    Vijay

    Hello Vishal,
    You may also refer the sample code in the below link
    <a href="http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0c0dcacd-0401-0010-b4bd-a05a0b4d68c8">http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0c0dcacd-0401-0010-b4bd-a05a0b4d68c8</a>
    Regards,
    Sudeep.

  • Help needed to install Flash Player : 'Non-Current Release' problem!

    I been encountering problems while trying to install Flash Player on my laptop running Windows 7.
    Originally Flash Player does not work as I understand it is not supported on 64-bit Internet Explorer.
    After installing 32-bit IE, the following issue of 'non-latest version' arises and all installation were aborted by the application :
    The below were steps I had taken to no success.
    1.  Via the 32-bit browser, downloaded flash player un-install program and did the uninstallation with success.
    2.  Rebooted the laptop.
    3.  Via the 32-bit browser, downloaded the flash player version 10.0.45.2 from http://get.adobe.com/flashplayer.
    4.  After downloading it automatically did the installation with 100% completion.
    5. The program proceeded to activate the flash player with a webpage saying if the flash player is working properly, I should see a video and Flash Player's logo.
    6.  Before anything was displayed, an error message popped up to say I was trying to install a non-current version and that I should go to same webpage to download the latest version. The activation was then aborted.
    Tried many times but always encountered same problem and hence cannot proceed to use the flash player.
    Need assistance to diagnose the problem and to get Flash Player working on my laptop. Appreciate any help to get it working.
    Regards.

    Thanks to efforts of eidnolb and Bob, the installation of flash player into my laptop is now working .
    Bob's installer enabled the download successfully.
    Eidnolb's link in post 6 trigggered me that I may have previously installed the pre-release version 10.1, thereby leading to the 'non-current-version' problem too. Post in that link adviced to uninstall 10.1 using the pre-release uninstaller.
    I suggest others who had encountered this non-current release to uninstall first using that specific uninstaller, before attempting to install the most current release. I may have installed the 10.1 pre-release in desperation after failing numerous times trying to figure out why flash player does not install in browser not knowing its currently-non-support of 64-bit browser.
    Once again thanks for support, eidnolb and Bob.
    Cheers.
    Kelvin

  • Non-Busy Events in iCal Leopard

    Does anyone know if it is possible to create a non busy event in iCal under Leopard?
    I want to set up some informational multi day events, but do not want them to show as busy so that I can still have meetings scheduled during this period. I can find no options to mark an appointment or event as non-busy. The result is that if anyone tries to invite me to a meeting during one of these events I am automatically shown as busy and this ruins the availability window as well (blocks out my entire day).
    This makes the shared calendars very limited in what we can use them for. An actual example, I want to show a change freeze in my calendar for three weeks and make it available to everyone. I put it in a shared calendar and I am unavailable for scheduled meetings for three weeks!
    I appreciate that there are other ways to distribute the information but this is the best way for us, and it just does not work.
    Thanks
    Jason

    One idea I have is for you to create a to do for each day and fill in the description you want in the note field - title of the to do would include the day as part of the header so your co-workers would know there is a "note" for each day. That way you do not show up as busy either on those days.
    hope this helps.

  • Salve ho appena ricevuto indietro dall'assistenza l'iphone 4s però mi è stato segnalato che non presentava nessun problema tra quelli segnalati da me. Ho ricevuto anche un foglio con scritte le soluzioni che si avvicinavano di piu al mio caso, però vorrei

    Salve ho appena ricevuto indietro dall'assistenza l'iphone 4s però mi è stato segnalato che non presentava nessun problema tra quelli segnalati da me.
    Ho ricevuto anche un foglio con scritte le soluzioni che si avvicinavano di piu al mio caso, però vorrei sapere se è stato esaminato il problema giusto o un altro perche da quello scritto nel foglio non è stato esaminato il caso giusto anche perche il problema che ho segnalato non è stato risolto grazie mille ,
    cordiali saluti.

  • If I use Explorer, none of these problems exist. This suddenly happened overnight! I have your newest upgrade and I haven't had any problems for the past year or so....this is weird.

    1. only in firefox - flashplayer won't upgrade, endless loop of "add plug-ins" etc.
    2. vertical scroll bar flipped from left side to right.
    3. crtl ++ to zoom doesn't function.
    4. can't load any "personas" when in Google gmail.
    If I use Explorer, none of these problems exist. This suddenly happened overnight! I have your newest upgrade and I haven't had any problems for the past year or so....this is weird.
    == This happened ==
    Every time Firefox opened
    == Monday 6/14

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]

Maybe you are looking for