Help on how to make an infinite loop with the same space on all images

HI:
I made a movie clip with infinite  loop in which there are images that move from right to left something simple like a marquee, and each image has a blank space between  them, but between last and first image there is a more space, how I can do to  make all images have an equal space between each one and that the motion never stops.

Thanks for your time and answers my friend, but I'm still not be able to achieve what I want, I forgot to tell that I'm doing this by layers, let's say, I have 5 images, (in fact I have like 50 images converted to movie clip symbols) each image has it's own layer, layer 1, layer 2, layer 3, layer 4, layer 5, then I put a 200 frame motion tween on all layers at 30 fps, then I arranged layer 1 on the first frame to the frame 200, the second layer from frame 50 to frame 250, third layer from frame 100 to frame 300, fourth layer from frame 150 to frame 350, and fifth layer from frame 200 to frame 400, by this I mean I put a 50 frame of space on each image but if you can see, the last image has a duration from frame 200 to frame 400, and there's nothing on frame 250 where it is supposed to be another image to match the same blank space of all the others, the movie clip restarts on the frame 400, and there's a 150 frames of blank space between the last image and the first image, I put the gotoandplay on the frame 250, but it abruptly restarts the movie.
Is there another way to do this ?
Am I doing something wrong ?
Please I really really need help on this.
Thanks

