Hold on Frame until cuepoint = end

Hi all,
I am still struggling with a basic problem (yes I am a lingo
newbie).
Simply, I want to hold on a frame until a sound is finished.
I am trying to write something that checks if the cuepoint "end" is
reached, else it loops. If cuepoint "end" is reached, then it
should go next marker.
I know it sounds simple, but I am lost here.
Any ideas would be great and helpful! Thanks in
advance!!!

This is the script I was using - placed in the script
channel. I wasn't
checking for the name of the cuepoint, just that one had
occurred. But,
I'm, sure you can modify it a little bit to find the name.
--Holds playback head on frame until cuepoint is passed in
audio file
--Audio file must be in sound channel 2
--(Use Sound Forge to place markers in audio file.)
--(Use for slide shows.)
on enterframe
if soundBusy(2) = 0 then
go to the frame + 1
end if
on cuepassed channel, number, name
go the frame + 1
end
on exitFrame
go to the frame
end
> Simply, I want to hold on a frame until a sound is
finished. I am trying
> to
> write something that checks if the cuepoint "end" is
reached, else it
> loops. If
> cuepoint "end" is reached, then it should go next
marker.

Similar Messages

  • When receiving an call waiting can't push the hold and answer button.Because: it will put on hold the first caller, answer to the second, but you can't hear the second until you end the first call !!! Anyone has the same problem ? Did anyone know why ?

    When receiving an call waiting can't push the hold and answer button.Because: it will put on hold the first caller, answer to the second, but you can't hear the second until you end the first call !!! Anyone has the same problem ? Did anyone know why ?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Embedded video plays and then shows frame one at end.

    Hi,
    I have an embedded video that is approx 500 frames. It plays through but at the end, when it stops, it shows frame 1. At the end of the video I have placed stop();
    Any ideas on how to get it to stay at the last frame at the end?
    Thanks for any help.

    If you are playing the video in the timeline, shorten the number of frames that the video occupies until the video stops at the end. If yo are using the FLVPlayback component, set the autoRewind property to false.

  • Hold On Frame

    I'd like to hold the timeline from progressing while it plays
    some short Movie Clips, that are placed on one frame. If I don't
    stop the timeline, it'll pass right over them and you don't see the
    MC.
    There are actually three layers, all with different, short
    MC's on each layer.
    Is there a simple Hold On Frame (for a pre-determined amount
    of time) Script, or can I use an ActionScript to Stop, Play this
    MC, and Proceed?
    I could stop the timeline in Director pretty easily, but I
    don't know how yet in Flash.
    Thanks!

    Well, this makes sense, but I may not have it right yet.
    Almost!
    I have a Stop action on a layer, at the end of this scene.
    Three MC's are on three layers, at the end of this scene.
    I now have your _root.gotoAndPlay at the end of each of three
    MC's (each on a layer, of course), but when I test this scene it
    loops all three MC's over and over.
    I'd like it to move on to the next Scene, after playing each
    short MC.
    Does using _root tell the timeline to return to the first
    frame of this scene, and Play?
    How about simply using gotoAndPlay
    Thanks! I I have to, I can post my .FLA.

  • Holding/lacking frames when Ram Preview. Mac OS X Yosemite

    Do anyone know if Adobe is looking into fixing the problem with RAM preview your timeline in After Effects. That is lacking/holding/skipping frames the first 15-30 frames, and you have to run it once to the end, to see the beginning. It's really an issue for your work flow, and even more annoying when you have clients sitting next to you?
    I checked with several other people too, just in case I might be my computer, but they have the same issue too.
    Adobe wrote this" Adobe and Apple have worked closely together to test Adobe Creative Cloud applications for reliability, performance, and user experience when installed on Intel-based systems running Mac OS X Yosemite (version 10.10). " which seems like they might have missed this one?
    If someone have a solution please let me know.
    Best,
    Kasper

    It is an Apple bug. We have a fix to work around this bug in development, and we intend to release a version of After Effects with this fix this spring.

  • Wait on frame until video finishes?

    Hello,
    Does anyone know if there's a way to tell flash to wait on a
    frame until a video finishes playing, and then go to the next
    frame? (I'm using progressive download. It has audio that needs to
    stay in sync.)
    Thank you for your help!

    kalibahlutwo,
    > I have imported an FLV and on import chose
    "progressive",
    > rather than embedding the video, because I read that if
    the
    > video has audio in it, it will stay syncronized better
    with
    > progressive than with embedded video.
    I can neither confirm nor deny which plays better. But it's
    good to
    know we're dealing with external video.
    > Flash automatically put the video into an FLVPlayback
    > component.
    Yupper. :) Now we're getting warmer.
    > I would like to have the video play to the end, and then
    > have the Flash movie automatically go to the next frame.
    Here's the scoop. Just about everything in ActionScript can
    be
    described as an object. Objects are defined by something
    called classes,
    which you may think of as object blue prints. The FLVPlayback
    Component,
    for example, is defined by the FLVPlayback class, and you can
    look up this
    class entry in your documentation. Components are listed in
    the Component
    Language Reference and ActionScript clases are listed in the
    ActionScript
    2.0 Language Reference.
    Classes define the properties of an object (the
    characteristics it has),
    its methods (things it can do), and its events (things it can
    react to). So
    class entries should definitely be your first stop, always.
    If you're
    dealing with a movie clip, look up the MovieClip class. If
    you're dealing
    with a dynamic or input text field, look up the TextField
    class, and so on.
    Consulting the FLVPlayback class, then, we find that
    "FLVPlayback
    extends the MovieClip class and wraps a VideoPlayer object.."
    Okay, what
    does that mean? Well, in this context, it means that any
    FLVPlayback
    instance -- such as the one on your Stage -- contains all the
    features
    (properties, methods, and events) of a movie clip, because it
    *extends* the
    MovieClip class. So this particular case is something of a
    wild goose
    chase. Normally, the answers you want are already at hand.
    FLVPlayback is
    a little different. But the documentation continues: "... and
    wraps a
    VideoPlayer object," so now we know to get more information
    by looking up
    the VideoPlayer class.
    Bingo. Here's were we find the answer. The VideoPlayer class
    includes
    an event VideoPlayer.complete (see the Events summary in its
    class entry).
    It also contains a method VideoPlayer.addEventListener(),
    which means we can
    "listen" for the complete event. Good news.
    So ... give your FLVPlayback Component instance an instance
    name.
    Select it and look at the Property inspector. Let's name it
    vp, short for
    video player. Create a new layer and name it "scripts" --
    this is where
    we'll put your ActionScript.
    var listener:Object = new Object();
    listener.complete = function() {
    trace("complete!");
    vp.addEventListener("complete", listener);
    Here's what's going on. Events of the sort we're dealing
    with can be
    handled with a listener. A listener is just a generic Object
    instance -- so
    in line 1, we're declaring a variable arbitrarily named
    listener. It's of
    type Object and is set to a new Object instance.
    This listener object acts as a proxy for the FLVPlayer
    (actually, the
    VideoPlayer) complete event. Via this listener, we assign a
    function to a
    complete property. In this example code, I'm simply having it
    trace() the
    string "complete!" to the Output panel. You'll want to have
    it send the
    main timeline to frame 2 -- _root.gotoAndStop(2);
    Finally, our FLVPlayer instance, vp, invokes the
    VideoPlayer.addEventListener() method to become a listener
    for "complete"
    events from the listener object.
    Done. Badda bing. :)
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Media Encoder CC 14 renders with black frame at the end

    Hello,
    my Media Encoder running on Mac Yosemite makes a black frame at the end of h264 clips...
    How can i fix this?
    Thanks

    I just figured out - it might be a quicktime viewer problem...

  • I have an iphone4 and that I have had for four years and they are saying that I am not eligible for an upgrade until the end of July 2015. That is four years and 3 months after I purchased this phone. "Customer service" said I had an upgrade at the end of

    I have an iphone4 and that I have had for four years and they are saying that I am not eligible for an upgrade until the end of July 2015. That is four years and 3 months after I purchased this phone. "Customer service" said I had an upgrade at the end of July 2013, which I did not. She said that in the system my husband took an upgrade July 29th 2013. He didn't even have a Verizon phone, he had a work phone with T-mobile. I have asked what device he supposedly upgraded to since no phones have been activated and we all still have our same phones and numbers. Remember at the time, said husband had a work phone with T-mobile. I still have the very same phone as do all of the rest of my family members. No one has upgraded. I spoke with "customer service" for more than a half an hour today, Char promised me that her supervisor (Emily) would call me back by 7:30 tonight to clear up this problem. Well guess what? No call back so where should I go from here? Any advice or help would be greatly appreciated. Thank you for your help.

    someone swapped upgrades.  Phone could have been sold For quick cash. 

  • When I try to launch an adobe application I am prompted to renew my creative cloud subscription even though I'm paid up until the end of the year.

    When I try to launch an adobe application I am prompted to renew my creative cloud subscription... even though I'm pre-paid up until the end of the year. I can't use any of my applications at the moment.

    Another update: The one month free trial software is no longer working for me as a work-around.
    Also: I tried to open up my Adobe applications from two other machines that I have in the house, but it did not work. I received the same subscription renewal popup loop. This leads me to the conclusion that it is strictly an issue on the Adobe Licensing Server side, and NOT a localized issue with something wrong on my system.

  • Hi, I downloaded an album and two of the songs don't finish until the end. I've tried to delete it and put it back in but it didn't solve the problem. any suggestions? is it possible to get a refund if it can't be solved? thanksss :)

    your help will be much appreciated. thanks

    deborah_09 wrote:
    two of the songs don't finish until the end.
    You don't want the songs to finish at the end?
    Or do you mean the songs stop before they are at the actual end of the song?
    Have you tried redownloading them?
    Select iTunes store in iTunes.
    Click Purchased New on the right side under Quick Links.

  • Compressor white frame at the end of WMP

    I want to use compressor and flipformac to produce my windows media files. I have 50 clips to move so I wanted to take advantage of the automation.
    Every clip it finishes as a wmp9 using the flipForMac quicktime plugin has a white frame at the end of it. Any way to get rid of that?
    I downgraded my flipformac to the 1.0.2 from the 2.0 that is there current release because of a known bug that causes floating green chroma crap to appear on the wmp doc. I also tried using Sorrenson Squeeze to batch, but Sorrenson can't compress 720p codec footage that is the DVCPRO HD codec. (again, known bug they are working on). I tried downconverting the HD footage to SD and having compressor do it and still .... white frame. So then I tried cleaner... it just crashes... I hate cleaner.
    sorry for the rant... can anyone help.

    Is there a chance your source footage has the same white frame before you encode it? I've never seen this problem.
    As far as flip4mac, there is a work around in the current version to avoid the green monster. With a Two Pass VBR Constrained, set your Peak Bit Rate to 1.5x. This makes your encode closer to a CBR, but eliminates the compression artifacts. Also in the advanced settings, a shorter Key Frame frequency will improve overall quality.
    Sorry I'm not more help with the white frame. What version of Compressor are you using? I've done close to 100 encodes in the last month and haven't encountered this. What are your source files? Quicktime out of FCP? Reference files?

  • HT1212 ipad is locked as my daughter locked putting in the password wrong too many times. When I try and do a restore it seems to be doing it until the end and it say it can't do anything as it's locked, go to itunes to unlock.. It's driving me mental

    My ipad 4 wif is ocked as my daughter locked putting in the password wrong too many times. When I try and do a restore it seems to be doing it until the end and then it say it can't do anything as it's locked, go to itunes to unlock.. It's driving me mental. tried twice now ...
    I haven't synced with a password, I don't mind losing all the data I just want to be able to use it again !! I'm not sure what IOS it is, not sure it's the most recent, I have a feeling I'm not on IO7.
    Thanks for all your help.

    Force iPad into Recovery Mode. Follow step 1 to 6 very closely.
    http://support.apple.com/kb/HT1808
    Note: You may have to repeat the above a few times.

  • HT4623 what if i want to delete an app; i tap and hold the app until it jiggle, but  there's no "x" to delete.

    what if i want to delete an app; i tap and hold the app until it jiggle, but  there's no "x" to delete.

    If you're talking about deleting (as opposed to closing) an app, you do it just like on previous versions; hold until jiggle, press red X. If they're jiggling but you're not seeing the X, you may need to check your Restrictions. Some apps (Apple included) can't be deleted.
    = L.I.

  • Report who continues formatting until the end

    Hello
    I have a little problem with a report I must review. Normally, you run a report and it stop at first page and you can see it. Later, you will can go to next pages or until the end if you want. But this report continues running until the end without stopping. Can anybody help me?
    Thanks
    Gabriel Garcma
    null

    I don't know if this will help you or not, but I've noticed that when you run a report it will generate the number of pages that you viewed the previous time you ran the report. For instance: If I run a report and look at the last page, it will automatically run all of the pages the next time I run the report, however if I only go to page 5 then the next time I run the report it will only generate to page 5.

  • Audio in a sequence falls silent right until the end of the sequence

    Hmmm, ok, maybe I am completely clueless.... Anyway: I am making a video with 3 dv-clips that I imported previously. When I drag the clips from the browser into the timeline and render them, everything is ok and plays well. Then, after a little editing, i.e. cutting the sequences into smaller pieces, but leaving everything in the same sequence in the timeline, at some point parts from a sequence right to the end of it, fall silent. I can still see the audio in the viewer, but the audio meter itself shows zero audio and I can't hear anything anymore over the speakers. This goes right to the end of the sequence, the next sequence again starts with sound but also falls silent after a while, right until its end. Only the last sequence retains its sound right to the end. The silence starts at some point within a clip of a sequence, but there is no correlation to the marks of the sequence.
    I have not (knowingly) done any audio editing, although I am working on a German keyboard and my menus show some odd commands, e.g. Cmd-Y for Undo because of this (the German keyboard goes QWERTZ and YXCV, so Y and Z exchange places) and I am still hitting Cmd-Z when I want to undo stuff, but Cmd-Z itself does not seem to have any function.
    So, it looks like I am simply inadvertently giving FCX the command to shut up from a certain point in my clip onward right to the end, without actually silencing the data, since it is still visible in the viewer. I am stumped.
    I had this happening to me a couple of times and the last time my only (desperate) remedy was to delete all the clips in the timeline, drag the originals back from the browser into the timeline, render again etc. etc. Well, rendering takes about 3 hours, so I'd rather prefer learning what the heck is the stupid thing I'm doing wrong. Any suggestions, anybody?

    Well, not silly, just desperate;-) I tried a similar workaround. First I re-copied the two clips concerned into the sequence, cut them into pieces (it was a video of a concert, so I cut right after every song) and rendered the pieces separately. All went well, except for the last one, at which FCX had run out of memory again (how much does this s...er use anyway? I have 1.25 gigs of RAM, 4 gigs free on my boot partition and 20 gigs free on the document partition with the video; and NOTHING ELSE running). Anyway, repeating the render for the remaining clip was eventually no big deal either.
    I saved after every step, so I would know, when something went wrong, but nothing did.
    So, right now it runs oK, but leaves a somewhat stale feeling in my mouth, since I prefer knowing where the problems come from. My guess would be either a memory-related issue, or that, due to this strange shift in key commands owed to my German keyboard, I hit the wrong keys a couple of times and those did something elaborately strange to my audio tracks. Well, when it comes up again and I can catch the culprit, I will let you know. Thanx for your input for now;-)

Maybe you are looking for

  • I am trying to setup port forwarding

    I am trying to setup port forwarding for a mfi 5510l hotspot. I have made the changes on the hotspot but the hotspot doen't respond when tested. Can anyone help?

  • Acrobat Pro 6 Average Daily Production and Math.round problem

    Acrobat Pro 6 Average Daily Production and Math.round problem (Production.0) (154) (whole units) . (Production.1) (90) (fractional) / (divided by) 31 (days) results in (Average.0) (4)(whole units) . (Average.1) (10) (fractional) using :Math.round.� N

  • BAPI to change INFO record and Scheduling Agreement (ME32)

    Can anybody tell me what is the bapi function module used to change the info record and a bapi function module used to change the scheduling agreemnent (ME32)

  • Satellite A110 - How to reinstall Windows XP?

    Hi, I have a very serious problem. I had to format my hard drive, and now, I want to reinstall Windows XP OS on my machine. The serial key is written under my keyboard, but I don't know how to specify it during the installation process. Can i write a

  • The A12E1 error on installing Adobe CC

    Have been working on this all day. I have tried everyone's workarounds. I now give up. Adobe you have me beaten. I cannot use your flagship paid for subscription on my windows 8.1 computer. I do not want to try to fix it anymore, I feel I have done m