Pitch bend lag when using internal quicktime synth.

I want to do a pitch bend at the end of a midi note in Logic 8. When i go to listen back in logic it does the pitch bend at the beginning of the next note. I decide to export the project as a midi file and open it in quicktime player. It plays the bend properly. I guess that's cool however I don't want to have to export it to a midi file every time i want to hear how the finished product will sound. Especially if I need to fine tune the pitch-bend.
I've tried messing around in the automation properties and sample accurate automation under audio tab and don't hear any change.
In the environment I have a 16 channel GM instrument patched into the internal quicktime synth.
Thanks

Did you do the usual stuff, such as reset PRAM?
http://support.apple.com/kb/HT1379
There are some sound settings in PRAM, although I think it's only for sound output.
Also, as a test, I would create a new admin user account in System Preferences Accounts pane
http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
Log out and log in to the new account (do not use Fast User Switching). In the new account, try recording something using QuickTime, and note if this problem recurs. If it does not, you have eliminated a few possible causes, such as a problem with the overall system installation or a hardware issue, and isolated the problem to something in your normal user account.

Similar Messages

  • After upgrading to yosemite, my Cintiq lags when using photoshop, any fixes?

    I've upgraded my iMac to Yosemite and photoshop CC 2014 lags when using my wacom cintiq. So far these are the steps I've taken.
    I've installed wacom drivers from nov 2014 because the jan 2015 drivers didn't help
    Doesn't seem to be a ruler issue within photoshop
    I've renamed my adobe photoshop prefs file
    and running osx 10.10.2

    Mindolen wrote:
    I upgraded to Yosimite yesterday for the the sole purpose of being able to use icloud again which apparently mavericks users cant do anymore.
    Not true. iCloud still works with Mavericks.
    What browser are you using?
    It would help to give us more information. You can download Etrecheck, which is a small free app which will generate a system report on your mac and you can paste the report here in a response. http://www.etresoft.com/etrecheck
    Have you used any "maintenance" or "cleaner" apps like MacKeeper or CleanMyMac in the past?
    Do you have third-party antivirus software on your Mac?

  • Noticeable lag when using drawing tablet, streaming video, and simple games

    Hi, I'm using a Toshiba Satellite Laptop model A335D-S69221. There is a noticeable lag when using my drawing tablet, streaming videos (such as youtube), and games that are not  "fast" such as This War of Mine and Don't Starve. All drivers and the system is newly wiped and up to date.  When visiting web pages if there are embedded videos it causes a whole system lag until it either asks me to stop script or I close the page.  Colors and graphics look just fine.  No problem playing fully downloaded videos. The programs themselves work just fine and the lag only happens with the above mentioned activities.  Not a virus.
    Is this an issue that can be solved by increasing the RAM from 4GB to 6GB or 8GB?  Or is it an issue with the graphics card?  I suspect RAM but don't want to shell money on the wrong thing. Most of the programs say 4GB is required but it almost seems bare minimum.  Is my laptop even worth upgrading?
    Unfortunately it takes away my ability to draw and makes gaming progress annoyingly slow.  Once the lagging action is complete it works ok but just repeats. 
    Windows 7 Home Premium
    Processor: AMD Turion X2 Dual-Core RM-72 210 GHz
    ATI Radeon 3100 Graphics
    Memory: 4GB
    64-bit

    Jessica Hennings
      this is my personal opinion as a guy who had more than 5 pcs, 4 gaming laptops and other mac books for work in the past.
      I believe it is slightly an older model of Toshiba you are using, your drawing tablet relies on your Ram but not as much as it relies on your GPU which would be the graphics card processor. So none of those upgrades will give you a significant change on things you want to do. 
     I would rather suggest you a newer model for the things you do with your budget than getting rams for your computer. Both of you are processor and graphics card.
     If you want to upgrade, Ram is your cheapest option, but check out the slots, usually they have 2 slots, and 2 x 2GB on them, so if you buy a 4GB , you get 6. DDR II is kinda out of date with current programs and software, keep that in consideration aswell. 
     I do not think any upgrade you spend money on will give you the speed you want to feel.

  • Abap Logic for performance tuning not working when using Internal tables

    Hi,
    I wrote this piece of code that is working correctly that is select SUM of cost from DSO where Plant is the same for Sales Items.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SUM( /N/S_STRDCOST ) FROM /N/ADSP_DPIT00 INTO
    rp-/N/S_STRDCOST
    WHERE /N42/S_SALESITEM = rp-/N42/S_ITEMID AND /N42/S_PLPLANT EQ
    rp-/N42/S_SOURCE.
    MODIFY RESULT_PACKAGE FROM rp.
    Clear rp.
    ENDLOOP.
    Now I try to rewrite it for performance tunning using internal table  but I am getting 0 values. can't figure out whats the problem and been struggling fixing it.
    TYPES : begin of ty_DSO_TABLE,
             /N42/S_STRDCOST TYPE /N/ADSP_DSPC00-/N/S_STRDCOST,
             /N42/S_ITEMID TYPE /N/ADSP_DSPC00-/N/S_ITEMID,
           end of ty_DSO_TABLE.
    DATA: it_DSO_TABLE type hashed table of ty_DSO_TABLE with unique key
    /N/S_ITEMID,
         wa_DSO_TABLE type ty_DSO_TABLE.
    Field-symbols:  <rp> TYPE tys_TG_1.
    LOOP AT RESULT_PACKAGE assigning <rp>.
      clear wa_DSO_TABLE.
    Read table IT_DSO_TABLE into wa_DSO_TABLE with table key /N/S_ITEMID
      = <rp>-/N/S_ITEMID.
      if sy-subrc ne 0.
          select SUM( /N/S_STRDCOST )  into CORRESPONDING
          FIELDS OF wa_DSO_TABLE from
          /N/ADSP_DPIT00 WHERE /N/S_SALESITEM =  <rp>-/N/S_ITEMID AND
          /N/S_PLPLANT EQ <rp>-/N/S_SOURCE.
         if sy-subrc eq 0.
              <rp>-/N/S_STRDCOST = wa_DSO_TABLE-/N/S_STRDCOST.
         endif.
    endif.
    ENDLOOP.
    Any idea whats wrong with the code
    thanks

    Hi Vaidya,
    According to the code which you have written, there is no value in table IT_DSO_TABLE when you are trying to read the values.And after the read statement you have given a condition for sy-subrc. Hence the select statement is actually not even getting executed. *Also you have not assigned the final value back to the ResultPackage.*_
    So Kindly correct your code as follows:
    Data: wa_dso type ty_DSO_TABLE.
    LOOP AT RESULT_PACKAGE assigning <rp>.
    clear wa_DSO_TABLE.
    select SUM( /N/S_STRDCOST ) into CORRESPONDING
    FIELDS OF wa_DSO_TABLE from
    /N/ADSP_DPIT00 WHERE /N/S_SALESITEM = <rp>-/N/S_ITEMID AND
    /N/S_PLPLANT EQ <rp>-/N/S_SOURCE.
    if sy-subrc eq 0.
    <rp>-/N/S_STRDCOST = wa_DSO_TABLE-/N/S_STRDCOST.
    MODIFY RESULT_PACKAGE FROM <rp>.
    endif.
    ENDLOOP.
    Hope this helps you.
    Regards,
    Satyam

  • Display lags when using Projector Setting

    Using the projector setting,  I'm noticing a slight lag when I open/close any of the applications (ie: there is a momentary pause before the window either appears/disappears). Any way to fix that?
    The external monitor is a Samsung Central Station (1920x1080) and connects to the laptop wirelessly via a USB/UWB dongle.
    Cheers!
    Solved!
    Go to Solution.

    Hi Trevor-b,
    Thank you for your responce. To better assist you, I looked into the drivers for your machine and i listed the drivers you should download below.
    BIOS-BIOS Update Utility for Windows 8 (32-bit, 64-bit), 7 (32-bit, 64-bit), XP - ThinkPad T430, T430i
    DISPLAY AND VIDEO GRAPHICS-
    Monitor file for Windows 7 (32-bit,64-bit), Vista (32-bit,64-bit), XP (32-bit,64-bit), 2000 - ThinkPad
    VIDEO-
    Intel HD Graphics Driver for Windows 7 (32-bit) - ThinkPad
    Pease let me know if this resolves your issue.
    Thank you for your time,
    Mack
    ______________________________________________________________________________________________________________Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

  • VM Activation problem when using Internal Virtual Switch mode

    Hello,
    I have setup Windows 2012 R2 Standard Version host machine.  Hyper-V setup successful. Host machine already activate license.
    I have got a problem is when VM connecting with Internal virtual Switch.  It will not able to process Windows activation.  If it connected using External Virtual Switch, it can successful do windows activation.  However, using External Virtual
    Switch, one more WAN IP will be used.
    I am using ICS method to share the network interface to Internal Virtual Switch.
    Is it what problem and how to resolve it?
    Thanks!

    Hi Gyorgy,
    What is the version of your guest operating system? Why not we create an External Virtual switch to access Internet when using Hyper-V guest system? (Some reference if needed:Hyper-V Virtual Switch
    Overview )
    The network connection seems to be fine, if you mean the webpage can't be displayed through Internet Explorer, please take a look at the article below:
    "Internet Explorer cannot display the webpage" error
    For more information, please check:
    Fixing "Page cannot be displayed"
    Best regards
    Michael Shao
    TechNet Community Support

  • Lag when using animated effect

    Hi everyone !
    I have a little problem with my ADOBE AFTER EFFECT CC  Version 13.2.0.49
    When i use animated effect like Rainfall or Twitch from VideoCopilot my After Effect get har lags !
    *Lag when i'm applying the effect
    Here i'm applying RainFall , same lag for twitch or other animated effect
    *Lag when i try to move the layers of the animated effect
    I can post more video of these lag if you need
    Can you help me please ?
    I can't work ....

    I have :   Intel Core i7-4710HQ CPU 2.50GHz
                  32 Go Ram
                  256 Go ssd
                   1 TO HDD raid 0
                   GTX 880M   8Gb
    Footage :   1080p 59.94fps Gopro Video
    Before thos problem in all gopro video i never get lag but now i get these lag and i want to fix this problem thanks 

  • Macbook lag when using Parallel Desktop

    I always use Parallel Desktop since when college portal website only can be accessed by Internet Explorer, so I installed Windows Xp. The thing is it really uses a lot my RAM memory, only 20 MB of Ram is free. In Parallel Desktop configuration, I have changed the RAM slot for virtual machine, I just allocated 1064 MB Ram, and it ticked for " the best performance" or in other words I let the processor to do the adjust automatically so my Macbook can run at its best performance. I have also changed the processor in virtual machine to 2(dual-core) but still my macbook lags when I run Parallel Desktop. My HDD is 160GB and I have occupied more than of it, like 60 GB left. I have a lot of vital programs so I wonder if this thing is a major cause of this lagging problem. Any advice what should I do to speed up my macbook performance back?

    If you want your Mac to run better, turn Parallels down to 1 core and bump the ram down to 512Mb. Having the RAM up high and the cores up high will allow Parallels to grab more of the resources, thus slowing down the whole computer. Limit parallels to less, you shouldn't give it 50% or more of your machine unless all you do is Window stuff.
    Check your graphics config too, if your not playing games in Parallels, turn off 3D graphics and only give it 16 or 32Mb VRAM.

  • External drive doesn't show volume when used internally (and vv)

    I have an early 2011 MBP 17" where I have replaced the optical drive with the 750G hard drive that came with the computer. in the hard drive spot I put in an SSD. Recently I got a 1T 2.5" drive and I want to copy all the files from the internal 750G to the 1T and then put the 1T in the optical drive bay to replace the 750G.
    I got everything copied to the 1T drive via USB - i put the drive in a USB 3.0 enclosure that I've used before with this machine. everything copied fine. so i swapped out the 750G for the 1T in the laptop. when I booted up, the drive did now show in the finder. in Disk Utility it shows up as a device and the indented volume is a greyed out and showing a system volume designation (something like disk3d or whatever the OS uses for this [I didn't make note of the specific volume name]). when I put the disk back in the USB enclosure, it worked fine.
    So i formatted the 1T in the macbook, interally, and it works fine that way. but when I put the 750G in the external enclosure, thinking I could copy the files that way [external to internal]) - the 750G does the same thing: the device shows up ok in Disk Utility but the volume is grey and shows as an OS volume name. like the 1T I am not able to mount it or do anything other than format it.
    So I am at a loss. why can I not copy files to an external drive and put that in the machine internally? this is the way I've done this kind of thing over the years. this is the first time I am doing this with the MBP. what can I do in order to get this to work so I can get all the files on the 750G onto the 1T and work in my MBP?
    I know I can leave the 750G in the computer, connect a drive and copy it all over to it. then put the 1T in the computer and copy all the files off the external drive to the 1T. likely this would work. however a) i don't have a large enough external drive to do this with and b) i'd like to understand what is going on here and solve it as i may need to do this in the future.
    any ideas?
    thanks!

    How did you backup your internal hard drive to the external?  In order to boot a Macintosh has to be partitioned using the GUID scheme and then formatted as Mac OS extended Journaled. Both operations are performed in Disk Utility. You can clone your drive to to the external using a utility such as Carbon Copy Cloner or Super Duper. I'm not sure what you expect to accomplish without install discs. When you clone a drive you're making an exact copy. You shoud probably look at calling Apple and requesting a set of original discs or purchase a full install of Snow Leopard at http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • Extreme mouse cursor lag when using Accessibility Zoom (Fullscreen) in Yosemite

    I have a Retina MacBook Pro running OS X Yosemite (10.10), clean installed, connected to an external Thunderbolt Display. When I zoom in using Accessibility, I experience a very prominent lag, moving my mouse cursor (either with my Magic Mouse or Magic Trackpad or the built-in Trackpad) around or when zooming out. It is especially visible when zoomed in on applications like Calendar and Mail. This never happened in Mavericks. My settings are as follows.
    I've tried creating a new user account on my Mac and the problem still persists, which leads me to believe it's a bug with Yosemite.
    Anyone else have the same problem?

    I also have the same exact problem. I have a i5 iMac Mid 2011 with an upgrade to 10.10 Yosemite connected to an external display. I like you never had this issue with Mavericks. Zoom is so painfully slow now that I had to disable it. My iMac has 12 GB of RAM and even with no apps opened, zoom is killer slow.. makes me want to punch a wall-kinda slow.
    I think it's clear to say that something is up with 10.10.. some bug.
    Apple please fix us zoomers

  • 6.0.1 : Apple tv lag when using airplay (mirror) on macbook pro...

    Hi,
    I have recently bought a new apple tv (october 2013) partly for airplay (mirror) with my macbook pro.
    Since the 6.0 version when i use my macbook i have some video lag..
    I updated to the 6.0.1 and since.... it's worst !
    I need your help i'm becoming crazy...
    1- My tv : Samsung UE40EH6030 LED 3D
    2- I'm using a 2011 mac book pro 2,3 GHz Intel Core i5 with 4gb memory (10.9 Mavericks)
    3- I have checked my internet connection (best canal : 11)
    Thanks

    Mac OS X 10.9.1 has fixed the problem for me.
    Pixelation is gone.
    The delay between mouse/keyboard input and display is noticible but manageable.
    Streaming video works well (with audio / video just a tiny bit out of sync).

  • Phone lagging when using imessage

    When ever I am in a group imessage, my phone "freezes and lags". Any idea why? Does this happen to anyone else?
    Using iphone 5 on Verizon.
    Thanks
    SS

    Do you have a large number of messages?
         If you can afford to get rid of a few conversations, that can always help.  
    Is your phone on the latest software?
         settings>general>about>software version. should be 6.1.4 If not, backup and then update through itunes.
    you can also sign out of your imessage and then back in..
    good luck:)

  • Experiencing severe lag when using browsers?

    Hi there. Up until very recently my MBP has been performing well, with little to no lag, save for during really heavy use. Recently upgraded to 8 GB of RAM as well and until this week it's been fine, but lately, whenever I use either Chrome or Safari, the entire machine just slows down and becomes largely unresponsive until I force quit whichever browser I've chosen to use.
    I've searched everywhere to see if anyone else had been having problems like this, but couldn't return anything, so really hope someone here can help. It all. Ht freezes as soon as I open Chrome / Safari, and that then slows down every other application that I might be using. I've even tried running just a single browser, but it's always the same thing.

    Hello, donieose. 
    Thank you for visiting Apple Support Communities.
    Here are some troubleshooting steps that I would try when experiencing this issue.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    http://support.apple.com/kb/ts3230
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/ht1199
    Cheers,
    Jason H.

  • Video lag when using apple remote app

    I'm running iTunes on a vista machine.....iTunes runs great but when I use the remote app on my iPad I get video stutter........music is fine. any help would be great...........
    Thanks
    Applesinafton

    How about rephrasing your original question as I find it confusing and likely incomplete.
    People will try to help but they must understand your question.
    Also they are less likely to help a poster that bashes someone trying to help.

  • Lag when useing simple programs

    Hi
    ok i have a problem with my macbook pro 13" 2.4GHZ 4GB ram, basically when i use Firefox (mainly Javas and videos) or World of Warcraft the display Laggs a lot and so does the cursor, sometimes so bad i cant quit the program. i have been advised to make a new user to see if that stops it, yet it doesn't.
    Can someone please give me some advice. Thankyou, Jack

    Good job Jacksears-
    Next step would be to re-install the 10.6.7 Combo_Update. See if this helps especially if you just ran the software updater and installed the "delta update." Repair permissions after installation.
    Jacksears wrote:
    just scanned the machine for any viruses and its all good.
    I do not know what anti-virus you have on your Mac, but some are known to slow things down and are of no value on Mac. YMMV. You might try un-installing the AV package.

Maybe you are looking for

  • External hard drives and Error Code -36

    Just wanted to know if anyone knows what this error code means. I tried copying a bunch of video files about 600-700 mb to my USB external hard drive, and this error message popped up and said the disk could not be read or written to. I contacted the

  • Spry validation textfield - required condition

    Can anyone help me with the Spry validation text field... I have a form for which I wish to be able to use for 1 to 4 users to fill in, if at the beginning of the form they select 2 users then I wish to then change the 'isRequired:false' to 'isRequir

  • XI Post installation steps

    Hi, I'm trying to get XI going at a project.  The basis guys have installed the server but I have an idea none of the 'post installation steps' have been completed. The symptoms are that when I start the Integration Builder (SXMB_IFR) the Windows 'Fi

  • Checkout to word without checkout permissions.

    In a document library with checkout / check in switched on, when a user without modify permissions opens a document in word it shows a checkout panel on the top. It will allow the user to checkout and try and save but it will not let them save becaus

  • Why should I pay for upgrade to CS6 twice?

    Dear Adobe, I upgraded from photoshop CS3 to Photoshop CS5 last November as you said we will be not able to upgrade from CS3 to CS6 directly anymore. And now, you changed your mind and users are still able to upgrade from older versions. If I would w