Need help frustrating issue

Hi
I’ve been using Logic for many years now but recently have a recording issue that I cannot fix and its driving me mental. When I record in a loop say from nexus or put in drums or even a software synth the first midi note can be seen in the Piano roll and plays when you select it but when you play the sequence Logic doesn’t play it !! even the event log shows the first note at 1 1 1 1 yet logic doesn’t play!!
what am I doing wrong !! its driving me mad as Im having to start all my songs at bar 2 onward, surly this cant be correct

But it is correct.
There may be a fix/work around by adjusting some of the audio settings, possibly the process buffer. Anyway, this is a known problem with Logic's method of buffering and lack of a true preroll setting. Normally, the data should be cached and play without problem. The work around is exactly what you're doing, starting at bar 2 or later.
pancenter-

Similar Messages

  • Need HELP (Project Issue) : Having 3 individual VIs, datalogger.vi, start vi, amksms.vi done. (How to run the VIs in sequence order - datalogger start amksms combine into 1 VIs? )

    Need HELP (Project Issue) : Having 3 individual VIs, datalogger.vi, start vi, amksms.vi done.
    (How to run the VIs in sequence order - datalogger > start > amksms combine into 1 VIs? )

    VIs in icon.
    how would it able to run in the sequence order:
    data first, follow by start and lastly amk sms.
    Attachments:
    dsa.jpg ‏10 KB

  • Need help troubleshooting issues with Adobe Reader X

    Hello,
    Recently our company upgraded multilpe computers to Reader X.  Initially we installed version 10.1.0.  Ever since our users on X have been experiencing problems.  We are seeing three different issues.
    1) A user will fill out the PDF and click print.  At that point a popup appears with the message "Adobe Reader has encountered a problem and needs to close.  We are sorry for the inconvenience."  The user has the choice to click on Debug or Close.  Clicking Debug doesn't appear to do anything.
    2) Clicking on a PDF in internet explorer will launch Adobe Reader and a progress bar shows on the screen indicating that the PDF is loading.  The progress bar goes away and the user is left looking at a grey screen.
    3)  When attempting to open a PDF the user recieves this message "The instruction at "0x00720065" referenced memory at "0x00720065" . The memory could not be "written."
    In every situation the only way to get past the problems is a restart of the PC.
    As an attempt to resolve the issue we tried upgrading several users to Reader version 10.1.3.  This was done by completely uninstalling version 10.1.0 and then installing 10.1.3.  This did not have any effect on the problems.
    Can anyone here offer and suggestions?
    Thank you

    Hello,
    1. The OS on which you are seeing these issues.
    Windows XP SP3
    2. The method of deployment of the 10.1.3 update. Was it done via SMS/GPO/SCUP?
    Originally 10.1.0 was installed remotely using a program PSEXEC.  Once the errors began occurring 10.1.0 was uninstalled manually and 10.1.3 was installed using a copy from your ftp site.
    3. Can you try and update any one of your systems to the latest version of Reader i.e. Reader 10.1.4 and see if it solves the problem.
    We have upgraded one machine to 10.1.4 using the Check for Updates function within Reader 10.1.3 and are looking for any ongoing issues.
    4. Which browser are you using to render the PDFs. Is the issue seen with internal links alone or with all links. Can you try and see if the following opens on one of the faulty machine: http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_Re leaseNote_10.1.3.pdf<http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_ReleaseNote_10.1.3.pdf>
    We are using IE 8.  The issues are seen with both internal and external links as well as stand alone PDFs.  No one could open the link you sent but we could open: http://helpx.adobe.com/content/dam/kb/en/837/cpsid_83708/attachments/Acrobat_Reader_Releas eNote_10.1.3.pdf on a faulty machine.
    5. If suggestion# 3 doesn't work, can you also try and uninstall the installation on any one of the machines manually (i.e. via Control Panel > Add/Remove Programs or Programs and Features depending upon your OS) and install a fresh copy of Reader 10.1.3 (from ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.3/en_US/AdbeRdr1013 enUS.exe<ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.1.3/en_US/AdbeRdr1013_en_US.exe>) and see if it solves the problem. If it does, then it may be an issue with the Deployment methodology followed.
    Already tried this.  See answer to suggestion #2
    Thanks,
    Adam Behsmann
    Application Support Analyst
    Exchange Bank
    (707) 541-1044

  • Need help, strange issues

    ok, all help is welcome on this one
    just moved, had the airport all set up at the old place and switched over to a new cable provider on the move
    got the airport hooked up to the new cable modem, got one machine running and wireless just fine.
    the other machine (ibook) will not connect to the airport at all, and in fact says that the airport is the problem. the powerbook sitting next to it is online using the same airport so the modem and airport are able to get out to the net just fine but this one machine can reach the airport but not the net.
    plugged the machine into the airport, nothing.
    it still says the airport isn't configured and can't get online via the ethernet connection to said airport.
    any ideas??

    Hi
    Welcome to this forum, I hope I can help
    Eliminate damaged or corrupt .plists or preferences first. Create a new admin account and log in with that and try Airport connectivity from there. Failing that, eliminate an Operating System problem. Reinstall a clean OS and don’t preserve network users and settings. It’s a pain I know, but worth it as sometimes what appears to be a hardware issue is actually down to software. If its still no go after that, its probably an airport card problem. Is it possible to swop the airport cards or is that something you have already considered?

  • Need help! Issue getting TempDB files removed

    I'm currently running SQL 2012 and having some issues altering the TempDB to remove two additional mdf data files from the filegroup.
    The tempdb currently has two additional mdf data files, tempdev1, tempdev2
    I'm running the following command
    ALTER DATABASE tempdb
    REMOVE FILE tempdev2
    And while I expect to see the message
    Msg 5042, Level 16, State 1, Line
    1
    The file ‘tempdev2′ cannot
    be removed because it is not empty.
    I am NOT seeing anything to the likes
    below...which concerns me as I don't think i'm ready to restart my instance and have the desired changes in play
    The file “D:\tempdb\tempdev2.mdf”
    has been modified in the systemcatalog. The
    new path will
    be used the next time the database isstarted.

    It seems some activities are going on that is using your TempDB.
    Restart the SQL services this will create your new Tempdb & all files become clear. After that run your both commands, It should work.
    USE tempdb;
    GO
    DBCC SHRINKFILE('tempdev1', EMPTYFILE)
    GO
    USE master;
    GO
    ALTER DATABASE tempdb
    REMOVE FILE tempdev1;
    Just to add, only 1 mdf can have per database, rest of this all other data files will be ndf.
    Regards,
    Rohit Garg
    (My Blog)
    This posting is provided with no warranties and confers no rights.
    Please remember to click Mark as Answerand
    Vote as Helpfulon posts that help you. This can be beneficial to other community members reading the thread.

  • I need help resolving issues with inbound mail on 10.8.5 server.

    Let's start from the beginning.
    I had a Mac Mini server running OS X 10.7 since 2011. I have a static IP and domain registered. I used it for mail, calendar, and web service.  It was working beautifully until a week ago.  Suddenly it stopped processing mail for me from google and apple managed domains.  There may be other domains, I do not know.
    I checked my external firewall and the correct ports are being forwarded (25, 587, 993).  Connected to a remote network, I can verify that nmap shows the ports as open.  I can telnet into the server on port 25 and send mail.  I checked with the ISP and they are not blocking/filtering those ports and the DNS they are hosting for me appears to be correct (unchanged from when it was working).  I've looked in the logs, but I'm not sure what I'm looking for, really.  I upgraded to 10.8.5 and server 2.2.2 last night in an attempt to rectify the situation but I'm still unable to receive mail from my other accounts (iCloud and gmail).
    I've been trying to troubleshoot this issue for a while now and I'm all out of ideas.  If anyone has any advice I'd really appreciate it.
    Thanks,
    Trevor

    Hi,
    I can send/receive mail locally.  I send mail to [email protected] from [email protected] and [email protected].  This works while on my LAN and connected to my work via VPN.
    I'm not listed on any blacklist, either by domain or IP using that tool.  The MX lookup tool at that site lists everything as OK, the MX record appears to be correct.  The SMTP test at that site shows a "failed to connect" error.  The exact error is:
    Connection attempt #1 - Unable to connect after 15 seconds. [15.04 sec]
    I'm not sure what I'm looking for in my log files.  I do not see any inbound connection attempts from google or apple domains when I try to send from my other e-mail accounts.
    when I run the dig command, I get the following output:
    dig @8.8.8.8 -t mx bakernet.ca
    ; <<>> DiG 9.8.5-P1 <<>> @8.8.8.8 -t mx bakernet.ca
    ; (1 server found)
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 1983
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;bakernet.ca. IN MX
    ;; ANSWER SECTION:
    bakernet.ca. 3599 IN MX 10 mail.bakernet.ca.
    ;; Query time: 100 msec
    ;; SERVER: 8.8.8.8#53(8.8.8.8)
    ;; WHEN: Sat Jun 21 07:47:08 EDT 2014
    ;; MSG SIZE  rcvd: 50
    I don't see an  A record here.  My DNS is hosted by my ISP, my server is performing DNS lookups for my LAN.
    When I run dig from inside my LAN I get the following:
    ; <<>> DiG 9.8.5-P1 <<>> -t mx bakernet.ca
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 21448
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 2
    ;; QUESTION SECTION:
    ;bakernet.ca. IN MX
    ;; ANSWER SECTION:
    bakernet.ca. 10800 IN MX 10 mail.bakernet.ca.
    ;; AUTHORITY SECTION:
    bakernet.ca. 10800 IN NS www.bakernet.ca.
    ;; ADDITIONAL SECTION:
    mail.bakernet.ca. 10800 IN A 172.16.0.17
    www.bakernet.ca. 10800 IN A 172.16.0.17
    ;; Query time: 0 msec
    ;; SERVER: 127.0.0.1#53(127.0.0.1)
    ;; WHEN: Sat Jun 21 08:02:04 EDT 2014
    ;; MSG SIZE  rcvd: 100
    That does show an A record for the mail.bakernet.ca hostname.  Looks like my ISP is to blame?
    Trevor

  • Need help regarding Issues while use T=0/T=1 Protocol

    Hi Friends..
    I developed an Simple Applet to be Personalized by Datacard Machine..
    This Applet is downloaded and installed in 2 difference protocol, (T=0 and T=1)..
    This is a little description of my Applet :
    CLA used is (byte) 0x80, otherwise SW 6E00 returned
    INS (byte) 0x20 : is used for Ingoing Command (To Send Data to Applet)
    INS (byte) 0x30 : is used for Outgoing Command (To Get Data From Applet)
    P1 = (byte) 0x00 : is used to Send Data and Get Data for field Employee code
    Case T=0 :*
    I tried to send this APDU through Datacard Machine :
    80 20 00 00 05 01 02 03 04 05 00
    the SW resulted is 90 00
    After that i tried to send this APDU through Datacard Machine :
    80 30 00 00 00
    There's no Response Data, and the SW resulted is 61 08
    But, if i try to Get Data using SmartCardIO, i can get Data as i want, and the SW is 90 00
    What is the meaning of SW 61 08?
    I think this SW tells me that there's 8 bytes remaining data (but i don't know whether this is correct)..
    But in the Case T=1 Protocol :*
    I did the same thing, and there's no error returned..
    i can Read an Write without any error..
    Please correct me if i'm wrong..
    Any help would be appreciated..
    Thanks
    Edited by: Leonardo Carreira on Oct 27, 2010 7:49 PM
    Edited by: Leonardo Carreira on Oct 28, 2010 6:22 PM
    Change the title

    Leonardo Carreira wrote:
    After that i tried to send this APDU through Datacard Machine :
    80 30 00 00 00
    There's no Response Data, and the SW resulted is 61 08
    But, if i try to Get Data using SmartCardIO, i can get Data as i want, and the SW is 90 00 The datacard machine may not handle the GET RESPONSE apdu for you. SmartcardIO does this transparently.
    What is the meaning of SW 61 08?SW '61XX' = SW2 encodes the number of data bytes still available. This is because you are using T=0.
    I think this SW tells me that there's 8 bytes remaining data (but i don't know whether this is correct)..That is correct
    But in the Case T=1 Protocol :*
    I did the same thing, and there's no error returned..
    i can Read an Write without any error..This is due to the differences between T=0 and T=1 protocols. T=1 will send you a response containing the data, T=0 will send you the numbder of bytes it expects to return and waits for a GET RESPONSE before sending you the data. As mentioned above, SmartcardIO handles this for you transparently while other libraries mat not (RAW PC/SC does not). You can read more about this in ISO7816-3
    Cheers,
    Shane

  • Need Help : DST issue

    Hello,
    I am working on a DST issue. In my application , I have a timze zone , CDT and CST GMT -6, where DST is supposed to end on 1nd of nov Sun 2009. As the DST ends , the clocks are moved back to 1 hrs . Means when there will be 2am in the clock, the clock will be reversed back 1 hr and all clocks are adjusted to 1am. i.e. 1 hr more.
    Now in my application , I am putting an entry in the database at 1.01am of 1.12 am 1nov sun 2009. Entry goes well in the data base as user selected. Now at the time specified by customer , i.e. 1.12 am an trigger should pick the entry from db. The trigger would be caused by a poller continuously polling db after 2 mins each for any new entry, matches the current time and db time entered by user , If the diff is less than 120 sec , then only the trigger will be successful and user will be notified for the further process.For above entries Ideally the tigger should successfully be caused at 1.10am , but the trigger is executing right after 1 hr . This is causing b'coz the DST ends at 2am and clocks are reset back to 1 am .
    How can I identify the timezone of the time entered in db, from which I can get the DST offset and send the call to customer appropriately.
    Can any one please tell me how can I handle this situation. How can I make customer and my system in time sync independent of DST. ?
    Plz reply
    thanks in advance.
    Ani

    Hi,
    here a small test:
    SimpleDateFormat fmt = new SimpleDateFormat("dd MM yyyy HH:mm:ss z");
    String date1 = "01 11 2009 01:41:15 CDT";
    String date2 = "01 11 2009 01:41:15 CST";
    ParsePosition pos = new ParsePosition(0);
    Date d1 = fmt.parse(date1, pos );
    pos = new ParsePosition(0);
    Date d2 = fmt.parse(date2, pos );If I parse a string as shown above including the timezone specifier CDT or CST, then the parsed dates d1 and d2 differ by one hour. If you omit the specifier, then the parser cannot tell whether you mean CDT or CST, so just one of them is assumed. So the trick is just: Don't forget to include the timezone specifier in the parsed string, and then you will have the corerct result in the parsed dates. If you don't give that information to the SimpleDateFormatter you cannot expect, that the parser will know what to do.
    Martin
    Edited by: martin@work on Feb 19, 2009 12:46 PM

  • Need help resolving issues with reader X

    whenever adobe tried to update reader it alwaus fails and says I ahve to be in administrator mode, I read on the net that id you right click on a .pdf and go to the advanced tab you can select run as administrator. I did that hoping that would allow the updates to install and not fail but all it did is whenever I open any pdf file now I get the UAC popup and have to say yes to open it.
    Is there anyway to undo what I did to reader buy clicking run as administrator?
    I do not want to get the UAC everytime I open a pdf file.  I also DON'T want to turn off the UAC completely as a work around.
    Thanks

    whenever adobe tried to update reader it alwaus fails and says I ahve to be in administrator mode, I read on the net that id you right click on a .pdf and go to the advanced tab you can select run as administrator. I did that hoping that would allow the updates to install and not fail but all it did is whenever I open any pdf file now I get the UAC popup and have to say yes to open it.
    Is there anyway to undo what I did to reader buy clicking run as administrator?
    I do not want to get the UAC everytime I open a pdf file.  I also DON'T want to turn off the UAC completely as a work around.
    Thanks

  • Need help on issue uploading slideshow

    I've tried everything but whatever I do the slideshow will not load to Mobile Me and even if I export it as a quicktime file it will play in QT but not online?

    Ray:
    When you try to publish a MMe gallery from iPhoto what messages, if any, do you get? How are you getting the QT file online?
    Do you have the Quicktime Player 7 installed? It was an option when installing Snow Leopard.
    What's the URL of the online QT file so we can check it out?

  • Installed Maverick - smart art no longer working on either Word or Excel Need Help

    Installed Maverick and found that on both Word and Excel the "Smart Art" no longer works.  I reinstlled software but that did not solve the problem.
    NEED HELP
    Thanks

    Your issue seems to be only with those two apps, first check to see if they are up-to-date and if you still have issues please post in the Office for Mac Product Forums

  • IPhone5 and iPad3(iTunes 11.1.2) after syncing never finish syncing continuo stay in finishing syncing need help.

    iPhone5 and iPad3(iTunes 11.1.2) after syncing never finish syncing continuo stay in finishing syncing need help.

    Same issue here iTunes stuck on "Finishing Sync"
    Tried to leave it for 10 hours without any changes "Finishing Sync" still shows in iTunes
    The Setup:
    itunes 11.1.2.32 - install on Windows 7 Enterprise 32bit  - Service Pack 1 + all updates from windows update
    iPhone 4S - running  IOS 7.03(11B511)
    Additional information
    During the update to from IOS 7.02 to 7.03 the update process stopped and asked to restore the iPhone
    The restore deleted all data on my phone. Yes restore means delete all data including your photos.
    My backup did not work so now running IOS 7.03 with the "Finishing Sync" issue on iTunes
    Please let me know how to solve this issue

  • I need help installing Lightroom 5.  I tried the trial and it does not have an uninstall feature.  Thus, I'm trying to activate with my new $9.99 per month subscription and it simply will not work. Very frustrating you already took my money and no results

    I need help installing Lightroom 5.  I tried the trial and it does not have an uninstall feature.  Thus, I'm trying to activate with my new $9.99 per month subscription and it simply will not work. Very frustrating you already took my money and no results, and very difficult to get help.

    Lightroom Trial uninstall wrote:
    Very frustrating you already took my money and no results, and very difficult to get help.
    Just for clarity, "we" haven't taken your money - this is a user-to-user forum, and you're not talking to Adobe.
    Like Rob I'm a Windows user, and - like him - I thought "uninstalling" on Macs was simply a case of trashing the application. Google would seem to concur.
    Not really a Lightroom/Adobe issue, then?

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • Urgent help needed; Database shutdown issues.

    Urgent help needed; Database shutdown issues.
    Hi all,
    I am trying to shutdown my SAP database and am facing the issues below, can someone please suggest how I can go about resolving this issue and restart the database?
    SQL> shutdown immediate
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-01089: immediate shutdown in progress - no operations are permitted
    SQL> shutdown abort
    ORA-01031: insufficient privileges
    Thanks and regards,
    Iqbal

    Hi,
    check SAP Note 700548 - FAQ: Oracle authorizations
    also check Note 834917 - Oracle Database 10g: New database role SAPCONN
    regards,
    kaushal

Maybe you are looking for