Locking SMPTE position not functioning as expected

After I've locked a region's smpte position and resize it from the bottom left corner, the region does not 'snap back' to the "locked" position as I understand it should.
Am I missing something?
I'm on Logic 8.01
Thanks,
Shaun

mlabriola wrote:
Eric,
there was a bug surrounding this issue. Latest bits in SVN should have it corrected. There was a difference between the docs and code.
if you get the latest, it will work as is, or, you can change the word expects to expected and it will likely work in yours.
It the new version it accepts either,
Mike
thanks mike, you're right

Similar Messages

  • Baffling: Locking SMPTE position of events within a region

    So I have a project with lots of tempo changes and MIDI notes recorded to it. I now wish to paste those notes into another project with a fixed tempo (120bpm) but preserve the original positions (reflecting the tempo changes) of the notes. I don't need to have a grid or anything for this region, I just want the notes to appear at the same SMPTE positions as the original project but in a fixed tempo project. I hope this is clear...
    So, I figured it's simply a case of selecting the original region in the first project, opening the event list and selecting Functions>Lock SMPTE Position. This does indeed bring up the SMPTE lock symbol next to each note (looks promising). So presumably I can simply paste this region into a new project with a fixed tempo and the notes will appear at the same position as the original region... but alas no. The notes are simply locking to the new project tempo and not preserving the original SMPTE position.
    Can someone please advise me if this is the correct way of doing this, or what I'm doing wrong because I cannot get this to work and I can't think of any other way of doing it. Cheers!

    SMPTE-Lock everything (including automation) in the old project.
    Set the old project's tempo to 120.
    Copy-Paste or drag all Regions over to the new Project.
    Christian

  • Bought a Mac Mini.  at 18 day's old it started to lock up and not function.  Took it in and they wiped and reinstalled it.  Well at 24 day's old it's been sitting in the box not being used.  First and last Mac for me. But can I get something for the junk?

    I have pulled it out of the box and put 2 Mac approved mem sticks in it to boost it to 8 Gigs mem and it still locks up and freazes..  So many people told me Mac was the way to go...  1500 dollers could have bought me a great pc laptop.  Now I have a wirless mouse keyboard and a mac mini (aka Brick) that allowed me to donate money to a cause that is helping buildings and companies out side of the US.  While I have junk..  It's still under warranty and I reinstalled the os after the new mem sticks.  Again.. locks up and does nothing.  What can I do with this?  Toss it in the trash?  Any info on what I might do with it.. Please help!

    It would be most helpful if you updated your system information:
    Please reconcile the following
    at 18 day's old it started to lock up and not function. Took it in and they wiped and reinstalled it. Well at 24 day's old it's been sitting in the box not being used.
    ... I reinstalled the os after the new mem sticks.
    If your Mini is anything less than six months old it would be running Lion, not 10.6.1, nor would it have been necessary to "reinstall the OS". Any help that anyone can provide is predicated on your system configuration so it's important.
    If you are running Lion then boot your Mini while holding the D key. This will load Apple Hardware Test which will enable you to test your memory. "Mac approved" memory is sort of vague, and even memory that is allegedly designed to meet your Mini's specification may fail. There few reputable memory vendors.
    "Apple installed" memory is more meaningful, and indicates Apple has tested it and guarantees its function. Otherwise all bets are off with a claim of "Mac approved". You will have to verify that yourself with Apple Hardware Test.
    If your Mini was running, or ever ran OS 10.6.1 for that matter, it is close to three years old.
    You must clear up these uncertainties before anyone can help.

  • SCM Upgrade 4x to 7 Macros have issues not functioning as expected

    Hi All,
    We have upgraded SCM 4x to 7 and some of macros are not functioning as expected.
    This is a start macro Specifically for lay out attributes macro where many of the key figures are editable, which are not suppose to be.
    I have deactivated and activated, I have also verified the syntax of the production and quality macros. I did not find any difference. but behaving differently.
    Please share your thoughts any one come across this kind of issues.
    Appreciate your help.
    Thanks,
    Sreeni

    Sreeni,
    When you upgraded from 4.1 to 7.X, did you have to go throuh any interim steps like to 5.0 or 5.1 first.
    My understanding is that you can go from 4.1 directly to 7.0.
    Can you share your experience. Do you have any lessons learned that you put into a document that you would share.
    Shane

  • Notify when self password reset is not functioning as expected

    Hi Team,
    We are on EP7 and we have enabled the users to reset their own passwords.This function works at times and few occasions users don't receive emails after reseting the password. All the required configurations are in place. So we are caught in a situation where we are not sure whether to advise the users to use this function or we do a manual reset of passwords for them.
    Is there anyway that we get a notification when this particular service is not working as expected.
    regards
    bharat

    Hi,
    you told that it is working for some users.
    check the email id property of users for those who r unable to get email or smtp server down at that time?
    whether that particular email domain is allowed from smtp server.
    Regards,
    Koti Reddy

  • So just today I was going to check the time on my iPod Touch 4th Gen, and I noticed that the lock button was not functioning, on closer inspection, it appeared as it had just gotten stuck in the pushed position.

    This afternoon I was doing things and needed to check the time, I pressed the lock button so it would show the time, but the button would not press. I looked closly and saw the button was stuck as if it was pushed and didn't come back out. I CANNOT lock my iPod using the button.
    More details:
    -4th gen. iPod touch
    -Small dent near lock button
    -32GB
    -2 Years old.
    PLEASE HELP

    First, have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?
    Next
    - Make an appointment at the Genius Bar of an Apple store. Maybe they can unstick it
    Apple Retail Store - Genius Bar                          
    If they can't
    Apple will exchange your iPod for a refurbished one for $99. They do not fix yours.
    Apple - iPod Repair price              
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Fix it yourself if you are up to it
    iPod Touch Repair – iFixit

  • AppleScript to play playlist starting at certain track not functioning as expected...

    I'm trying to write an AppleScript that scans a playlist called "iMac Shuffle" and finds the last song that was played in the playlist by comparing the last played date of the next track to see if it is less than the current track, in which case play that track. This is my code so far:
    tell application "iTunes"
         set i to 1
         repeat while played date of track i in playlist "iMac Shuffle" < played date of track (i + 1) in playlist "iMac Shuffle"
              set i to (i + 1)
         end repeat
         reveal track (i + 1) in playlist "iMac Shuffle"
         play track (i + 1) in playlist "iMac Shuffle"
    end tell
    It finds the correct track and begins playing, but when the track ends, it always seems to skip to the song after the last tracked I manually started playing.
    For example, I manually played track 3 but paused it halfway through. I ran my script and track 6 started playing, which is correct according to the last played date, so all is well. However, when track 6 ends, instead of track 7 playing, track 4 begins.
    This is incredibly frustrating. Does anyone know why this is happening?

    This is, I think, the expected behavior. If itunes is playing a playlist, and applescript interrupts to play a different song, then next track ought to send it back to the next track in the playlist before the interruption, not the next track after the interruption. The workaround is not to use the next track command, but specify tracks directly.  i.e.:
    tell application "iTunes"
              set t to (get selection)
              repeat with i from 1 to 5
                        play item i of t
                        repeat until player position > 3
                                  delay 1
                        end repeat
              end repeat
      stop
    end tell

  • [Test(expects="Error")] not functioning as expected

    When testing against implementation code which is expected to throw an exception the test fails even when the expected exception is thrown.
    I broke this test down into a very simple example to help illustrate the issue:
    public class ExpectsExampleTest
        [Test(expects="Error")]
        public function testExpects():void
            throw new Error();
    The above code result in the following error:
    6/11/2009 23:23:39.519 [WARN] FlexUnit4 There was 1 failure:
    6/11/2009 23:23:39.522 [WARN] FlexUnit4 1 tests::ExpectsExampleTest.testExpects Error
    Not sure if I am missing something or not, however the implementation appears to be correct.
    Thanks,
    Eric

    mlabriola wrote:
    Eric,
    there was a bug surrounding this issue. Latest bits in SVN should have it corrected. There was a difference between the docs and code.
    if you get the latest, it will work as is, or, you can change the word expects to expected and it will likely work in yours.
    It the new version it accepts either,
    Mike
    thanks mike, you're right

  • Locking up, screen not functioning properly- what's wrong?

    My first smart phone and only limited experience with a borrowed Iphone. Initially I was impressed with the capabilities and now no real need to take notebook when traveling. However, in the first week the phone totally froze after taking a pic and then trying to open the Gallery app. Performed reset by removing the battery, which is annoying and seems crude compared to pushing a reset button with a pen tip. About a week later, the pinch and expand zoom function quit working, but everything else seemed OK. Performed another reset. Is this normal smart phone behavior? Is the phone defective and should be returned? When it fails again, I plan on taking it to Vz store without doing a reset. I have no time or patience for another buggy tech device. Computers, mp3 etc are enough

    Out of curiousity are you using a task manager, it sounds like you may be running your resources thin, many say using a task manager isnt wise but all my issues with lock ups and lags went away when I installed a task manager, besides I feel that running 10 or 15 apps in the background doesnt make any since...  If not installed give Advance Task Manager a try, its free on the Market, but remember to activate auto and exclude needed apps..
    Check here for my perfered settings, with these I havent had any issues....
    http://forum.androidcentral.com/motorola-droid-x/21522-please-read-important-information-regarding-task-killers-5.html#post269461

  • ARD 3 : Custom "Lock Screen Picture" not functional?

    It seems as though things have changed with the way that the Lock Screen Picture feature is handled from ARD 2, whereas now the only working solution I have found is to swap out the Lock.jpg file located in "/System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/S upport/LockScreen.app/Contents/Resources".
    Obviously this is not an elegant solution, but at the present it seems to be the only approach I have found that works.
    Has anyone been able to get the documented approach to work? Is there a different way that is easier to deploy?

    As per the subject of this post, that technique does not seem to work now.
    I've attempted the following:
    - a custom "Lock Screen Picture" w/ and w/o an extension in /Library/Preferences
    - w/ Quicktime & Preview as the associated applications
    - a copy of the original Lock.jpg from the package as the file
    None of these things work, whereas the approach I mention earlier does.
    I guess I should have reiterated in the body of my message that the solution you point out is not working (at least for me).
    S
    FYI - it is still page 139 in the final manual, but now part of Chapter 8.

  • TDMS file viewer not functioning as expected

    I'm new to LV so I'm probably doing something obvious to the battle hardened among you, I'd appreciate a hand!
    I've got a cRio that's running a modified version of one of the datalogging examples, and it's logging to its internal memory, which I FTP into and collect when done. But I'm having some issues with viewing it after. I've created a VI on the host system that looks for the TDMS files on the C drive of the host. I log a file with name "data". I copy over the TDMS and TDMS_Index files to the C drive of the host computer and run the TDMS fileviewer VI on the host, which checks for the file existing and opens it. If the file isn't there it complains, of course (but shows old data in the background). If it is there it opens it. However this is where the problems begin.
    The index headers for the top of the columns of data seem to be changed inside the files but do not always change in the fileviewer output, and the data seems to never be updated with the new data, despite all files having been erased in between runs. I've tried 4 or 5 re-loggings and always get the old data, and often the old indexes. Out of curiosity I changed the log filename to "data2" and changed the viewer path to the new file, copied it across and opened it and it worked flawlessly. Then delete-all and re-recording with the "data2" filename the problem returns - old data held until filename changed.
    The files on the CRio and host are definitely changing each time - their sizes vary when copied across - but the viewer VI doesn't seem to reflect any changes unless the filename is changed on each run, which is a pain. I assumed LV may have some sort of cache of the data, so tried closing LV down each time but it didn't help at all.
    Any ideas? As I say, probably something very obvious but I'm new to LV and haven't spotted it.
    Cheers

    Hey James,
    Your code seems fine; I won’t be able to run it as I don’t have access to
    the Hardware at the moment our RIO is currently under test. However I would
    like to get a screen shot of the TDMS file viewer and also a copy of the TDMS
    file, a brief description of how you want the file edited would be perfect. I
    have done some small re-architecting to your code also. I have just moved the
    data display to the host, as in your "untitled" VI you had a timed
    loop and a normal loop in the same frame. The normal loop in this condition
    will take priority over the timed loop and this could be the reason behind the
    strange data logging experienced in your system. Remember your rules of data
    flow in LabVIEW, so long as all you functions are joining via wires they will
    execute in order and therefore there is no need for sequence structures.
    I have attached the modified code to this post.
    Regards
    Andrew George @ NI UK
    Attachments:
    Host.vi ‏17 KB
    RIO.vi ‏86 KB

  • HT3737 Desktop directory not functioning as expected

    When I open up desktop as a window (directory) the listing options are grayed out, so if, for instance, I want to list by "Date Modified" it will not work.
    All the listing options at the top of the page are non functional, where can I fix this? OSX Lion 10.7.4
    Thanks!

    Thanks for responding so quickly.  I had just determined it was a "pin" issue.  I removed the pin and now it works normally.  Seems like mobile browsers should be allowed to scroll horizontally while zoomed in even if the menu bar is pinned.
    The test site is www.creativegraphicsnc.com/hold/bluedog
    I'm a Sitegrinder user looking to make a change and am new to Muse.  I've got a lot to learn.

  • Process not functioning as expected

    APEX - 4.1.0.00.32
    DB version - 10g
    Web server architecture - OHS
    Browser - IE8
    Theme - 9
    I have two processes set up to capture audit trail information, (date and user that created a record, date and user that last updated a record). The create process is working as expected but the update process is not.
    create process is "on submit - before computations and validations"
    the code in the process source is
    :P6_CREATE_DATE := sysdate;
    :P6_CREATE_USER := v('APP_USER');
    :P6_LAST_CHANGED_DATE := sysdate;
    :P6_LAST_CHANGED_USER := v('APP_USER');
    I have the conditions set to "pl/sql expression" and expression is "nvl(:REQUEST,'-1') in ('CREATE')"
    that works fine, but the update is "on submit - before computations and validations"
    the code in the process source is
    :P6_LAST_CHANGED_DATE := sysdate;
    :P6_LAST_CHANGED_USER := v('APP_USER');
    I have the conditions set to "pl/sql expression" and expression is "nvl(:REQUEST,'-1') in ('SAVE')"
    I have put a message in the process success message, and can see that the update process is running, but the code is not happening as I am not seeing the date updated.
    Thank you in advance for any assistance.

    I have put output statements in with the code and I can see the page values being set, but when I turn debug on and check I can see the update happen but the two fields I am trying to update are not part of the update statement, it is like Apex does not recognize the values have changed.
    These two fields do get picked up a part of the insert on a create so there should not be anything wrong with the fields.
    very confused.

  • My note 2 just started locking up and not functioning properly out of the blue...any advice.

    My note 2 has been working great for over a year without any issues. This morning it locked up for the first time and is now having problems. Very slow response times and just not working as it should.
    Any advice out there. Anyone else having issues today?

        Smwmustang,
    Lets get your phone up and running again! Now that it's been a couple days, how is it responding? If it's still slow you can try the steps in our amazing Trouble Shooting Assistant http://vz.to/1grhkqT to get  things going again. Let us know if the steps there do not work, and we'll be happy to do some advanced trouble shooting with you.
    SarahO_VZW
    Follow us on Twitter @VZWSupport

  • Custom "Lock Screen Picture" not functional?

    Hi, the Remote Desktop manual method of changing the lock screen picture still doesn't work for me.
    Am I doing something wrong?
    Method from Apple Remote Desktop Manual:
    1 Create a picture using a graphics program, such as AppleWorks.
    2 Save the picture in PICT, TIFF, GIF, JPEG, or any other QuickTime-compatible static image
    format.
    QuickTime-compatible movies or QuickTime VR objects cannot be used.
    3 Name the picture “Lock Screen Picture”.
    4 Copy the “Lock Screen Picture” file to /Library/Preferences/ on the client computer.
    PowerMac G5 Dual 2.3ghz   Mac OS X (10.4.8)  

    The method listed in the manual has never worked and still doesn't, as far as know, with 3.1, though I haven't tested it with 3.1 myself yet. The only working solution I have found is to swap out the Lock.jpg file located in
    "/System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources".
    Regards.

Maybe you are looking for