Similar Messages

  • How to make a control table with the same number of rows of its itab

    I'm creating a control table, but it always have the maximum number of lines possible.
    How can I make it so that it has only the same number of rows of it's internal table?

    solved partialy with this:
    MODULE locka_lin OUTPUT.
      DATA: lin TYPE i.
      DESCRIBE TABLE t_obj LINES lin.
      table_con-lines = lin.
    ENDMODULE.                 "  OUTPUT
    but it still doent work when lin = 0
    any simple way to solve it on that case?
    Edited by: RagnaRock on May 5, 2010 6:00 PM

  • Can you delete an iCloud account but then make a new account with the same password?

    Me and my mum share the same iCloud account with her email address, but I can't make my own unless I delete my mum's account that I share with her. If I delete the account, will my mum be able to make a new account with the same password?
    Thank you!

    Yes.  You can use the same password for all your accounts (although it's less secure to do so).  You just have to use a different Apple ID to set up a new account.

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How to make 2 balls move at the same time

    I am working on an app in xcode and I need to make 2 balls move at the same time. When I try to use the same code for both of the balls, the 2 CGPoints interfere. Here is my code in the .m file.
    @synthesize ball, ball2;
    -(void) onTimer {
            ball.center = CGPointMake(ball.center.x+pos.x,ball.center.y+pos.y);
            if(ball.center.x > 295 || ball.center.x < 10)
                pos.x = -pos.x;
            if(ball.center.y > 435 || ball.center.y < 35)
                pos.y = -pos.y;
    - (void) onTimer2 {
    ball2.center = CGPointMake(ball2.center.x+pos.x,ball2.center.y+pos.y);
    if(ball2.center.x > 295 || ball2.center.x < 10)
    pos.x = -pos.x;
    if(ball2.center.y > 435 || ball2.center.y < 35)
    pos.y = -pos.y;
    [self collision];
    - (void)viewDidLoad
              [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer) userInfo:nil repeats:YES] retain];
        [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer2) userInfo:nil repeats:YES] retain];
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    Here is my .h file
    @interface game : UIViewController {
        IBOutlet UIImageView *ball;
        IBOutlet UIImageView *ball2;
    @property(nonatomic,retain) IBOutlet UIImageView *ball;
    @property(nonatomic,retain) IBOutlet UIImageView *ball2;

    What do you mean by the 2 CGPoints interfere?
    You're changing the location of the balls by pos.x and pos.y, where is the code for those? what is it doing?
    Why have two timers?  One timer would work , just have the code move both balls.
    The refresh rate for the screen is 60hz. (60 time a second) You'll get better animation if you stick as close to this value as you can.

  • How can i distinguish two controls with the same name?

    I'm recording automated tests with VS 2012 Coded Ui Test for testing a web application.
    In that web application it is possible to enter data in something looking like a list.
    There is - per example - an Edit control sitting on a ColumnHeader with the name/text "Description".
    Below that header is another Edit control for data input - containing the text "Description" too and which lies on a Cell control.
    When i playback my recording, Coded UI Test looks for a control with the name "Description" and gets the one, it finds at first.
    In that case the Edit on the ColumnHeader, which causes an exception, when the Text will be setted with the data input from the recording.
    Unfortunately the controls have no ID.
    Is there a way to distinguish controls with the same name?
    Thanks in advance!

    Hi Patrick Pirzer,
    >>Is there a way to distinguish controls with the same name?
    Based on the blog "How does “Coded UI test” finds a control ??", we know that to really find a control, it would be related to the unique properties as the search properties,
    so if two controls have the same property, please use other unique property as the search property would be better.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Will iTunes 10 & iTunes 11 work together? If not, how do I combine 2 libraries with the same account?

    My 2005 iMac (which can't be updated to Snow Leopard or Mountain Lion and so is stuck with iTunes 10) has thousands of my songs, over 80GB of music mostly from CDs and other uploads/downloads.  In 2008 we got an iMac for the family room; somehow although we have the same iTunes account for that computer, we started fresh with no tracks, and built up its own library for family use.  Now we've bought two iPhones which aren't recognized by the '08 iTunes/Mac OS, so I want to upgrade the '08 iMac (the only one I can) and I have the Snow Leopard software to do so.
    But I'm concerned that once the two computers have different versions of iTunes, I will lose the ability to home-share the music library from the '05 iMac on the '08 iMac, and because of that I won't be able to store any of my older Mac's tracks on the iCloud or access them on my iPhone.  (Of course I don't want to have to pay for 80GB+ on the cloud!)
    Has anyone got two versions of iTunes on two computers with the same account and are you able to home-share together and access tracks on your iPhones from an older version?
    What do Apple users recommend?  I'm thinking my best bet might be to combine the two libraries, which as I said are on the same account, but I don't know how to go about doing this.  How much time would it take with 80GB?  (I could probably do without 15% or 20% of those tracks, but it's still a lot, I don't know if it's instantaneous or if it uploads each track one at a time, I can imagine that taking two days.)
    The older Mac's tracks, the 80GB, are the ones I really want, it took years to collect and upload all that, finding photos for some of the more esoteric albums/songs, etc.  The newer Mac only has 2.5GB in its iTunes and I guess it wouldn't be the worst thing if I had to reload those, if the 80GB library had to wipe out the 2.5GB one.
    Thanks so much to anyone who can help me!  If I can start this tonight and have it run overnight (if necessary) that'd be great, otherwise I'm hoping I can get this done Sunday.  By the way, technologically, I have the '05 iMac hooked up to a 1st Gen Time Capsule and the '08 iMac getting WiFi from that.

    Thank you for replying.  Both of the accounts are Admin accounts.  The Libraries are kept in the user/music/itunes/itunes media folder on each account.  However, I do use multiple iTunes Libraries on my Account1.  One of the Libraries I use in Account1 is on a separate internal HD.  However, the other Libraries I use in Account1 are stored in user/music/itunes/itunes media folder on the main HD (which hosts both Account1 and Account2).  It doesn't seem to matter whether I am using an iTunes Library on an external drive or the main drive in Account1, I still get the same problem: only account1 library will load.  AppleTV sees that the Account2 Library is there, but it won't load it.

  • How to open a new tab with the same current directory in a terminal?

    I use the following script to open a new terminal with the same pwd.
    I'm wondering how to modify it to open a new tab with the same pwd.
    #!/bin/sh
    # Open a new terminal in the cwd
    CWD=`pwd`
    osascript<<END
    set thePath to "$CWD"
    set myPath to (POSIX file thePath as alias)
    try
    tell application "Terminal"
    activate
    do script with command "cd \"" & thePath & "\""
    end tell
    end try
    END

    bit of a hack, but the make command doesn't seem to work for tabs in terminal. replace what's currently in the 'try' block with this code:
    tell application "Terminal" to activate
    tell application "System Events"
    tell process "Terminal"
    keystroke "t" using command down
    end tell
    end tell
    tell application "Terminal"
    do script "cd " & (quoted form of thePath) in last tab of window 1
    end tell

  • How to fill an 8x10 page with the same image for making buttons?

    How do you make a button template using the grid?  How do you import the image onto that, and how do you fill an entire page with the same image ie-  1" circles

    I'm trying to do the same thing but I want 1" squares.  I just upgraded from Elements 6 and I did this
    quite often for pendant necklaces.  I used to go and print individual prints, but the previous options are not there.  ;(
    And the picture package is only showing 20 (2x2) as being the smallest size.  I don't see a custom button.
    Can anyone tell me how to do this?  We're doing these for a fundraiser and I can't even print anymore.
    Thanks,
    Kimberly

  • How to create a US account with the same apple ID as my current account

    I received a US itunes card given as a gift and it will not redeem in the itunes store since it says I need to have a US itunes account which I do not. Mine is from another country.
    I emailed support and they said I could not use the itunes card nor can I transfer the credit to my itunes account for my country(even if it is still in US$). Though they did say that It was possible to create a US account with the same apple ID. I tried it but when I try to register a US account, in the end it says that the apple ID is taken.
    Can anyone help?
    Thanks.

    You can't use the same ID because it is possible to change countries on accounts.  The other person using your ID is you!  However, technically you can only use the store in a country if you are actually present in the country, and you have to have a credit card billed to an address in the country as proof.
    I guess the person at Apple isn't familiar with hte details of thir own legal documents, and you would either have to try to change country on your account (which may run into issues) or start a second account in hte other country (which again may not be easy, nor legal).
    The iTunes Store in a country is intended only for use by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE
    Find somebody you know in the USA and give them a nice present.

  • Newbie :  How can i create 2 users with the same name on diff domain name ?

    I have two domains on my server
    exemple1.com
    exemple2.com
    and i want to create one user for each domain with the same name
    [email protected] and [email protected]
    curently i can create one user, and it's the same user for both domains :-/
    how ?
    thanks
    Hète

    I must say. I am equally curious about this. i've played a lot in Communigate and it is easy to do there but how does one do this in apple mail?

  • HOW do you display multiple componants with the same id e.g. same generated image

    Hi,
    I would like to display two of these with the same id (canvas) which is an image generated through AS
        <canvas:DrawingCanvas id="canvas" >
            </canvas:DrawingCanvas>
    This is an annotation program im working on, and i would 2 of the same view of image, the reason being that the user can view a large and small scale version of the image he/she is working with
    I--------------------I    i----i   - small version
    I                        I    i----i
    I large version   I
    I                        I
    I____________I
    thanks
    art

    You don't need the object to have the same id to achieve your desired results, and you can't have the same object with the same id anyway.
    Just ensure whatever the user does is carried out on the larger and smaller image.
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.stardustsystems.com
    Adobe Flex Development and Support Services

  • How to differentiate between Radio Buttons with the same name?

    My form has two fields, to which I gave the same name ("Radio Button 1.0") in order to achieve mutual exclusivity.
    Now, I would like to use JavaScript to retrieve the value of one the two fields:
    var checkMark = this.getField("Radio Button1.0");
    if (checkMark.value == "Yes") {
    Questions:
    What is the proper way to inspect the value of a Radio Button? I have tried this:
    if (checkMark.value == "No") [...]
    but it doesn't seem to work.
    How can I tell apart 2 radio buttons with the same name?
    TIA,
    -RFH

    When Radio Buttons and Check Boxes are unchecked their value is "Off", so if you have "Yes", "No" buttons you will also encounter an 'Off" value. Now if you want to look at a given button, you will have to use the "isBoxChecked(nWidget)" method.
    nWidget:
    The 0-based index of an individual radiobutton or checkbox widget for this field. The index is determined by the order in which the individual widgets of this field were created (and is unaffected by tab-order).
    Every entry in the Fields panel has a suffix giving this index, for example MyField #0.
    Returns
    true if the specified widget is currently checked, false otherwise.
    Example
    var f = this.getField("ChkBox");
    if(f.isBoxChecked(0))
    app.alert("The Box is Checked");
    else
    app.alert("The Box is not Checked");

  • How do you keep 2 albums with the same title in separate folders

    Hi There,
    I have 4 albums that will not go into a seperate playlist folder.
    2 of them are title "ultimate collection"
    the other 2 are titled "super hits". (obviously they are greatest hits cds)
    All 4 albums are from different artist. I have read some other forums and what there saying is just change the title. Thats all fine and stuff but surely there is another option that i am unable to find.
    Any help would be much appreciated.
    Thanks
    Kryten

    I had the same problem with ac collection album, what you do is change the artist name. Im pretty sure it will go different folders.
    mclconcepcion

  • How to force SQL*Loader to assign the same SYSDATE for all rows?

    I want to use SQL*Loader to load some rows and a "SYSDATE" generated column, but making sure this date is THE SAME for all rows. I have seen that if I load HUNDREDS of rows there is a little difference between them (in terms of seconds). I guess it is "the moment each row entered the DB", but I need the same value for all rows (preferably, "the moment SQL*Loader was launched"). Is there any way to achieve this?
    Thank you very much.

    Hello user2393320.
    Given some thought, using a date value to identify all records from a single load isn't very wise.
    Are you able to create a procedure on the database that could be executed during SQL*Loader's execution? If so, you could develop the procedure to take in the record number of the row being loaded as an input parameter and output this unique date value for all rows loaded. The procedure would need to store the date value in a table when the first row is being loaded and return the stored date value as its output. This obviously assumes that only one sqlldr session is running at any time.
    I highly recommend using a numeric sequence in the control file instead of a date to identify each file load:
    , file_load_seq SEQUENCE(MAX, 1)
    Another approach would be to load the record number being loaded in addition to the sysdate:
    , record_number RECNUM
    Hope this helps,
    Luke

Maybe you are looking for

  • Can't Drag Windows

    Lately I've had a problem where I can't drag open windows or even just icons on my desktop. If I move them very slowly they'll usually slide just a little, then they won't slide at all. Could anyone suggest what I should look for to return to normal

  • Question for experts/ wrapping - data pump

    Hello All, In am using ORACLE 10.2.0.4.0 i have an issue while export / import wrapped procedures: I have some procedures / packages that are wrapped and when i do export for their related schema and then import it to the database, i got the below er

  • "ME045 G/L account 6750310 cannot be used"

    Hello experts, I sincerely need your help to get this error resolved. Whenever I try to create a shopping cart using <b>WBS Element</b> or <b>Profit Center</b> account assignmnet category, the shopping cart gets created but when i check its status, I

  • Help with opening files

    I have two different psd files I cannot open. I last worked on these files May 30th.  For each of them I completed a detailed mask, added a path and saved the files without changing the name. Today I went to work on my project and could not open eith

  • Please Help!! Acrobat Autosave File Recovery

    I have a project that I am working on in Acrobat and have the Autosave function set to 5 min. I don't know what happened, but Acrobat just blinked and went away. I have tried everything that I can find in the help file and on the web, but I cannot se