Movie Loop Question

Hi,
I created a movie located at this site
http://www.antiochxc.com/dtc/flash/
How do I get it to stop looping and to stop so it reveals the
image? I don't want it to just stop and show nothing.
Thanks in advance.

Add stop(); to the last frame...
And try following some tutorials on the subject "basic
actionscript".

Similar Messages

  • Make flv within a flash movie loop (or entire movie loop?)

    I am needing to make the flv loop from my .fla file which contains .flv files. I know there is a piece of AS 3.0 I need in order to make them loop/make the entire movie loop but I am not sure what it is.

    Well,
    in AS2 you need to use this code in the flv object:
    on (complete){
    this.autoRewind=true;
    this.play();
    Hope it helps

  • Hi.. Im wondering if its possible to automatically launch a quicktime.mov file on my home page of my website, so that everytime the go back to it the .mov loops around

    Hi.. Im wondering if its possible to automatically launch a quicktime.mov file on my home page of my website, so that everytime the go back to it the .mov loops around

    Like this?
    Click to view full size
    OT

  • IMovie 6 HD - Export Movie Size Question

    There is a confusing list of movie export size options that I need to get your clarification about. Some of the selections seem to be similar.
    To see what I am referring to go into iMovie HD 6, under the SHARE menu, go to Save Movie For: Expert Settings Export Settings > Select Movie to QuickTime Movie (then hit the options tab to the right > Under the Video Section, select SIZE - note the Export Size Settings - DImensions drop down list. Note there are two sections. The last two items in the top section listed are (exactly worded as) 1280 x 720 HD and 1920 X 1080 HD. In the bottom section the last three entries are HD 1280 x 720 16:9, HD 1440 x 1080 16:9 and HD 1920 x 1080 16:9. What's the difference, for example, between the 1280 x 780 HD and the bottom one HD 1280 x 780 16:9? I ask because my HD camcorder movie footage (shot at 1080i, 29.97, 16:9) with an HV30 exports smooth at 1280x720 HD but jerky at HD 1280 x 780 16:9. They sound the same, but one is jerky and one smooth.
    The other question I have is 1440x1040 is 4:3 ratio. But it exports at 16:9 aspect ratio. I don't understand why.

    Donna:
    While I have a lot of video editing experience with an SD digital camcorder, the Canon HV30 HDV cam is new to me. So I am experimenting. That said, footage that will be shot will end up in a couple of places. Some of it will be passed onto my company's web master for posting to the web in some kind of Flash video format. Other video will be used in Keynote presentations as full screen video clips. Others will be used as source video for creating 4x3 SD clips for PowerPoint on a PC by others. So, the video will be used in different formats. (In what format to shoot is another question, but I have concluded (I hope correctly) that I should just shoot HDV 1080i since it seems to be the easiest to deal with for uploading to iMovie6 HD.)
    The purpose of my inquiry was to determine what the various selections are used for and what they do. Sometimes the video is jerky, sometimes an identical movie size is smooth (but must be rendered or processed differently). I was only trying to determine why there appeared to be repetative choices in the list of movie sizes as I mentioned in my original post. To be blunt, iMovie 6 HD documentation is spotty at best. The O"Reilly books don't cover the hard parts.

  • Apple Loops Questions

    1) Where does Logic store user-created loops that I've added to the library?
    2) What is the easiest/best way to convert a regular .aiff or .wav file into an apple loop?
    3) I'm getting a lot of artifacts when I use loops I created--even when the loop is being played back at the same tempo as the original! Is this normal? You'd think that if the original cut was 120 BPM, and I turn it into an Apple loop, and stick it into another project at 120 BPM, there should be no artifacts, right?
    4) Sometimes when I click "add to loop library" Logic won't let me select "looping" as an option. This is after I've already analyzed the cut in Apple Loops Utility. What's up with that?
    Any help, insight or guidance would be appreciated.
    Thank you!

    zgogor wrote:
    1/ apple loops folder / check them ....
    I see folders for all Apple's loops and jam packs, but nothing for my loops.
    Edit: Found them They are at:
    ~/Library/Audio/Apple Loops/User Loops
    Before I was checking the root /Library, which is why I couldn't find them.
    2/ apple loop utility application / check it ...
    I have been using it, but considering the strange behavior I'm getting (see question #3 and #4) I think I might be missing a step or doing it wrong. Right now I open an audio selection in Apple Loops Utility, fill in the tags, mess around with the transient sensitivity, then "save." So why can't I add it as a loop after that?
    3/ no of course.
    Any idea what I might be doing wrong?
    4/ add to appleloop library doesn't mean it is converted, check appleloop utilty first then add them to the Lib
    I did use the loop utility first. I mentioned that in my original post.
    Message was edited by: Zachary Conlyn
    Message was edited by: Zachary Conlyn

  • ABAP Loop Question for next record

    Hello All, I am new to ABAP so please forgive this basic question. The below is a snippet of code I have in a ABAP Proxy.
    Here is a snippet of my code:
    DATA: ls_item    TYPE ZSHOPPING_CART_IN_BBP_PDS_SC_I.
    DATA: i_item     TYPE TABLE OF bbp_pds_sc_item_icu.
    DATA: w_item     TYPE bbp_pds_sc_item_icu.
    LOOP AT input-I_ITEM-item INTO ls_item.
        CLEAR w_item.
        w_item-guid = v_item_guid.
        w_item-parent = v_header_guid.
        w_item-description = ls_item-description.
        w_item-number_int = ls_item-number_int.
        w_item-category = ls_item-category.
        w_item-category_id = ls_item-category_id.
        w_item-product_type = ls_item-product_type.
      APPEND w_item TO i_item.
      ENDLOOP.
    The structure input-I_ITEM-item is an input from a ABAP Proxy. This all works great if I feed in only 1 line item to proxy, but if I send in two line items the result is i_item has line item 1 twice, and I get nothing for line item2. It is almost like the the loop runs twice but the ls_item stays on line 1. I am sure I am missing something simple.

    Here is a snippet of the XML I am sending to ABAP proxy:
    <I_ITEM>
         <item>
              <GUID>00000000000000000000000000055556</GUID>
              <PARENT>00000000000000000000000000055555</PARENT>
              <NUMBER_INT>0000000001</NUMBER_INT>
              <DESCRIPTION>Proxy Test Line</DESCRIPTION>
              <CATEGORY>268CA1C5BB9965449BED8C9B49484999</CATEGORY>
              <CATEGORY_ID>03000</CATEGORY_ID>
              <PRODUCT_TYPE>01</PRODUCT_TYPE>
         </item>
         <item>
              <GUID>00000000000000000000000000055557</GUID>
              <PARENT>00000000000000000000000000055555</PARENT>
              <NUMBER_INT>0000000002</NUMBER_INT>
              <DESCRIPTION>Proxy Test Line  2</DESCRIPTION>
              <CATEGORY>268CA1C5BB9965449BED8C9B49484999</CATEGORY>
              <CATEGORY_ID>03000</CATEGORY_ID>
              <PRODUCT_TYPE>01</PRODUCT_TYPE>
              </item>
    </I_ITEM>

  • Garage Band LOOPS question

    Hi,
    I guess this question can apply to both Logic and GarageBand. When using loops am I locked into the "key" that they appear in? What I mean is this. Let's say I make a song in Amajor in 4/4 time. At that point all my loops appear in the key of A. The problem arises when I want to take the chord progression maybe from I - IV - vi - V - I or something. My question is... can I make those same loops play the appropriate chord for the key signature?
    I hope this makes sense.
    Thank you for any help you can offer.
    B.

    ..I'm not exactly sure what you're asking. But..All the apple loops I've encountered have a series of different notes in one key. You can transpose them, but then not all of the notes in that loop will sound good with the original key. Does that make sense? For example...if you have a loop in A, then play the loop again in D (the IV of A)..it's likely it will contain G natural...a note that occurs in the key of D, but would sound bad in A.
    On top of that..most apple loops are simply melodies. I would recommend layering one of them on top of a bass or piano or synth you'd recorded that would play the chords you want in your song.
    Hope this answers your question.

  • Switching loop question

    Hello everyone!
    I need some clarification of the switching loops. I apologise if my question is too simple, but i really cannot find answer in books, internet. Thanks in advance!
    Please look at the attached topology. This is my test lab for switching loops learning. For simplification purpose IPs, MACs and interface's names were shortened (FF=FF:FF:FF:FF:FF:FF).
    Initial conditions:
    SW-1:
    Cisco Catalyst 3750-V2, 12.2(50)SE5 IPServices, with default, factory config.
    For an unmanaged switch simulation purpose, interfaces 1/1, 1/2, 1/3, 1/4 were configured with switchport host macros and spanning-tree bpdufilter enable command (additional to default factory config).
    Interfaces 1/2 and 1/3 were interconnected with straight through patch cord specifically for creating a switching loop. Just booted up, not learned any MAC-address.
    SW-2:
    Cisco Catalyst 3750-V2, 12.2(50)SE5 IPServices, with default, factory config.
    Just booted up, not learned any MAC-address.
    Both PCs:
    Have a clear ARP-cache.
    Test:
    PC-1 sent ICMP-echo to PC-2. SW-1 received an ARP-request from MAC A (MAC-address of PC-1's NIC) to MAC FF (L2 broadcast as mentioned before) on its 1/1. Because of the initial conditions there is broadcast storm now. MAC A is flapping between 1/2 and 1/3. Next, PC-2 received an ARP-request from MAC A and sent ARP-reply. That ARP-reply arrived at SW-1 and started unicast storm additional to broadcast storm.
    This is clear for me.
    Question:
    What i don't understand is why the SW-1 sends ARP-reply from PC-2 back to the SW-2 (interface 2/1)?
    P.S. apologise for my english. Thanks again!

    Disclaimer
    The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
    Liability Disclaimer
    In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
    Posting
    If there's only one or two non-STP switches, in a full mesh, you'll be okay.  Once you have at least three non-STP switches, in a full mesh, you have a loop between them.

  • Infinite Loop Question - should be simple

    Ok I think I have a simple question to ask here. I am attempting to create a program that creates an infinite loop for multiples of two...
    ex: 2, 4, 8, 16, etc...
    The math behind it is simple, x^2 when x = 2. I then want the result of each equation to be squared, and infinitely.
    Here is the code Ive written so far, I think Im close, but I may be way off... any hints or clues as to my next step would be appreciated.
    public class loopytest {
       public static void main (String[] args)
       int x = x^2;
       while (x = 2)
       System.out.println("Value of x is " + x);
    }

    int x = x^2;You have to initialise "x" first.
    You should give it an actual value (e.g. 2) for this case.
    int x = 2;If you want to get the value of x from arguments. (e.g. java YouProgram 2)
    You should change this part of code similar to the follow.
    int x = args[1];But this one hasn't used the Math.pow(), you should read the API and amend it.
    while (x = 2)This one is actually assign x with value 2.
    If you want to compare an int, you should use "A == B", "A.equals(B)" for Object.

  • Cursor For loop question

    Hi,
    I have a cursor in my plsql and I am trying to get the record through a FOR loop. I know that for loop will take care of opening, fetching and closing the cursor implicitly.
    Ex.
    declare
    cursor c1 is
    select * from emp;
    begin
    for l_rec in c1 loop
    end loop;
    My question is i want to check whether the cursor in the for loop is returning any record or not using IF condition.
    where and how i will find that?
    Can anyone help how to do that.
    Rds,
    Nag

    without using boolean variables.Obvious question, WHY?
    If you are so particular..
    SQL> declare
      2   cursor c1 is
      3        select empno, ename, job
      4        from emp
      5        where empno = 7839123;
      6   ex exception;
      7   rec c1%rowtype;
      8  begin
      9   open c1;
    10   fetch c1 into rec;
    11   if c1%notfound then
    12    raise ex;
    13   end if;
    14   loop
    15    dbms_output.put_line(rec.empno||'-->'||rec.ename||'-->'||rec.job);
    16    fetch c1 into rec;
    17    exit when c1%notfound;
    18   end loop;
    19  exception
    20   when ex then
    21    dbms_output.put_line('cur not found');
    22  end;
    23  /
    cur not found
    PL/SQL procedure successfully completed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • APPLE lOOP QUESTION

    Hey everyone,
    I bought a sample pack and its states its apple loop compatible, would anyone be able to explain the simplest way to install them as actual apple loops, its 750 mb.
    Is there a quick way to do them all at the same time? Thanks alot.
    Jason

    Hi Jason,
    If they are not packed in any way (.zip, .sit, .dmg etc.) you could simply move the folder containing the loops anywhere you like on any attached HD, open Logic and drag 'n drop your new loops folder onto the Loop browser. Logic indexes 'm, and they will be ready for use after a few minutes.
    regards, Erik.

  • Movie Purchases Question

    I am looking at purchasing an Apple TV. I like the idea of keeping my purchased movies on my Apple TV, rather than consuming HD space on my MBP. My single concern is whether I will be able to push those purchased movies from my Apple TV to my iPhone should I want to watch them when I travel?
    Any help with this question is greatly appreciated. Thanks in advance.

    not directly no.
    you would need to sync it to an itunes library first, and then push it on to the iphone from itunes.

  • Movie playback question

    I dont own an iPod yet, and never have, thus I have no experience with them. I am considering a 3G, 32GB touch model because I need a better mp3 player, and well, not not get a laptop replacement at the same time(my laptop will not work wireless).
    One of the things that is making me consider dropping the additional coin for the touch over a Nano is the ability to watch movies on the go, as in keeping a child entertained on a long trip.
    My question is this: is it possible to download movies from DVD's to the touch? I have a lot of movies that I have burned copies and removed any copyright issues...is there a way, through a PC, to transfer from the DVD to the touch?
    Im still a relativley new and infrequent user of iTunes as well, can this be done through iTunes maybe?
    Or do you have to buy/rent and download all movie content from the apple store through iTunes?
    Thanks

    Mach1219 wrote:
    I have a lot of movies that I have burned copies and removed any copyright issues...
    i have a feeling that is not entirely legit. basically, such matters cannot be discussed on the forum !
    is there a way, through a PC, to transfer from the DVD to the touch?
    excerpt from the *terms of use*:
    you will probably have to look for answers elsewhere !
    JGG

  • Movie control question...

    Ok, I'm pretty good with After Effects expressions, but
    action script is still a bit of a mystery to me.
    Here's what I want to do. I've got these 7 movies that
    activate when you roll over their hit spot. Each of the movies has
    an open that's about 10 frames, then a looping section created by a
    go to and play 11 script, and then a close that is about 10 frames
    long. The open is a simple scale up and fade up, the close is a
    simple fade out and scale down.
    I've got the script working now so that when you roll over
    and keep over the hit spot the movie plays through the open and
    then loops until you move off the hit spot. If you happen to move
    off at the end of the loop then you get a smooth out, but if you
    don't there is a jump in the action as the movie skips the frames
    remaining to the end of the loop and just plays the end section.
    I've searched long and hard and can't find any technique that
    would make sure that the movie opens plays completely through the
    loop section and then without skipping any frames plays the end
    frame even if you rolled over the hit area and then back out on say
    frame 3 of the movie. IOW, the movie must play without interruption
    from beginning to end every time, but if you hover over the hit
    area the loop will continue until you move out.
    Adding to the dilemma is that these movies are stacked
    basically on top of each other so that when you roll over a new hit
    area while another movie is playing the new movie may or may not be
    on top of the first movie. I was getting a lot of funky flashing
    layers so I came up with a move to front (can't remember the exact
    code right now) script that brings the movie associated with the
    current hit spot to the front. All is pretty good, but it would be
    better if there were some kind of script that I could come up with
    that says if any of the other movies are still playing wait until
    they complete before planing the currently selected movie. This
    would prevent any flashing of the layers as one movie is moved to
    the top of the stack. It may even eliminate the need for the bring
    to the front section of my script.
    I hope the description is clear enough. Hopefully I'll learn
    enough about this Action script stuff to be of some help to others
    in the future.
    BTW, I prefer an action script 3 solution, but I've built
    these pages with both 2 and 3 so either will do just fine.
    Thanks

    This helps. Getting there as a matter of fact. Thank you.
    I seem to still need a stop in frame 1 of the movie and I
    need to have the function read as follows to make things work:
    function over () {
    this.overThis = true;
    this.gotoAndPlay ("start");
    I thought I could remove the gotoAndPlay statement and the
    Stop() at the head of the movie, but I couldn't .
    The only problems remaining are that if you roll back over
    the button before the movie ends you jump to the loop section.
    I'd also like to be able to switch layers so the last button
    rolled over would always be on the top.
    Here's
    a link to my test project. I'm using buttons instead of rolling
    over the movie. You'll also find a link on the page to the .fla
    file.
    Thanks again for the help. I hope to get this completed
    tomorrow.

  • Move project question

    I'm new to Final Cut Pro X - used FC Express (4, I think) for years.  Some how I didn't set up the project properly when I started and while the media files were on the external Firewire 800 drive I bought for the project, everything else was on the internal drive, which was fairly quickly filling up (hardware & software info below).  Did some research on this forum and used the move project command to move the project to the external drive.  The problem is now when I Launch Final Cut and open the project there are no Timeline events.  The directory and files on the hard drive look the same as they did on the internal drive.  My question is, am I screwed?  Is there any way to retrive my Timeline or do I need to start over.  I was almost done - the video was a musical we filmed here - four cameras, separate audio recording, 200+ events in the timeline.  Please help.
    FC ProX v10.0.4
    MacBook Pro
    OS10.6.8
    2.53ghz Intel Core duo
    4 gig RAM
    250 gig hard drive
    NVIDIA GeForce 9400M video
    external drive is a Mac G Drive 500 gig Firewire 800

    tkberry wrote:
    So I found the Timeline by opening the project from the project Library.  So for now it's all good.
    In FCPX the only way to open projects is from within the app – accessing the project files from the Library.
    tkberry wrote:
      I guess my question is where did I miss a step to keep from loading up my main drive with all the render files?  I don't think I ever saw anything where I could have specified that.  Where do you assign the scratch drive?
    You have a choice of keeping your projects and events on your start up disk in th e home folder>Movies, or on another drive on your network – at the root level of that drive. Those other drives appear in the project and event libraries. If you select one of the drives and create a new event (Option–N), it will put that event in a FC Events folder at the drives root level. Creating new projects (Command–N) works similarly. IMO, it's the best way to organize projects and events.
    Also, sorry about no screenshots but I couldn't remember how to do it.
    Shift+Command–4 and make a selection…automatically takes a screen shot and throws i on your desktop.
    Russ

Maybe you are looking for