Make Flash CS5.5 Movie play through one time

I have created a movie in Flash Professional CS5.5 which has two scenes in it, and I want iot to only play through a single time and then stop....
I opened it originally as a Flash Project, completed the first scene which was an opening screne with a company logo on it, and then a second scene which is product placement images for the department. I have tried creating a new layer, and adding an action to the last keyframe by opening the action tab, and typing in stop();
Unfortunately, this does not seem to do anything really, and I am confused here. If someone could PLEASE explain to me how to insert a break at the end of scene two, I will be eternally indebted!!
Oh yeah, and thanks in advance....

None that I know of.  I would recommend against using scenes, but if you have no other code then that recommendation is less meaningful.  Scenes are better off when used for strict animation, designs that have no code involved.
The stop() will work, you have to figure out what is keeping it from working.  Compiler errors are only one way of getting the stop to not work.  As I said, if you have some other code in the file it might be defeating the purpose of that stop()
(ps - your description of what you did is not exactly what I said to do)

Similar Messages

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

  • How to make the notification sounds play through EarPods

    The notification sounds/ringer on my iPod touch keeps playing through the external speakers even though I have EarPods plugged in. If I turn on a video of game tho, it will play through the earpods. Is it possible to make the notification sounds play through the EarPods as well?

    Hi Everyone,
    Just in case anyone else runs into this problem here is the solution that i've managed to piece together,
    I have a movie clip twice the size of the stage, the movie clip is called bg_mc, here is my actionscript...
    bg_mc.addEventListener(Event.ENTER_FRAME, mouseMoveHandler);
    function mouseMoveHandler(event):void
    var cursorX = stage.stageWidth - mouseX;
    bg_mc.x -= dx / 5;
    this action script tells the movieclip to move left and right depending on where the users mouse pointer moves. (it also adds a slight delay to make it look like tweening)
    I then published this in Flash using the publish settings shown in the reply above.
    Then i went into dreamweaver and removed the margins in the html file
    Now the flash file will resize to any screen resolution and will allow the user to move the MC left / right across the screen depending on where the mouse pointer is,
    I hope this is helpful,
    Ben

  • 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.

  • What do I do if someone is hacking into my Game Center so I can't play clash of clans anymore because only one person can play at one time?

    What do I do if someone is hacking into my Game Center so I can't play clash of clans anymore because only one person can play at one time? I changed the password but soon discovered it didn't help. I want to play Clash of clans but every so often the person comes back on. is there a way for Game Center to log off all the accounts, so the hacker will be gone?
    Please help me with this problem

    Your iPad can be hacked only if it's been jailbroken.  Has it?

  • Flash CS5 movie with 2167 frames doesn't render properly when published

    I have a flash animation (.fla) that I am creating in flash professional CS5.
    I have not finished development but have hit a snag with completing it, because when the movie has 2166 frames or less, it publishes to swf correctly, but when I add additional frames (2167 or more), upon publishing to swf my 3D animations and text do not display in the published swf file.
    I know in the older versions of flash there is a frame limit of 16000 frames, but is there an even smaller frame limit in flash CS5 of 2166 frames or less? Perhaps this limitation is only apparent when using the new features like 3D animation?
    Adobe, is there a bug fix for this? Any suggestions?
    Thanks

    Here's the workaround I used to fix this if anyone experiences a similar problem:
    Problem:
    When publishing from flash CS5 with actionscript 3.0 to swf, publishing takes a long time and 3D tweens and text do not display in the published movie.
    Workaround:
    File > Publish Settings
    Select the Flash tab
    In the script dropdown, change the option from Actionscript 3.0 to Actionscript 2.0
    If you have any 3D tweens, a warning will appear - "3D tweens can only be supported in ActionScript 3.0 or higher. 3D properties will be permanently removed from all tweened objects if the current publish settings are changed. There is no undo for this operation."
    Click Ok
    If you have any TLF text, another warning will appear "TLF text can only be supported in ActionScript 3.0 or higher. TLF text will be permanently converted to classic text if the current publish settings are changed. There is no undo for this operation. Undo history will be cleared."
    Click Ok
    Any text that was converted to Classic text may have changed in layout & position
    review and fix all your text
    Save the file.
    Publish to swf and test
    File > Publish Settings
    Select the Flash tab
    In the script dropdown, change the option from Actionscript 2.0 back to Actionscript 3.0
    Add your 3D tweens back in
    Publish to swf and test
    If anyone has a better solution I'm still interested to hear it, as my workaround doesn't allow you to use TLF text.

  • Music only playing through one speaker

    I had an Ipod nano second generation that would only play music through one speaker when connected through a wire so I bought a new nano third generation. The new nano has the same issue. I have bought 3 different wires which would work for a period of time then start playing only through one speaker. I have also had my car speakers checked out and there are no issues there. Is there a problem with the jack inside the Ipod? What can I do?

    We have started to have similar problems plugging into the auxiliary jack of a car radio. Sometimes one speaker, sometimes the other, depending on the cable, and occasionally both. Connecting and disconnecting the iPod to the car's battery changes the speaker that works.

  • My 3gs has stopped playing through the speakers and when the headphones are plugged in only plays through one ear? it still ring when called and everything else seems fine, whats the problem? it seems like the phone thinks the earphones are always in?

    my 3gs has stopped playing music through the speakers, they play with headphones but only through one ear. It seems the phone thinks the headphones are in all the time. The ringer still works when called and i have cleaned the headphone socket the best i can without damaging the phone! Any ideas?

    I had the same issue, 4s running ios8, but the plugging and unplugging the headphones did not work, BUT, when I tried plugging and unplugging from the DOCK, it started to work again. There must have been a short in the power plug, not the headphones. I also blew out the bottom power plug with computer safe airjet. Hope this one helps anyone else having the issue.

  • Sound only plays through one earphone

    hey i'm new here so bear with me if i make any mistakes.
    recently my 30GB ipod video started playing sound only through one earphone, i tried several different pairs but the problem was the same. i took it to my local apple shop and they said it can't be fixed, but you could have it replaced for £109, i'm a student i don't have £109!
    he said i could get a radio remote, something like this:
    http://www.amazon.co.uk/Apple-MA070G-C-Radio-Remote/dp/B000MTEER4/ref=pdbbs_sr4?ie=UTF8&s=electronics&qid=1200145716&sr=8-4
    i wasn't prepared to spend that much so just got a standard remote control with no radio function, however i didn't realise that this had to be connected through the headphone socket! what's the cheapest and most convenient way i can get sound going through both my headphones again? can i get a standard remote that just goes through the adapter at the bottom?
    many thanks, jack
    Message was edited by: kaiser_jack

    I have the same problem! Im looking for anyway just to hear music out of both head phones, but I don't care which port I use. If anyone knows any ways I could soder(sp?) together a par of head phones with a iPod usb-thingy could you tell me how to?

  • IMac G4 plays through one speaker on stereo system through headphone jack

    Ok so for some reason the headphone jack won't allow me to play music on my stereo in surround sound. It just plays music through one speaker. i have adjusted the balance on my amp but now i can only play through 2 out of 5 speakers? help please! headphones work properly but not sound system?

    That's normal, unless the stereo system has an upmixing matrix program in it, and then you have to actually engage it.
    So do you have a surround sound receiver, or just a stereo receiver, or is it just an amp?

  • Cant Make Flash Video Stop Playing

    I am using an HTMLLoader to display a web page in a
    NativeWindow. The web page I am displaying has an embedded flash
    video that plays in it. That all works fine. The problem I have is
    that when they close the window, the flash video keeps playing. The
    only way to stop it is to close the entire app.
    Is there a way to somehow make the HTMLLoader stop playing
    the content?

    I figured it out. I found a reply that fixed this problem for
    someone with a SWFLoader and it works for the HTMLLoader.
    Here is the answer if you need it, where html is the name of
    the HTMLLoader.
    html.load(null);
    html.reload();

  • Ipod touch only plays through one speaker when docked to car

    It was working fine yesterday until I restored my touch and now this morning only plays through the left speaker. Ive read other topics with people that have this problem but no answer that fixes the problem.
    I have a 8g touch and an alpine system in my car. The cord is fine because my old video works perfectly and the touch has no problem connecting to the computer.

    hmmm sounds like a could be either a faulty connection in your alpine, or the ipod touch has a problem sending the signal through the USB Pin look into google search for this kind of problem, but I would try another cable or a new usb cable. either way it could be the connection to the audio pin section of the usb connector of your alpine.

  • Dividing large Flash Videos Movies into smaller ones that play in sequence

    I need to know how I can take a large flash movie and divide
    it into two or more smaller ones that play in sequence in order to
    speed up initial download time. I have the swfsequencer plugin but
    I do not know how to use it.
    Can anyone please help me with this?

    http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Liv eDocs_Parts&file=00002980.html

  • Offer Multiple choice for movies playing in one location (Newbie)

    Hi,
    I'm definitely a Flash C3 newbie (newbie for all of flash!).
    I've been able to figure out how to embed a flash movie in my web
    page, but now I need to offer the user a choice of which movie to
    play - and then start that movie in one location... this must be
    CSS compliant and HTML STRICT... I think I need to address this
    through Flash, as I can't figure out how to do it via HTML or
    CSS... Help me, please.

    The steps are correct but you've left out the one that adjusts the 2 through 9 movies position as compared to the others.
    The first video would hold a position of 0,0 (upper left). When you add the second video you need to adjust its "offset" to position it next to but not overlapping the first. Since your videos are 100X75 you would set the offset of the second track too 100,0 (100 pixels to the right of the original and 0 pixels different in height). The third would be 200,0 offset.
    On the second row your first file would be 0,75 (75 pixels below the upper video). The second file on the second row would be offset 100,75 and the third would be 200,75.
    The third row would be 0,150 followed by 100,150 and 200,150.
    You could add a slight "border" between each video and give it a color by using the bgcolor="your color" (standard html color codes) and adding that space by adjusting the offset plus your border width in pixels. Hollywood Squares style of video.
    http://homepage.mac.com/kkirkster/03war/ one of my older files that uses multiple track video playback of a QuickTime file. The "TV" set is a track and the video that plays "inside" it is another. The still image movies are also separate tracks and QuickTime .mov files can hold up to 99 tracks.

  • Play only one time Script

    Hello everybody !
    I´ve a MAINtrack and a INFOtrack. The DVD start on a MAINmenu wiht one Button. At the first time if you activate the button, the INFOtrack and the MAINtrack will play in succession.
    When you go back to the MAINmenu and press the button again, the script will only play the MAINtrack, because you know the Info.
    It will working by coping the MAINmenu but this isn´t a glad way. The MAINmenu has Videobackgrounds and this would decrease the DVD Capacity.
    I need a counte who count the processes of pressing the button.
    Thanks for help !
    Alex

    The script works fine... it is a counter. The first line adds one each time the script is run. On the first run, the value in the GPRM is 1, so the second line evaluates to true... after that the second line cannot be true and so the third line runs.
    I've got it working here... are you sure you have your script set correctly? You are not adding to the GPRM if you only set the GPRM each time - the default is 'mov' and you need to select 'add'. You have to ensure the command is correct!
    Download the sample I have made here, it simply plays clip 1 once unless you reset the disc... but clip 2 plays every time you press play.

