OnResize - coming back to first frame

Hello,
I´ve done a movie with two frames controled by onResize.
It works fine in the first frame, but when I do a resize of the
browser staying in the second frame the movie comes back to the
first frame.
If I use only one frame, the result is similar. The objects
comes back to their initial state. So the resize of the browser is
reloading the site. I´ve tested in IE, Mozilla and Eudora,
obteining the same result.
Any Idea?
Thanks in advance :)

Hi kglad,
A lot of time without see you :)
the code is:
estado=1;
Stage.align = "LT";
Stage.scaleMode = "noScale";
stageListener = new Object();
stageListener.onResize = function() {
if(estado==1){
expandIt1();
if(estado==2){
expandIt2();
Stage.addListener(stageListener);
expandIt1 = function () {
back._width = Stage.width;
back._height = Stage.height;
logo._x = (Stage.width / 2) - (logo._width / 2);
logo._y = Stage.height / 2;
sun._y = Stage.height;
sun._height = Stage.height - 100;
sun._width = sun._height;
sun.x = Stage.width - sun._width / 2;
menu._width = Stage.width - 58;
expandIt2 = function () {
back._width = Stage.width;
back._height = Stage.height;
sun._y = Stage.height;
sun._height = Stage.height - 100;
sun._width = sun._height;
sun.x = Stage.width - sun._width / 2;
menu._width = Stage.width - 58;
expandIt1();
the "estado" variable" defines what function perform...

Similar Messages

  • *Flash animation looping but going back to first frame {want to hold on last frame}

    I came across this article on looping animations = http://www.quip.net/blog/2006/flash/how-to-loop-three-times
    I'm a novice with flash and just trying to plug thru to get some ads up and running for the first time.
    Everything worked for me in the article...the one thing I wanted to do but haven't found an answer to is how to stop the animation on the last frame after looping is complete, instead of automatically going back to the first frame??
    What's the easiest/most effective way to do this?
    The stop script does not work...still goes back to first frame.
    For all my flash ads, I've imported an FLV video...so don't know if it's some function for flv's/video's that auto-rewinds to first frame...
    Thanks so much, really appreciate any insight on this.
    The sooner you can catch a minute to get back the better

    Ok...not working for me - prob. b/c I'm missing something again.
    What I did was...
    1)  Renamed the instace of replay button = "replay_btn".
    [not sure if that's correct...guessed b/c you reference it in the code]
    2)  I placed this in the action code on action layer on last keyframe =
    var loopNum:Number;
    loopNum++;
    if(loopNum%3==0){
    stop();
    your_replay_btn._visible=true;
    } else {
    your_replay_btn._visible=false;
    3) I placed this in action code on the replay layer on last keyframe =
    your_replay_btn.onRelease=function(){
    this.gotoAndPlay(1);
    What happens is the replay button still flashes at the end of each loop and the loops just continue...it doesn't stop at 3.
    I also get this error =
    Can you break down what I'm doing wrong and how to fix...need to get this out asap.
    I truly appreciate your help and time so far on this...big thanks kglad!

  • Simple scripting:  On frame (45) go back to first frame..??

    I am trying to do a simple script and I am having a huge brain fart.
    when I get to frame 45 I want the play head to go back to frame 1.  I have the below code but I am getting errors.  Can someone point my head in the right direction?
    <><><>
    onFrame (45) {
        this.gotoAndPlay(1);
    <><><>
    One error says that "is expecting semi-colon before or after first brace.....
    second possible error is "call to possible undefined method onFrame....
    Need help.

    If that is the first scene, the in the last frame (45) simply putting...
        gotoAndPlay(1);
    should work.
    If it is not the first scene, then you should label the first frame and use the label instead of the frame number...
        gotoAndPlay("firstFrameLabel");

  • How do I loop back from the first frame to the last frame?

    Hi there,
    I'm currently working on the framework for a product viewer.
    I have:
    a movie clip called 'viewer_mc' which contains the images take from different angles of the product. The actionscript generates a script on the last frame of this that returns it to frame 1.
    a button instance called 'autoplay_btn' which plays through the movie clip from whatever the current frame is, and stops on frame 1.
    a left and right button which serve to move the movie clip frame, to give the appearance that the product is rotating.
    I have succeeded in getting it to:
    have the movie clip play through once, return to frame 1 and stop.
    have the buttons return functions when held down, that move the frame in the movie clip using nextFrame and prevFrame commands. The right button successfully loops round to frame 1 and continues functioning to give the appearance of continual rotation.
    The last problem I am experiencing is getting the left button to act in the corresponding manner, going from the first frame to the last and continuing to function.
    Here is my actionscript so far:
    import flash.events.MouseEvent;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    1. This is the part that gets it to play through once before returning to the first frame. I think perhaps the problem I am experiencing is because of the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' part i.e. although I'm holding the left button, its returning to this script and therefor getting bounced back immediately to the first frame. However, there is no flicker on the screen which you might expect if this were the case
    Note - as this is a generic product viewer which I can use as a template I am using lastFrame etc. as opposed to typing the value in
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    2. This is the functionality for the autoplay_btn that will play through a rotation / return the viewer to the initial (frontal) view of the product (frame 1).
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    3. This is the functionality of the right button, which when held, moves the movie clip to the next frame via the 'rotateRight' function based on the 'nextFrame' command. It loops back round to the first frame due to the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' script generated on the last frame of the movie clip, as is desired.
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    4. This is the functionality of the left button, which when held, moves the movie clip to the prev frame via the 'rotateRight' function based on the 'prevFrame' command. And this is where the problem lies, as although it works for getting the movieclip back to frame 1, it does not loop round to the last frame and continue functioning, as is wanted.
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    I'd imagine it is probably my logic for this part that is really letting me down - I can do a similar function in actionscript 2, but am trying to learn actionscript 3 just to move with the times as it were, and struggling a bit. Still this is only a few days in!
    function rotateLeft(e:Event):void{
              if(thisFrame==1){
                        gotoAndStop(viewer_mc.totalFrames-1);
              } else{
              viewer_mc.prevFrame();
    Any help you can give me would be gratefully received. For an example of the effect I am trying to achieve with the autoplay button etc. I recommend:
    http://www.fender.com/basses/precision-bass/american-standard-precision-bass

    Thanks for getting back to me.
    Here's the code without my comments / explanations:
    import flash.events.MouseEvent;
    import flash.events.Event;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    //last image of viewer_mc = first image of viewer_mc
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft);//while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    function rotateLeft(e:Event):void{
              viewer_mc.prevFrame();
    The definition of the rotateLeft function is where the problem lies I think - I've taken out my poor attempts at doing the logic from the previous post. If I were to write it out long-hand the statement I want to write is: 'If you get to frame 1 and function rotateLeft is called go to the end of the movie clip'.
    The reason I have to use the viewer_mc.totalFrames-1 definition in the addFrameScript call is the addFrameScript function is 0 based i.e. if you want to call frame 1 of the movieclip you have to return a value of 0 in the addFrameScript (or such is my understanding of it anyway). As such, the last image in the movie clip will need to be the view obtained at 360 degree rotation, which is of course the same view as at 0 degree rotation. As a consequence, the last frame in the movie clip is superfluous for the user, but necessary for the overall effect to be achieved. And, in addition, to keep up the effect of a 360 degree view when the rotateLeft function is called it needs to skip that last frame to go to the lastFrame-1 (or totalframes-1), or in other words, the view of the image prior to completing the full 360 rotation.
    the variables thisFrame and lastFrame are defined at the very top of the script. Like you said they might need to be defined or called on again elsewhere.

  • Was trying to install windows 8.1 but didn't install bootcamp first. Am in a loop. Keep coming back to the windows setup page. What to do?

    Was trying to install windows 8.1 but didn't install bootcamp first. Am in a loop. Keep coming back to the windows setup page. What to do?

    Please reset NVRAM - Startup key combinations for Intel-based Macs - Apple Support and OS X Mavericks: Reset your computer’s PRAM. You have Bootcamp settings in the nvram that are causing problems.

  • Video coming first frame only

    Hi i create a broadcaster in as3.
    Broadcast video is OK.
    NetConnection.Connect.Success is OK
    NetStream.Publish.Start is OK.
    But video coming first frame only in Player, not playing total video in player
    var server = "rtmp://xxxxxx.rtmphost.com/foldername";
    var streamName:String = "testname";
    var nc:NetConnection;
    var ns:NetStream;
    nc = new NetConnection();
    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
    nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, ayncErrorHandler);
    nc.client = this;
    nc.connect(server);
    function netStatusHandler(event:NetStatusEvent):void
              switch (event.info.code)
                        case "NetConnection.Connect.Success" :
                                  connectStream();
                        case "NetConnection.Connect.Closed" :
                        default :
    function connectStream():void
              ns = new NetStream(nConnection);
              ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
              ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, ayncErrorHandler);
              ns.client = this;
              ns.attachCamera(webcamera);
    function securityErrorHandler(event:SecurityErrorEvent):void
              trace("securityErrorHandler: " + event);
    function ayncErrorHandler(event: AsyncErrorEvent):void
              trace("AsyncErrorEvent: " + event);
    var webCamera:Camera = Camera.getCamera();
    var video:Video = new Video();
    video.attachCamera(webCamera);
    addChild(video);
    Startbtn.addEventListener(MouseEvent.CLICK, startClick);
    function startClick(event:MouseEvent):void
              if (Startbtn.label == "Start Broadcast")
                   Startbtn.label = "Stop Broadcast";
                   ns.publish(streamName, "test");
              else
                   Startbtn.label = "Start Broadcast";
                   ns.close();

    i got the problem

  • Large First Frame???

    This is my first post so first of all, hi all...
    I am currently having a bit of a nightmare trying to optimize
    a flash file for use on the web. My first frame is currently about
    600kb in size even though the only thing on the timeline is the
    preloader, which is no where near this size.
    I have been using the attachmovie method A LOT, but have
    unchecked the export in first frame option for all movieclips that
    are attached in this way, and placed them on the stage in a later
    frame.(the correct way to get around this problem I believe?)
    I know importing classes is taking up about 100Kb of the
    first frame(because when i change the options in the publish
    settings to import them in frame 2 the size dips) but have no idea
    where the rest of this data is coming from, because it is not on
    the timeline. I can only assume that flash is importing something
    here, but I have no idea what it is.
    If anyone has any idea of why this is happening or has come
    across this problem before I would be so greatful because I feel
    like I have hit a brick wall.
    Thanks in advance,
    Ian

    I have used a combo box and button components but have
    definitely unchecked the export in first frame option.
    There is also a video play back in there but the linkage
    property is grayed out. Any way as far as I am aware this is not
    stirctly a component and even so would not be a couple of hundred
    kb right?
    Its very strange, I did think it may have something to do
    with the audio I am using but this is imported from an external
    source using the loadSound method on frame 3. Its getting to the
    point where I have totally run out of ideas, so thanks for any
    suggestions even if they just get me thinking along a different
    line.

  • I am having the problem when trying to take a panorama picture.   It may only take the first frame or doesn't even start at all when I press the shutter button. even though when i  hold the phone straight up and down, so that camera is at the top

    I am having the problem when trying to take a panorama picture. 
    It may only take the first frame or doesn't even start at all when I press the shutter button.
    even though when i  hold the phone straight up and down, so that camera is at the top on the back and the home button is on the bottom on the front.
    This problem is irritating me....?

    To take panorama
    - ensure that the panorama option is on
    - press the shutter button once
    - you will see a line with an arrow
    - move around in a circle  ( I keep the camera steady and turn myself around in a circle)
    - as you do this you will see the arrow moving across the screen as it captures pictures
    - at the end of the capture, you will be able to see your panorama picture
    I hope that this helps, do report back.

  • HT204053 i am trying to create an account for icloud. i have had itunes for years and am using my apple id. however it is coming back as saying this is your apple id but not your icloud id??? from what i have read this is the same thing. i cant get passed

    I am trying to create an icloud account and  have used itunes for years . Therefore have been using my apple id to sign in. Unfortunatly it keeps coming back saying this is my apple id but not my icloud id is this different?
    Ive looked at help and it states its the same i have changed my passord several times as i thought it was this. Can anyone please help.??

    I've tried both. First, I tried on my pc, where iTunes had installed iCloud when it last updated. I have iTunes installed on this computer (and on my iPad and iPhone), but that wasn't the issue.
    So I went online, thinking I needed a separate iCloud Apple ID, but it prompted me for my current Apple ID and gave me the message about my ID being "valid" but not an iCloud account," which, lol, was what it had asked me to do in order to create one. I checked, and at least one other user is having the same issue. I'll attempt to copy/paste the Support request url: https://discussions.apple.com/thread/4430653?tstart=0
    Thank you for any help you can give.
    Trish

  • Java applet warning keeps coming back for signed applet

    I have an applet signed with certificate issued by a public CA cert verisign. This applet prints document to the printer. When it loads everything looks good and checks on the screen and the user is prompted to allow access to the printer. Even, though the user selects "Allways allow this applet to print" the warning keeps coming back everytime the applet attempts to access the printer.
    I notice other applets work correctly. I veriy the signed jar and it all looks correct every class file comes with smk marking.
    What is going, can someone please help???
    Manuel

    I appreciate the help. but i was able to resolve the problem. Our web page called the applet print method directly from scripting. Apparently that causes the java plugin to warn the user every time.
    To avoid this issue the new print method queues up a print job and a separate thread watches for the queue and picks up the job and prints it. In order to support the same original function, the new print method is syncronized and waits for the job to be queued before it returns.
    Now, there are no warnings even the first time you use the applet.
    [Here is another similar thread.|http://forum.java.sun.com/thread.jspa?forumID=63&threadID=524815]
    Thanks,
    Manuel

  • Hello. My iPad2 shows a message of iCloud Setup "Ingnore or Settings". When I press on either, it doesn't do anything. Screen is totally frozen. I have turned it OFF and ON and the message keeps coming back. Any ideas of what to do? Thanks

    Hello.
    My iPad2 shows a message of iCloud"Ignore or Settings". When I press on either "Ignore or Settings" it does not do anything. The screen is totally frozen. I haved turned it OFF and ON , but message keeps coming back.
    Any ideas?
    Your help is highly appreciated.
    Thanks,
    Caro

    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • I can't get rid of the message, n error occurred with the publication of album.  It just keep coming back, and can't move around in IPhoto.

    I can't get rid of the message, n error occurred with the publication of album.  It just keep coming back, and can't move around in IPhoto.

    Okay, folks, after a 3 1/2 hour phone call with a (very patient) telephone support person at Blackberry, here's what I learned.
    You can check your USB drivers this way:
    Plug in your phone into your USB drive. Assuming your Blackberry is "seen" by your computer...
    Go into the Device Manager on your computer (control panel)
    Expand the Universal Serial Bus controllers item on the bottom of the list
    Right-click on BlackBerry Smartphone and choose Properties
    Click on the Driver tab
    Click on the Driver Details button
    You should see one driver. I saw two. The one the BlackBerry likes is the RimUsb one.
    So here's what NOT to do: We tossed the entire driver that was the "extra". This effectively made using my mouse and keyboard impossible, as they are USB, and sent my poor husband into the basement to find a million-year-old keyboard (and then a mouse) with the old fashioned kind of connectors (PS2). Bleh. Don't do that.
    Here's what I did that worked (not saything this will work for you -- this modifies the Registry so better do a system backup with that backup and restore if you're nervous about this sort of thing):
    From the start menu, choose run, and type regedit to get into the Registry editor.
    Follow this file path: Computer, HKEY_LOCAL_MACHINE, SYSTEM, CurrentControlSet, Control, Class
    Click on: {36FCE60-C465-11CF-8056-4445535400000}
    If there's an item on the right called "UpperFilters", delete it. (see pictures)
    Hope this helps someone.
    Karin
    First pic: shows "before"
    Second pic: shows full file path and "after"

  • Deleted emails in Mail keep coming back since 10.10.3 update

    Mac Mail won't let me delete email or move email to other mailboxes since updating to 10.10.3. I delete messages or move them to other folders/mailboxes, and they keep coming back to my Inbox. Some messages come back almost instantly. Some come back after a few minutes. Other messages have come back that I deleted earlier in the day. There don't appear to be duplicates, since the messages I deleted aren't in the trash or in the folder/mailbox to which I moved them. Some messages have stayed in the trash, but when I try to permanently delete them, they reappear. The only way I've been able to permanently delete messages is by going online and deleting them in Gmail. I have used Gmail in combination with Mail for years without problems, and I had been using an earlier version of Yosemite without problems. My mail account is a Gmail account set up as IMAP. I have folders/mailboxes that are in Gmail and I have folders/mailboxes that are on my computer, but the messages I move won't stay in either type of mailbox. I tried rebuilding the mail envelop with Onyx which has helped with Mail quirks in the past, but this time it did nothing to solve the problem.
    Macbook Pro, Mid 2010, 2.66 GHz, Intel Core i7

    I have an android phone. If I read a message on my phone, it still shows up on my desktop.
    One of the problems with deleting messages is that I when I delete messages from the main Inbox (the Inbox that includes all incoming messages from all accounts), some of those messages stay in the Inbox for the individual account as unread. A typical scenario is that after reading all of my new email and deleting messages, I notice that Mail shows that I still have unread mail. So I go to the Inbox for an individual email account, and there are a bunch messages that I deleted (sometimes half, sometimes all of what I deleted) that are in the Inbox of the individual account and show as unread. Then when I go back to the main Inbox, and all of the messages that I deleted are suddenly back in the that Inbox. There doesn't seem to be any pattern to which messages get stuck. Sometimes the messages go away on their own. Sometimes they won't ever go away. I delete them from the main Inbox; they come back. I delete them from the individual account Inbox; they come back. I go to the Trash, delete them before they've gone back the the Inboxes, and they come back. The only way I can get rid of these zombie messages is to access the account through a browser and delete those messages online.
    Another problem I have, is that Mail is constantly asking me to re-enter the password for one of my email accounts. Fortunately, it's an account I use less frequently, but it's a real problem when I Mail asks me to re-setup up an account every time I open Mail.
    The problem has doubled or tripled the time it takes for me to keep track of my email. I'm going through reviews and looking for a replacement for Mail. I will be the first time I've used something besides Mail since I used Eudora (during the time when it was the best program available and you had to buy it).

  • Ram preview not playing from first frame

    Anyone else having problems with Ram preview playing back from a different spot in the timeline OTHER than the first frame? I have seen this happening consistently since the latest update (2014.2). I checked my preferences, and made sure nothing is accidentally selected to play from the last keyframe or something odd. But no. I am on a Mac Pro, running Yosemite, I googled this, and haven't seen anything. I haven't trashed my preferences yet, because I'm not sure it's a preference issue, and god...if I have to rebuild my render setting one more time...
    So to give you more detail.
    - I hit "0" on my number pad to launch a ram preview
    - It LOOKS like it's rendering each frame in order
    - When I hit "0" again to playback, it starts from a random location usually about 2 - 5 seconds from the beginning of the timeline.
    - It will loop back and then play from the start of the timeline.
    It's not using the current time indicator line or anything that would make sense. It's random, but near the start. I suspect it's pulling keyframe information from a nested pre-comp and using that, but there is not a keyframe in the comp I'm previewing.
    I also do not have the "From Current Time" checked box in the Ram Preview options, and there are 0 skip frames in that setting as well.
    If anyone has any ideas what this may be...I'd appreciate it.

    Here's the page with the known Yosemite issues:
    After Effects with Mac OSX v10.10 (Yosemite)

  • Video goes back to first image

    Hello all
    I have a prob with a video mpg4 that plays in the first page of my stack, i have added a jpg sequence to play automatically at the end of the video, to stop the video that play inside the page (1024/768)
    It plays well
    but as soon as i swipe down and navigate into the below page (read other video and scrollable text), then when I come back the first page of my stack the video has go back to its first image (rather than stay with the last image of the seuquence image)
    I hope I am clear
    I have try everything, even use a whole animation in jpg sequence (which is more heavy than a MPG4) but here again it goes back to the first image as soon as I navigate to the below page
    Any idea?
    BTW it works well in the desktop viewer

    The problem here could be related to the MSO timing issues that are fixed in the Viewer Builder viewers but not in the store iPad viewer. If you can create a custom Adobe Content Viewer, it should work. Or, wait for the store viewer to be approved (any day now).
    You might want to look at Keith Gilbert's article about stopping a video on the last image: http://blog.gilbertconsulting.com/2011/09/dps-stop-video-at-last-frame.html

Maybe you are looking for

  • NTSC to PAL Compression for DVD Studio Pro

    I am trying to make PAL MPEG2s using Compressor. My videos are roughly 15 minutes long (I have 6 going onto one DVD). I altered one of the Presets to PAL, 16x9, one pass VBR, 4.5 to 7 data rate, best for the motion setting. And I get the typical odd

  • IExplorer doesn`t build up an applet within a plugin tag

    I`m developing a jsp application on a Netscape 6.0. Within it, the applets work fine, but within an IExplorer 6.0 there is nothing built up. Not even a grey square or any kind of ERROr-message. Why?

  • HT4759 itry to log in to icloud and it says you cant sign in because af a service error

    hi i tryed to log in to icloud as i was seeting up and account but it just says you cant sign in becuase of a service error

  • Managing Content in CRM

    Hi , i am a Basis person. one of our CRM guys came to me and asked me to redirect a document attachment out of the Database. reason being that the size of the document is so large that if we start saving it in the DB, the DB will grow to a unmanageab

  • Floating Ad Application Beta

    Hi All, I hope this is not considered spam. I am not selling anything - just trying to get feedback on a free Flash application that I have created. It allows you to add Flash ads that float above the web page without writing any html or javascript c