BUGS: stop at last image and scrollable frames

Hey,
I think I've identified two bugs in the latest release:
1) MSO slideshows that have Autoplay checked, don't respect the "Stop at last image" option, and return to the first stage regardless. This behavior only occures some of the times, and I am not certain what makes it happen. I think it may only happen with slideshows in which are configured to be exported in vector format.
2) Scrollable boxes that are configured to be vertically scrollable only, are also horizontally scrollable, if the content of the scrollable box exeeds the horizontal limits of the scrollable frame.
Did anyone else expirience these bugs? Any workarounds or fixes?
Thanks

Doesn’t anyone bother to read?
I’m sorry, but It’s getting quite frustrating answering the same question over and over.
We now have about 15 threads on the same subject.
If you had read back just a few posts you’d know there’s a bug causing this.
Bob

Similar Messages

  • How to stop on the last image and that image remains on the screen?

    hello,
    how to stop on the last image and that image remains on the screen?
    thanks
    Yves

    Two ways are;
    split the clip with the razor tool at the point you want the image to freeze, r-click and select a Frame Hold option,
    or
    position the play-head at the end of the clip you want freezing and export a still frame. Re-import it and put it in your sequence.

  • MSO Slideshow does not stop, even though "stop at last image" is checked...

    Hey Guys,
    So I have a problem with MSO Slideshows. I am using Sprint 18 across the board, both in InDesign and on my iPad. Here's how the problem goes:
    - Build a MSO Slideshow with 3 states.
    - Set it in the overlay creater to be an autoplay Slideshow.
    - Check the box for "stop at last image"
    When I test it on screen, it works correctly. Then, when I upload the article and view on my iPad in Adobe Content Viewer, the slideshow plays, but instead of stopping at Frame 3, it goes back to Frame 1, and stops there.
    I tried every imaginable configuration of the buttons/check boxes in the overlay creator, and I cannot get this to work properly. Any one else expereincing this problem, and/or have a solution? Thank you very much.

    Doesn’t anyone bother to read?
    I’m sorry, but It’s getting quite frustrating answering the same question over and over.
    We now have about 15 threads on the same subject.
    If you had read back just a few posts you’d know there’s a bug causing this.
    Bob

  • DPS and Scrollable Frame text

    Having an issue with text rendering inside a scrollable frame, it seems to be cut off slightly at the top. Seems to be a new issue, is there an solution outside of just adding a return before the first line of text?
    Thanks.

    Thanks, Bob. Seems like a fairly simple fix. Appreciate the help!

  • Slideshow movie has stopped loading all images and stalls

    I made a basic slideshow that loads and plays photos with comments from an xml file.  I've just uploaded some new photo's and edited the xml to include them but now flash stops while loading the series of photo's and just stalls.  Removing the files from the xml does not work either and now I have no movie.  Tried various was of uploading etc and nothing works, the movie runs fine in testing locally.  It's extremly anoying as it was designed to be very simple to update with new images via the xml.
    attached are all the relevant files

    Not sure but I think preloaded.  I have waited it stops halfway through. Take a look here www.nathanielmcmahon.com.
    here is the actionscript
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var _this = this;
    var blend:String = 'noBlend'; // disolve, fadeInFadeOut, noBlend
    var slideShowWidth:Number;
    var slideShowHeight:Number;
    var slides:Array = [];
    var speed:Number = 1;
    var slideContainer:MovieClip;
    var myShowXML = new XML();
    myShowXML.ignoreWhite = true;
    myShowXML.load("slideshow.xml");
    myShowXML.onLoad = function(success:Boolean) {
        if(success){
            _this.slideShowWidth = this.firstChild.attributes.width;
            _this.slideShowHeight = this.firstChild.attributes.height;
            _this.speed = this.firstChild.attributes.speed;
            _this.blend = this.firstChild.attributes.blendMode;
            for(var i:Number = 0; i < this.firstChild.childNodes.length; ++i ){
                var data:Array = [];
                data.url = this.firstChild.childNodes[i].attributes.url;
                data.title = this.firstChild.childNodes[i].attributes.title;
                slides.push(data);
            createContainer();
            loadImage(0);
        else{
            trace('ERROR (could not load slideshow.xml)');
    function createContainer() {
        _this.slideContainer = _this.createEmptyMovieClip("slideContainer", _this.getNextHighestDepth());
        _this.slideContainer._x =215;
        _this.slideContainer._y = 0;
    function loadImage(loadCounter) {
        var loader:MovieClipLoader = new MovieClipLoader();
        var listener = new Object();
        loader.addListener(listener);
        loadCounter = undefined == loadCounter
            ? 0
            : loadCounter;
        _root.myClips_array = [];
        listener.onLoadProgress = function(target) {
            _this.preloader.textfield.text = "Loading.. "+(loadCounter+1)+"/"+slides.length+" Completed";
        listener.onLoadComplete = function(target:MovieClip) {
            target._alpha = 0;
            _this.slides[loadCounter].mc = target;
            if(++loadCounter < _this.slides.length){
                loadImage(loadCounter);
            else{
                _this.preloader._visible = false;
                moveSlide(0);
        //trace('load: ' +_this.slides[loadCounter].url);
        var mc = _this.slideContainer.createEmptyMovieClip(loadCounter, _this.slideContainer.getNextHighestDepth());
        loader.loadClip(slides[loadCounter].url, mc);
    function moveSlide(slideCounter) {
        trace('slideCounter: ' +slideCounter+ ' blendMode: ' +blend);
        //debug.text += slideCounter+ ' - ' + slides[slideCounter].url +'\n';
        slideCounter = slideCounter < slides.length
            ? slideCounter
            : 0;
        var slide:MovieClip = slides[slideCounter].mc;
        var title:String = slides[slideCounter].title;
        var textfield = getTitleText();
        textfield.htmlText = slides[slideCounter].title;
        textfield._y = Stage.height -textfield._height - 5;
        //trace(textfield._height);
        if('noBlend' == blend){
            slide._alpha = 100;
        else if('fadeInFadeOut' == blend){
            new Tween(slide, "_alpha", Strong.easeOut, 0, 100, 1, true);
        else if('disolve' == blend){
            new Tween(slide, "_alpha", Strong.easeOut, 0, 100, 3, true);
        doLater(this.speed, function(){
            if('noBlend' == _this.blend){
                slide._alpha = 0;
            else if('fadeInFadeOut' ==  _this.blend){
                var fadeOut:Tween = new Tween(slide, "_alpha", Strong.easeOut, 100, 0, 1, true);
                doLater(0.5, function(){
                    _this.moveSlide(++slideCounter);
                fadeOut.onMotionFinished = function(){
                    //_this.moveSlide(++slideCounter);
                return;
            else if('disolve' ==  _this.blend){
                new Tween(slide, "_alpha", Strong.easeOut, 100, 0, 5, true);
            moveSlide(++slideCounter);
    function doLater(time:Number, delegate:Function):Number {
        var intervalId:Number;
        var _delegate:Function = function() {
            clearInterval(intervalId);
            delegate();
        intervalId = setInterval(
            _delegate,
            time * 1000
        return intervalId;
    function getTitleText():TextField {
        if(this['titleTextfield']){
            return this['titleTextfield'];
        var titleTextfield:TextField = createTextField ("titleTextfield",_root.getNextHighestDepth (),15,0,180,100);
        titleTextfield.autoSize = "left";
        titleTextfield.wordWrap = true;
        //titleTextfieldt.htmlText = "<a href='http://www.myspace.com/thomasjack'target='_blank'><font color=\"#a17d4f\">MySpace page</font></a>";
        titleTextfield.html = true;
        var tf:TextFormat = new TextFormat();
        tf.font = 'Arial';
        tf.align = 'left';
        tf.size = 10;
        tf.color = 0x999999;
        titleTextfield.setNewTextFormat(tf);
        return titleTextfield;

  • Epson PictureMate Shows "Stopped" After Last Java and Security Updates

    Hi,
    After installing the following updates ("Final Cut Pro Update" (5.1.3), "Java for Mac OS X 10.4, Release 5" (5.0), "Security Update 2007-002 (PowerPC)" (1.0), "Security Update 2007-001" (1.0) and "Daylight Saving Time Update" (1.0)). My Epson PictureMate started showing the dreaded "Printer Stopped" issue noted y many other on many other printers.
    I've tried the Printer Setup Utility "reset printing system", removing and adding back the printer etc. The Epson Photo 820 still works fine. The PictureMate will also work fine from any other account. The account I'm using it in is not an admin acocunt, but a Standard account. The other family accounts can also use the printer, so the issue is local to my 1 main user.
    I've downloaded and tried the "PSR" utility from www.fixamac.com. The utility doesn't find anything wrong, but it does complain about CUPS permissions (as did Apple's Disk Utility). I'm thinking the resetting of the printer system deletes a number of directories and when they are recreated they seem to come back with permissions the system (and PSR) doesn't like. Both utilities repair and don't find the issues again, but no joy on the printing.
    I've also dumped the preferences with no change.
    Since other users can print fine, I'm assuming CUPS and the printer drivers are OK. Any idea what other secret files in my User folder could be messed up and affecting the single printer?
    Thanks in advance.
    Sean
    PowerMac G5 Dual 2.0, 2.5GB RAM, 10.4.8   Mac OS X (10.4.8)  

    There are a LOT of Java based exploits, so even 3.6.11 isn't fully patched, there are cross-platform exploits, and bots running wild.
    Did you also remove your cache folders?
    Firefox: I use 4.0 betas, NoScript I feel is a must.
    From MacIntouch:
    Security software vendors warn of an active, Java-based Trojan Horse that affects Mac users. Disabling Java in your web brower is a highly-recommended counter-measure. Also flushing DNS cache.
    http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/
    Adobe, Oracle, Nvidia.... but actually leaving it to users to get the latest Java on their own is the same as what happens with Windows.
    Mozilla group urged its users to immediately:
    Disable JavaScript in Firefox.
    Using NoScript Add-on.
    http://www.zdnet.com/blog/security/firefox-zero-day-under-attack-at-nobel-prize- site/7550

  • Anchoring an object within a scrollable frame

    Hi there,
    I am trying to create a page that scrolls horizontally through a series of images. I am able to do this but I am having trouble anchoring my company logo so that it does not move when I scroll through the images. I have seen on apps that this is possible... can someone give me some advice?
    Thanks!

    Turn your company logo into a two-state MSO that's set to Auto Play and Stop At Last Image. Put the logo MSO on top of your scrollable frame, and you'll be able to scroll the frame behind the logo. Let us know if that works, or if you're looking for a different effect.

  • Scrollable Frames lagging

    I am having trouble with images within scrollable frames. They are taking a while to load and appear white until fully loaded. The images are at the lowest res/size possible already.. Is there anything else I can do to help it load faster?

    Thanks for the quick reply. I'm using Folio Builder 12.3.3, Indesign5.5. Mac.
    I laid out several pages using the same scrollable frames but out of those about 30%does not function properly. These are simple scrollable frame with a vertical action and I did everything by the book--dimensions and all. I also tried tagging the elements in the Layers panel but had no result. These 30% were working just fine before but as I upload it again and again due to adjustments, it got stuck. My last resort is to create the articles again from scratch but then I may never know what the problem was.

  • Object State stops at first Image

    Hi, I have created Object States for 5 Images and gave a Auto Slideshow, It plays well and stops at the first state but I want to freeze at the last Object State.
    Is there any way to stop.
    Thanks
    Stanly

    Select Stop at Last Image in the slideshow overlay creator.
    Important: Make sure you have the most recent update to the Content Viewer from the iTunes Store. It was approved a couple of days ago.
    Bob

  • Elements 10 Slide show is freezing up during transition of last image.

    I am trying to make a slide show to put on a web page.  The slide show runs until it is transitioning the last image and then freezes for a couple seconds and then jumps to the first image and is done.  I have changed the file sizes, the number of images used and no matter what, it still won't continue into the last image.  I have Windows 8...if that matters.  

    Thank you for helping me...I am learning a lot!
    *****Are you saying that you can play back that slideshow that you created in the Elements Organizer 10 slideshow editor. What are you playing back in the Elements Organizer 10
    Good question...so I tried opening it with other programs to see what would happen! I saved the file onto my desk top and can play it in Real Player, Elements, Movie Maker and Windows Media Player.  So, that is telling me it must be a yahoo problem??  Is there a way in Elements to make it loop?  That is what I am trying to do on my web site.  I just want the pictures to continuously play.
    a. the wmv video created in the slideshow edit and outputted Save As A File Movie (.wmv)? If so, what did you set as the Slide Size...Web Size or other?   Web size
    b. other
    How are you uploading this .wmv file to your web page?
    I have Yahoo Sitebuilder.  In that program, all I do is "insert" a video.   It takes several types of files...including the .wmv file.
    ATR
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6065618#6065618
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6065618#6065618
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6065618#6065618. In the Actions box on the right, click the Stop Email Notifications link.      
    Start a new discussion in Premiere Elements at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • BT Infinity - stopped working last night

    My BT Infinity connection stopped working last night and BT Home hub is showing green , sometimes flashing green or solid green. Recently I have a a cross line on the phone line intermittently and several small outages of Infinity connection too. Can you help please?
    Has the BT Home Hub 4 packed up? Will BT replace this or am I responsible for its cost & replacement?  Openreach are coming in a few days.
    Can anyone help please.

    I suggest you try a factory reset of the hub
    http://bt.custhelp.com/app/answers/detail/a_id/113​86/~/how-do-i-reset-my-bt-home-hub-to-its-factory-​...
    If you found this post helpful, please click on the star on the left
    If not, I'll try again

  • Javascript bug and random frames: alternative solution?

    Hello all,
    I'm working on a SCORM 1.2 compatible eLearning project on Captivate 6.1.0.319 (subscription edition), and I've just come across the bug described very precisely here:
    http://www.youtube.com/watch?v=Vq9K9lvq-5I
    and here:
    http://www.cpguru.com/warning-adobe-captivate-6-and-javascript-bug/
    Basically, any javascript used in the project would break the SCORM compatibility, either sending wrong completion information to the system, or in my case, also shutting down the eLearning module and also closing the window. This problem occurs only in IE, as other browsers seem to work fine.
    My target group of users is a corporate environment, in which IE is the #1 platform; it's unrealistic to ask for a browser update, so I have to find a solution to be able to publish the project correctly. The same blogger who uncovered the problem wrote that it's possible to receive a patch from Adobe which consists of an updated version of the file Mainmovie.swc to swap in one of the program's directories (more info here:http://www.cpguru.com/fix-for-the-adobe-captivate-6-javascript-bug/ ).
    The problem is that the supposed fix (which you have to request via email and it's not directly downloadable), is said to be available only for Captivate 6.0.xx and not for the 6.1 Subscription edition.
    As my project contains a lot of drag and drop interaction, I cannot afford to downgrade to 6.0 to try to use the patch, and I was wondering if somebody has had the same problem and can help out.
    In detail, I only use javascript in one slide to simulate a random display of rollover images (a button calculates the current position of the playhead and jumps to a random point of the slide, chosen from an array of predefined frame numbers; at every 'stop' there is a different rollover image and a button that makes the playhead jump again to display another 'random' image).
    I was wondering if there is any way to reproduce this behavior not using javascript, so that if there is no fix (I'm obviously in a very tight deadline...), I can get around the problem by avoiding javascript altogether.
    Thank you very much for your help!
    n
    (crossposted on the general Adobe Captivate forum)

    I don't have a solution for you, but I want to compliment you for a great post. I wish others would follow your lead, and include the information about their system, the problem, the steps already taken, etc.
    Have you tried creating a new project, with a new HDV sequence, and editing a short timeline as a test to see if it's a problem with that one timeline or not?

  • Scrollable Frames bugs

    Hi,
    I got some errors with drop 19 while creating my first magazine....
    1. Horizontal slider, placed on the left side. On the right side is an image with a contour and a textflow (nor sure whats the name for that n english...). If you scroll the text horizontally to the left, the textflow is as if the image is placed in the text. The issue is, that theres a bug with the overlay and placed mages on top of it, it thinks it is placed within the scrollable text
    2. You cannot leave a page without a button when the scrollable text area is too big. I think at the end of the srollable text the page should flip. Users might be confused if nothing happens. This must be fixed soon. As i have a single license and a tight time frame, i cannot fix it later (without paying for it again..). Drop 19 is nearly useless with.scrollable frames, i read a couple of ther reports naming that issue...
    Hope to get some jelpfull answers. In my opninion, the whole dps is in early beta. I started using it with drop 9, the handling is better now, but some fetures are still missing...
    Kind regards
    Simon

    Another issue: scrollable text withn a scrollable text is working, but only if the scrolling frame is visible. If it is not visible on lage load, the font site s reduced and not scrolling, it is repeatsble, i can provide indd files if required

  • Video set to stop on last frame appears lighter than last frame

    I've got a video set to "stop on the last frame" using the technique described here:
    http://digitalpublishing.tumblr.com/post/6141054971/how-to-make-a-video-stop-at-the-last-f rame-here
    Works great. But whenever I do this, there is a slight darkening when the multi-state object appears at the end. To create the image for the multi-state objects, I opened the video in Photoshop, grabbed the last frame, and saved it as a JPEG.
    Anyone have any ideas? I've tried saving the end image as a PNG, lots of other workarounds, but the problem persists. I've noticed this in other publications I've downloaded also, so I think the problem is widespread.

    great to see this trick evolve in a first-frame-lasf-frame-method, wich I
    thought about,too lately.
    Will post an update in my article next time ii get the chance.
    —Johannes
    (mobil gesendet)
    Am 27.09.2011 15:33 schrieb "KeithGilbert" <[email protected]>:
    KeithGilbert http://forums.adobe.com/people/KeithGilbert created the
    discussion
    "Re: Video set to stop on last frame appears lighter than last frame"
    To view the discussion, visit:
    http://forums.adobe.com/message/3940255#3940255

  • I downloaded Office for Mac 2011, and almost immediately my Yahoo email stopped working, most images were disabled throughout my internet sites, and my bank site reported that I was using a "new computer," which is not true. How can I get my email to work

    I have an iMac version 10.6.8/2.66 GHz Intel Processor and 4 GB memory, with Safari 5.1.10. I had used Office for Mac 2008 but had to upgrade for work. The download (from Amazon) went swiftly, but when I started Word, it did not function too well. Then about an hour later I noticed that my Yahoo email site stopped working, it lost all images and the text just jumbled up on the left side of the screen. No amount of emptying caches or resets/quits/restarts did anything. I called the Internet support, and they just said it was my iMac that had the problem. I have been reduced to using MacMail as my email, but this is tenuous, as my Yahoo account keeps holding things up and constantly asking me for my password (and sometimes it does not accept it). How can I get my computer back?

    The path may be long and tedious, grasshopper.
    Actually, the download of Office 2011 for Mac probably was not legal and may have contained bugs or other things meant to make it unstable, or invite a host of issues. The usual path would be Office 2011 for Mac on DVD so you could reinstall it and add the extras from the disc as needed; or fix the installation later on. The updates for security were downloads from Microsoft servers. You'd need a legitmate version with pass code.
    Options for Mac and office-like application suites include Libre Office, NeoOffice, and these run free. The latter supports up to Mavericks. 10.9.1 now. They have a word, excel, and other parts a lot like the real office.
    If you have a working clone of the system prior to installing the Office 2011 for Mac download and any subsequent and perhaps unseen extras, you could revert to it simply by restarting the computer from the clone, where it resides in externally enclosed self-powered hard disk drive, of a type known to support OS X clones... With ports to help work with most modern Macs. FireWire + USB. Then, clone it back w/ carbon copy cloner.
    Short of that, perhaps someone will see your post and offer some indepth method of hunting down bugs via use of Console logs; and maybe booting into Terminal utility to use unix code. It can be rather involved. Maybe Linc Davis will offer some detailed reply that will invite you to read carefully and try it.
    I've given up using computers long ago.
    A pet raven has been taught to write this.
    Good luck & happy computing!

Maybe you are looking for