Judgments of course second preloader

There are two preloaders that appear at the beginning of a Captivate course loading. The first indicates the percentage loaded with a progress bar. The second preloader is a a circle of rotation on a black background. Some, but not all, of our users are affected by a halt to loading when the preloader 2nd content. Does anyone know what content is loaded when this second preloader appears?

This course is published as a SWF file. I've included two preload images.

Thank you!

adobe_captivate_preloader_green.JPGadobe_captivate_preloader_black.JPG

The second icon spinning relates to his effort to connect with the SCORM API in the LMS.  If it cannot communicate with the LMS or find the SCORM API, then it goes right on spinning.

Check if your problems users have settings in their browsers which could block it.

Tags: Adobe Captivate

Similar Questions

  • Preloader does not not on the second stage

    Hello. I'm new to flash and I have this problem on the preloader.

    I have a preloader and it works on the first frame of the stage 1. Now, after loading, a menu will be appear and there is a Start button. There is no error in my code after clicking the Start button, it will stop to frame 1 scene 2 were second preloader is, so it seems to load quickly, so there is no loading unlike the first preloader animation. What I want to do is after you click the button Start , the preloader will reappear to load the scene 2 Help, please

    Here is the link to the file:

    https://www.dropbox.com/s/8raiwk4qxe693u1/test.fla

    Thank you!

    You don't need any 'real' preloader for a scene that is in the movie that you have already loaded. If you want to have a model for graphical effect or smth.

    simulate a preloader with animation or a timer controlled MovieClip.

  • Slow preloading on server

    Hi guys,.

    I made an app that uses a lot of sounds and images files and I implemented a feature to preload these files before you run the program to ensure the proper functioning on my program. There are about 10 MB of images and sound clips

    When the application running on the spot of course all preloads very quickly (about 10 seconds), but when I downloaded on a server it takes about a minute or two to preload 10 MB of files. Of course, this is not normal?

    Here is my code:

    function preLoaderSound (): void

    {

    snd1 = new Sound (new URLRequest(this["array"+k][0][m]));

    snd1.addEventListener (Event.COMPLETE, preLoadComplete);

    }

    function preLoaderImages (): void

    {

    Image1. URL = this ["array" + k] [l] [m];

    imageLoader1.load (image1);

    imageLoader1.contentLoaderInfo.addEventListener (Event.COMPLETE, preLoadComplete);

    }

    preLoadComplete increments k, l and m and keeps a track of how many files have been loaded

    Can anyone help?

    See you soon

    Chris

    In view of your data structure and do not enter the topic of it needs improvements, below is a loading block based on your tables.

    Please note that this code assumes that the only goal is to preload all assets at the beginning and then use the cache. If you want to more efficient application - you want to store loaded active elsewhere and access it if necessary. But this is a different topic.

    I tried to comment code as much as possible.

    
    import flash.display.Loader;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.events.EventDispatcher;
    import flash.events.IOErrorEvent;
    import flash.media.Sound;
    import flash.net.URLRequest;
    
    var array1:Array;
    var array2:Array;
    /**
     * Number of arrays with convention array in the scope
     */
    var numArrays:int = 2;
    /**
     * Total umber of assets to load
     */
    var numAssets:int = 0;
    
    init();
    
    function init():void
    {
              array1 = new Array();
              array2 = new Array();
              array1[0] = ["", "GuitarMicArray/Center.mp3", "GuitarMicArray/15.mp3", "GuitarMicArray/45.mp3", "GuitarMicArray/60.mp3", "GuitarMicArray/90.mp3"];
              array1[1] = ["", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg"];
              array1[2] = ["", "MicPosPics/Center.jpg", "MicPosPics/15.jpg", "MicPosPics/45.jpg", "MicPosPics/60.jpg", "MicPosPics/90.jpg"];
              array1[3] = ["", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg"];
              array1[4] = ["", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg"];
              array2[0] = ["", "GuitarMicArray/Center.mp3", "GuitarMicArray/15.mp3", "GuitarMicArray/45.mp3", "GuitarMicArray/60.mp3", "GuitarMicArray/90.mp3"];
              array2[1] = ["", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg", "MicPics/SM57.jpg"];
              array2[2] = ["", "MicPosPics/Center.jpg", "MicPosPics/15.jpg", "MicPosPics/45.jpg", "MicPosPics/60.jpg", "MicPosPics/90.jpg"];
              array2[3] = ["", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg", "GuitarPic/LesPaul.jpg"];
              array2[4] = ["", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg", "AmpPics/Marshall.jpg"];
    
              preloadAssets();
    }
    
    function preloadAssets():void
    {
              /**
               * 1. Since mime types are mixed up in the same data provider - we should separate mime types into different more logical entites
               * 3. Since array contain redundant assets - we shoul avoid loading assets more than once
               * 2. We should define how many assets to be loaded
               */
              var sounds:Array = [];
              var images:Array = [];
              for (var i:int = 1; i <= numArrays; i++)
              {
                        // gain reference to array
                        var array:Array = this["array" + 1];
                        // loop through second dimensions
                        for each (var subArray:Array in array)
                        {
                                  // loop through elements in the seond dimension
                                  for each (var url:String in subArray)
                                  {
                                            /**
                                             * We need additional validation
                                             * 1. Make shure that current element is not an empty string
                                             * 2. Identify mime type base on file extension
                                             */
                                            // only if it is not an empty string - proceed
                                            if (url != "")
                                            {
                                                      // increment number of assets that must be loaded
                                                      numAssets++;
                                                      // populate either sounds or image array
                                                      // url.match(/(\w+)$/gi) extracts file extension
                                                      switch (url.match(/(\w+)$/gi)[0])
                                                      {
                                                                case "jpg":
                                                                          // push image url into array of images urls
                                                                          // if url is not present - push it
                                                                          if (images.indexOf(url) == -1)
                                                                          {
                                                                                    images.push(url);
                                                                          }
                                                                          break;
                                                                case "mp3":
                                                                          // puch sound url into the array of aounds urls
                                                                          // add only if url does not exist int ht e array
                                                                          if (sounds.indexOf(url) == -1)
                                                                          {
                                                                                    sounds.push(url);
                                                                          }
                                                                          break;
                                                      }
                                            }
    
                                  }
                        }
              }
              // at this point we are ready to load all assets
              // invoke images loading
              for each (url in images)
              {
                        trace("image", url);
                        var loader:Loader = new Loader();
                        addListeners(loader.contentLoaderInfo);
                        loader.load(new URLRequest(url));
              }
              // invoke sounds loading
              for each (url in sounds)
              {
                        trace("sound", url);
                        var sound:Sound = new Sound();
                        addListeners(sound);
                        sound.load(new URLRequest(url));
              }
    }
    
    function onError(e:IOErrorEvent):void
    {
              trace("error", e.target);
              removeListeners(e.target as EventDispatcher);
    }
    
    /**
     * Adds loading related listeners
     * @param          ed
     */
    function addListeners(ed:EventDispatcher):void
    {
              ed.addEventListener(Event.COMPLETE, onLoadComplete);
              ed.addEventListener(IOErrorEvent.IO_ERROR, onError);
    }
    
    /**
     * Removes loading related listeners
     * @param          ed
     */
    function removeListeners(ed:EventDispatcher):void
    {
              ed.removeEventListener(Event.COMPLETE, onLoadComplete);
              ed.removeEventListener(IOErrorEvent.IO_ERROR, onError);
    }
    
    function onLoadComplete(e:Event):void
    {
              // remove listeners
              removeListeners(e.target as EventDispatcher);
              // decrement numAssets
              numAssets--;
              // when all assets are loaded - numAssets is zero
              if (numAssets == 0)
              {
                        // all assets are loaded and we can go ahead with the rest of application
              }
    }
    

    Post edited by: Andrei1

  • sound logic in ms3.2.3 after 20 sec of sound... noon ok everything ok but no sound signal

    Hello

    IM updated to 3.2.3 ms3, but I have a problem

    When I play his legacy of logic board, logic, pop horn or other sounds in the room of his judgment after 20 seconds or 1 minute! For direct only play its no good.

    I try to reset the macbook pro and the same problem. !!  South of the ok signal all ok, but no output... Please solve it... IM using original ms3 or the logic of his no other noise.

    TNX

    10.11.3 iOS

    You run logic and MainStage at the same time?

  • Qosmio F50 - 10 k - Sound issues and want to install XP

    I work as a DJ and I use the computer a lot, but I have some problems whit him.

    First look, the first month when I have both him everything was ok, but when I installed alpha lexicon external sound card in Winamp, I have the distortion of the sound, but in virtual dj, I don't have these problems.

    Also I have a problem with secondary hard drive (320 GB), when I use virtual dj and want to play the song from a secondary hard disk - happens to this, the entire system and all its judgment in 2 seconds and then it begins to read the program.

    But for me more important question is, is it possible to install Windows XP on this computer, and where I can find the drivers and stuff necessary?
    Thank you

    Hello!

    It's not easy to say what the problem is.
    First of all, I would like to make a Winamp update if don t have the latest version.
    It could also be that it is not compatible with Winamp.

    The second problem I would like to defragment the HARD drive.
    And you have this problem with all players or special offers?

    Good bye

  • Various / various: Windows 7 Installation Issues

    Hello

    I have 6-7 laptops I am deploying across Windows Deployment Services. Initially, they came with 64-bit Windows 8, but we use Windows 7 64-bit. The deployment of services charges, the ethernet port begins immediately turn on and off. (judgment of 1 second, 1 second and so forth). Can anyone recommend a solution. It seems to me that the driver is giving the question, but I tried a HP provided the driver and the driver of Realtek PCIe FE official controller. One of the models in question is a HP Pavilion e134nr 17. Any help would be greatly appreciated.

    Thanks adavance!

    --------------------
    Please click on "Bravo" to show your appreciation for me.

    If this response worked, please mark this reply as an answer.

    Hello

    Thanks to those who responded. I discovered completely by accident, it was. Apparently the ethernet switch that computers were originally hip began to fail, and that was the cause. It was not very clear before, because the devices on the other 10 ports worked very well. I arrived just to connect it to a different switch in a different place because the original has been busy, and what you know. Thanks again for the suggestions.

  • Installation of VMware Player 3.0 tools

    I'm under fredora 12 64-bit fully up-to-date as the host

    I have installed VM player 3.0.

    Initially, I couldn't run VMware Player.  I read on the web for

    MV/usr/lib/vmware/resources/mozilla-root-certs usr/lib/vmware/resouces/mizilla-root-certs.old.

    This allows me to run vMware player without it judgment of 1 second after the start.

    I could not install the tools.

    Then I read that we should leave the only CERT file and disable the file libcurl.so.4 what I did by

    MV /usr/lib/vmware/resources/mozilla-root-certs.old/usr/lib/vmware/resouces/mizilla-root-certs

    and

    MV /usr/lib/vmware/lib/libcurl.so.4 /usr/lib/vmware/lib/libcurl.so.4.DISABLE

    VMware Player started ok but still not able to install the tools.

    Each time, with windows 98 on I click on VM & gt; Install VMware tools, I get a message

    Certificate for the server error date top. you check the internet settings or contact administratot system.

    The network part works correctly, I can see the other computers on the local network, I can access web pages through Explorer.

    The log of the user interface is attacehd

    Nay ideas on what I can do wrong or get a new file mozilla - root.certs snack is courpt.

    Thanks in advance

    grnl wrote:

    If it has other ideas of tro suggestions, I'd be grateful thank you

    I don't know if you got your problem solved already, but if not, here's another way to do which does not uninstall reader, workstation installation, tools and uninstalling then workstation installation and reinstallation of the reader:

    http://communities.VMware.com/message/1488773#1488773

    I hope this helps.  If you do not get the problem solved, please post here what you did so that others may benefit from your experience.

    Kind regards

    Chris

  • My T7910 came with two bays of processor

    It appeared earlier and I looked inside and of course it has 16 bays of memory and 2 beautiful large bays of processor rather than one that told me to wait with my single purchase of an e5-2650 v3 and 32 GB DDR4 4x8chips XEON Proc. I know tells you all about the goal then I would be surprised and happy right EXTRA? :~) . (I choose to believe that).  :) I was right, because why a unique model number would mother many styles on board!  Different CHIPS maybe but not motherboard! They would just give different number model, 7900 7920 or, with a number of type 7911-has been revised. Otherwise, it would be a nightmare to replace a motherboard. Dell rocks...  More beautiful Machine. that I never set eyes.  I used to own a Convertible PC of Tabler by ASUS called a R1F, when it was released it was called "The LAMBORGHINI of Notebook computers" - well, I gave this Tablet PC to my little nephew to have a computer of his own in his room, and now I have re - claim this expression to invent a nickname for the T7910; my new computer switches! Didn't come with much else though...  None of the drives. (I hope that this optimization of Dell for Autodesk 3Ds Max software, they talked, is on the Dell.com site.  There is the Windows key, so all I need is a disc to install Windows $10...  I asked; a DVD of resources as well as the Energy Star AND one of the "change 5.25" to 2.5 "bays free install Kits. But I hope that if they send a Correct Power Supply, etc, the kit of disk resources and 2.5 "can come with it. (no idea if they are welcome?  up and down, they promised that the Energy Star Option would be included before shipping...  I don't want the "Chrism" bug - if he's out and about he will see this and answer, otherwise he is held in any case...   I'll give you tech a call now that I have a sticker (somewhere) that apparently allows me to get to them for the first time again.) (which should make a difference, I hope.). On the Energy Star 6 option... Maybe if I ask you once again, someone can answer and not tell me that I'm not allowed to know because all the information "are owners'., (so they said right before the last dark ages,..): what I'm now missing (in terms of Energy Star compliance), they said they would put in and didn't?  It IS JUST the power SUPPLY? or the whole of the machine that receives Energy Star treatment and I need this credit to return completely to start again for the sake of a 'unique' CHECKBOX. ' They ' (tech chat etc.) says that a power supply could be easily "cross-shipped. I hope that this is the case.  I have not really met someone at Dell that could actually change or fix anything, except the person who says they were my person point (and 100% ensure that my machine is a not ship without Energy Star compliance...)   Well...  Maybe the Tech Department are all the RockStars and everything will be Fine. Other than the relatively small omission of a disk, cables and energy star, OMG Wow its GREAT. The best research machine EVER! NOW, I just have to hope is not not a MANNEQUIN PROC PORT and 8 additional dummy DDR4 ports!  LOLOL (they don't put much more metal on a false port!)  I'm so tempted to look under the hood of protection proc to see if there is a badge or million.  (Maybe when I do a video Unboxing 3D tonight later, I'll do it!) OH Yes, I'll do a video UNBOXING to prove that it is amazing how and to help people in a situation like mine (for love or money) is not found on a SINGLE FACT REAL on this MEGA-MACHINE before, during or after the command!  All my * life I have always corrected and help tech departments and not once I don't call any Department tech, I was helped before so I can understand the problem myself and teach THEM the fix (no not that none of them ever ready attention or he wrote LOL) BUT I have NO experience with DELL technicians so far (as I just got my Service Code on my machine)?) so I quite keep out hope and suspend judgment (of course).  Maybe they are the very cool tech guys who are proud to be uber-nerds (like me!) and technicians and in love with their line of the professional tools like today already Fine am!  WHAT A MACHINE! Thanks to those who have tried to help. its perfection!  maritime transport (it is out of LAND anyway?)   I was so counting on him to come next year and I would have the time to make sure that they solve these problems, I've had with the selection of what I wanted in this control system crazy automated online that indicates what you can and can't buy (?)  and then the lack of assistance order placed on the 'tech' cat, which wasn't all that too...  Saying: I wasn't buying a computer at home (her sitting on my BED right away in its box) and they can not help me even if the offer 'click for instant help' dialogue popped up ON the order of T7910 page to halfway through ordering process. Any all this good things.   I can say that it is the best machine I've ever seen.  Surely, they want to go to the final. 01% more in order to make what I have planned and called for!

    Hi Robert3d,

    I am pleased to hear that the system has so far been to the height to your expectations.

    Good luck with the new PC!

  • Test bandwidth Profiler only 2 frames?

    Hey all,.

    I have a Flash animation that I have created, which spans 1800 frames. When I test the movie, it plays properly. However, the bandwidth Profiler displays as two managers. Where is my 'play' button and the other containing the rest of the frames. How is my bandwidth Profiler does not correctly display the timeline? The reason I ask is because a preloader that I try to use does not work. I guess that it is dysfunctional because of this problem. My code must be correct, because I used the same code and preloader for another Flash animation, and everything works as it should, preloader included.

    Here is a picture of what I see for my Flash animation that does not work correctly: http://www.flickr.com/photos/90130393@N08/8185730489/

    Where it says, "duration" should say 1800 fr., but instead said: "2 fr." However, when I remove the name of the instance of my preloader, the bandwidth Profiler shows everything as it should be with the correct time, but of course my preloader does not accordingly.

    I think that it is the root of my problem which is causing my preloader not working.

    That's the problem.  you are using, at least one, tlf textfield.  is it necessary?

    If this is not the case, use the classic text.

    If Yes, click on file > publishing settings > settings (the wrench) actionscript > library path > and change the combobox default binding to "merged into code".

    Repeat the test.

    p.s. Please check the useful/correct.

  • Last year, I bought my laptop and I tried to create a second user account but I placed it somehow this account as the Admin user. I don't remember the password and my file vault is of course.

    Last year, I bought my laptop and I tried to create a second user account but I placed it somehow this account as the Admin user. I don't remember the password and my file vault is of course.

    What password? You can change a password for the account, but if you do not know the FileVault password, you are in a bind. You need to call Apple directly if you their sent an emergency password when configuring the FV.

    For a user account:

    You forgot your password

    Lion or later version

    Reset a password in Mac OS X 10.7 Lion

    OS X Lion mountain - reset a login password,

    OS X Mavericks-solve password problems,.

    OS X Lion-Apple ID can be used to reset your password for the user account.

  • Captivate 8 - HTML5 - course does not spent preloader

    Hello

    Someone knows a course does not (do not turn past the preloader) after the publication of HTML5? As the screenshot.

    Any help would be greatly appreciated.

    screenshot.jpg

    Thank you

    Andy

    Yes I got it the other day, I found that it was due to a drag and drop slide, I have reproduced the slide and remove the original and it is then loaded fine.

  • Second scene not auto playback after preloader (only in Internet Explorer)

    Reference site: http://www.danpearce.me/index2.html

    See also the source file attached.

    Hello, I really need help with this problem. I just built my first preloader and the first load, it works very well in Internet Explorer 8 (with the most recent Flash player), but on reload or reopen the browser, is not autoplay the second stage (main stage). Works fine in Firefox and Chrome.

    I searched the internet up and down with no luck to solve this problem.

    Here are my ActionScript 3.0 for the preloader:

    to import flash.events.ProgressEvent;
    function update(e:ProgressEvent):void
    {
    var p: Number = Math.floor ((e.bytesLoaded*100)/e.bytesTotal);
    If (preloaderMC is MovieClip) {}
    preloaderMC.gotoAndStop (percent);
    preload_txt. Text = String (percent) + "%";
    }
    if(percent == 100) {}
    Play();
    }
    }
    loaderInfo.addEventListener (ProgressEvent.PROGRESS, update);
    Additional test for IE
    var p: Number = Math.floor ((this.loaderInfo.bytesLoaded*100)/this.loaderInfo.bytesTotal);
    if(percent == 100) {}
    nextFrame();
    }
    Stop();

    Here is my object tags in the html code:

    < object classid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase ="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10, 0,0,0" width = "100%" height = "100%" id = "flash-favoritesbar2" align = "middle" >
    < param name = "allowScriptAccess" value = "sameDomain" / >
    < param name = "allowFullScreen" value = "false" / >
    "< param name ="movie"value =" flash - favoritesbar2.swf "/ > < param name = ' value ' = 'best' / > < param name ="bgcolor"="#000000"value / > < embed src =" flash - favoritesbar2.swf "quality ="best"bgcolor ="#000000"width ="100% "height ="100% "name ="flash-favoritesbar2"align ="middle"allowScriptAccess ="sameDomain"allowFullScreen ="false"type =" application/x-shockwave-flash"pluginspage ="http://www.adobe.com/go/getflashplayer_fr"/ >"
    < / object >

    Help, please! Thank you.

    The method must be called after the Init or Complete event.

    Try this:

    loaderInfo.addEventListener (Event.COMPLETE, onComplete);

    function onComplete (evnt: Event): void

    {

    Play();

    }

  • Preloader which modifies the external SWF files every 5 seconds

    Hello

    I made a web banner in flash that loads an external swf and another external swf changes after 5 seconds. The banner have a preloader, but the problem becomes when you load the first time. As sovereign wealth funds are not cached in the cache of the browser and yet, time 5 seconds start counting from the preloader, and when the external swf file, shows only 1 second rest and it is replaced by another. There is a way to 'freeze' the time for each external swf until it loads completely?

    The code that loads SWFs every 5 seconds (this code is placed in a layer of action):

    start of the code:

    var intervalId: number;
    var: number = 0;
    var maxCount:Number = 23;
    var duration: number = 0;
    var banners: Array = new Array)
    "abatrade.swf,"
    "bancobrasil.swf,"
    "caparao.swf,"
    "cedro.swf,"
    "cesama.swf,"
    "copasa.swf,"
    "damatta.swf,"
    "emtel.swf,"
    "engedrain.swf,"
    "extel.swf,"
    "feedback.swf,"
    "iti.swf,"
    "intermedium.swf,"
    "magnesita.swf,"
    "maquenge.swf,"
    "maxxdata.swf,"
    "orteng.swf,"
    "paiva.swf,"
    "paraibuna.swf,"
    "paraopeba.swf,"
    "sabesp.swf,"
    "serpro.swf,"
    "soll.swf,"
    'thawte.swf '.
    );

    function executeCallback(param:String) {}
    var duration: number = 5000;
    loadMovie (banners [count], loadmovie_mc);
    loadmovie_mc._x = 0;
    loadmovie_mc._y = 0;

    clearInterval (intervalId);
    if(Count < maxCount) {}
    Count ++;
    intervalId = setInterval (Thi, "executeCallback", duration, banners [count]);
    }
    else {}
    Count = 0;
    intervalId = setInterval (Thi, "executeCallback", duration, banners [count]);
    }
    }

    If (intervalId! = null) {}
    clearInterval (intervalId);
    }

    intervalId = setInterval (Thi, "executeCallback", duration, banners [count]);

    end of the code
    ----------------------------------------

    And the code to the preloader (this code I place in the movieclip that loads external SWF files):

    start of the code:

    {onClipEvent (enterFrame)}
    var gtT:Number = this.getBytesTotal ();
    var gtL:Number = this.getBytesLoaded ();
    var gtP:Number = int ((gtL/gtT) * 100);
    If (TWG > gtL) {}
    This ._alpha = 0;
    _root. Loader._alpha = 100;
    _root. Loader.bar._width = gtP;
    clearInterval (intervalId);
    } else {}
    This ._alpha = 100;
    _root. Loader._alpha = 0;
    intervalId = setInterval (Thi, "executeCallback", duration, banners [count]);
    delete onEnterFrame;
    }
    }

    end of the code

    Note that I tried to freeze the time using a clearInterval does in the second code, but he simply doesn't work...

    Any ideas? Thank you

    Edson

    Here's the correct code kglad send me. Thank you very much!

  • Preloader does not not on the second click?

    Hello, I use an action for preloading a movieclip on my site and it works the first time it downloads, but when you click on the gallery once again, it does not load, but shows just the beginning of the preloader.

    You see what could be the problem in the script, or if the problem is elsewhere?

    The site:


    [link removed at the request of the poster]

    You can see the problem if you click on "Hosts of Talk Show", wait until it loads, click customers, and then returns to "Talk - Show hosts".

    Now, it does not load, and it's the same thing with the other galleries.

    The site works by loading an external swf file with the UILoader, the loaded swf file is a ScrollPane that loads a Movieclip.

    Would be really happy on a solution to my problem =)

    Thank you!

    ------------------------------------------------------------------------------------------ ----------------------------

    Stop();

    Preloader
    loaderInfo.addEventListener (ProgressEvent.PROGRESS, updatePreloader);

    function updatePreloader(evtObj:ProgressEvent):void
    {
    container for the progress of the site (download)
    var p: Number = Math.floor((evtObj.bytesLoaded*100)/evtObj.bytesTotal);
    preloader_txt. Text = % + '% ';
    If (p == 100) {}
    nextFrame();
    }
    }

    ------------------------------------------------------------------------------------------ ----------------------------

    has finished loading (because of your cache file recovery) when your charger is displayed.  so no progressevent is dispatched.  to remedy this,

    -------------------------------------------------------------------------------- --------------------------------------

    Stop();

    var loadCompleteBool:Boolean;

    {if (loadCompleteBool)}

    nextFrame();

    }

    Preloader
    loaderInfo.addEventListener (ProgressEvent.PROGRESS, updatePreloader);

    function updatePreloader(evtObj:ProgressEvent):void
    {
    container for the progress of the site (download)
    var p: Number = Math.floor((evtObj.bytesLoaded*100)/evtObj.bytesTotal);
    preloader_txt. Text = % + '% ';
    If (p == 100) {}

    loadCompleteBool = true;
    nextFrame();
    }
    }

    -------------------------------------------------------------------------------- --------------------------------------

  • Lightroom CC slow to preload images in develop module

    I know that with the version the most recent 2015.6, Adobe has included the preload next previous 2 2 pictures and I think to get the fastest photos in the develop module.

    I must say that I have noticed the change immediately. I also noticed that on my old computer it would be after about 25 images. I would then have to restart LR and he would be back for fast loading of the next image. Recently, I've built a brand new computer with a fast SSD super m2 drive for starting and one for my LR catalog and files.

    GTX 1080 graphic card. Super fast system. Yet once the pre-load works very well but this time for about 50 images before it would go back up to the 2-3 seconds, switch between the photos. Fresh bunch of LR would be an almost instant switch of images.

    This seems to be an obvious bug as it appears just that LR is not clear the memory cache for the images and make more.

    Everyone I have a problem or find a way to make the quick pre-loading of images last for the entire session?

    It is of course not necessarily a hardware thing as my current system is quite sharp.

    If I am alone then I suppose to submit that a bug report will do much good.

    Thank you

    Toby

    I forgot... In the meantime, you can also try if it works better with GPU acceleration disabled: Adobe Lightroom GPU troubleshooting and FAQ

Maybe you are looking for