Maybe you are looking for

  • Microsoft Office 2013 Outlook errors due to it wants to connect to MS exchange

    Every time I try to load Outlook 2013 it gives me an error: The connection to Microsoft Exchange is unavailable. Outlook must be online or connected to complete this action and when I click on it, it keeps going in a loop. What to do to correct it wi

  • Problem in Installing in SAP-NW-Workplace

    Hi all, When i try to install SAP-NW2004S-Workplace i get following error. You have to specify a valid location for the requested package MAXDB:760xx:RDBMS:MAX DB:WINDOWS_I386:* Specifiy the location which contains the right LABEL.ASC . Can you pleas

  • My mail program is running slow and doesn't respond to commands.

    iMac with Yosemite loaded.  Mail program sometimes doesn't respond to commands and I get the spinning wheel constantly.  Other times it works fine.  Is there a way to reset the program?

  • Dispatcher is running, but server not connected

    Hello, When I load the portal with the link http://sapbw:50000/irj/portal the page display this error "Dispatcher is running, but server not connected" In the log file defaultrace.trc is this details #1.5#000F2097D58D004100000CC0000013C00003F973E869E

  • Push SAP passwords to all child systems

    Hi, I use IDM 8.0 to connect a CUA. Has anybody been able to push IDM password to CUA and all child systems (ECC, BI, SAP Portal, Solution Manager...) ? I can only change password on the CUA but not on the child systems the users have access to. When