Lightroom Swirling Load icon stays visible

I am using Lightroom 2.3 to create a web-flash gallery.  Everything works fine except when I try to make the background transparent <backgroundBgImg alpha="0.0" src=""/> <backgroundBgColor alpha="0.0" color="100d0b"/> the swirling load icon stays visible.  It stops swirling and the images load however the gray circular icon stays on the screen.  Is there a way to get rid of it so I can use the transparent background or at least change the color of the swirl to match my page <body> background?<br /><br />Ted Pillera<br />[email protected]

Might be hard to get help on the old 2.x version.
Make sure you use the latest 2.x version which is 2.7: http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

Similar Messages

  • When I open iphoto there are no pictures and the loading icon stays on

    I'm having problems with iphoto. When I open it my photo library is gone and and the "loading" circular icon stays on......

    I'm having problems with iphoto. When I open it my photo library is gone and and the "loading" circular icon stays on......

  • Why is the loading icon staying on?

    I have just got the ipad air 2. Its all been backed up from my old ipad 2.
    Whenever I go back on the homepage, the loading icon in the top left hand corner is continually on.
    Can anyone advise please?

    If you are recovering from an iCloud backup, the files are probably still recovering in the background.
    Check if your apps, photos and music are fully recovered.

  • Get rid of small loading icon?

    Is there a way to get rid of the small loading icon. I have several animations created in Edge that i have exported out as a .oam file. It took a bit but i've got the animations playing appropriately by using the delay.125 method and one had to go to .25 delay.  While i dont like that as a solution, it will work. My problem though is the small loading swirl that flashes on the screen for that delay. Yeah its not much but its distracting and takes away from the clean look of the folio. Anyone have any suggestions?

    The poster image wasn't working for me, a solution i have found is to duplicate the background placing my animation .oam file between them. The upper layer has two object states one visible and the other invisible. I basically just set it up to be visible before the .oam loads and then after the delay it turns off displaying the animation appropriately without the tiny loading symbol. However i still feel this is something that should addressed in the software as opposed to coming up with a workaround.

  • 8.1.2 6plus  Facebook stuck on loading icon and blank page

    As the title states, once in a week when I open Facebook all that appears is the loading icon and it stays that way. I can't tap the bottom options either (messages, notifications etc.). If I kill the app/restart the phone and re-open facebook, the same loading icon appears. I have to delete and re-install app in order to use normally again. Anyone else experience this? TIA

    That happens occasionally with the Facebook App. It's probably due to a problem on (or communicating to) the Facebook servers or just a bug in the App. There's not much that you can do about it until Facebook fixes their problems.

  • Getting external swf to stay visible?

    Hi
    I have an external swf that contains a button that controls my main swf's timeline.
    I can get it to navigate fine, but as soon as it navigates, my external swf disappears, because my main swf is no longer on the frame my external swf was imported on.
    How do I get the external swf to stay visible along all the frames of my main swf's timeline?
    Here's the code I use to import the external swf:
    var external_swf:MovieClip;
    var loader:Loader = new Loader();
    var import_me_SWF:URLRequest = new URLRequest("external_mc.swf");
    loader.load(import_me_SWF);
    loader.x = 0;
    loader.y = 0;
    addChild(loader);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, dataOnLoad);
    function dataOnLoad(evt:Event): void {
    external_swf = MovieClip(evt.target.content);
    Thanks guys.
    Shaun

    SOLUTION:
    Ok - here's a solution I experimented with for anyone that needs a similar fix:
    1. Create a new layer where you would like the external swf to go (in my case, the layer is on the top).
    2. Draw a rectangle (doesn't matter what it is really), convert it to a movieclip symbol, and give it a color effect APLHA of 0 so it's invisible.  Give it an instance name - I named mine 'external_swf_holder'
    3. Adapt the external loader code like this...add 'external_swf_holder' to the beginning of the external clip name, with a dot in between:
    var external_swf:MovieClip;
    var loader:Loader = new Loader();
    var  import_me_SWF:URLRequest = new URLRequest("external_mc.swf");
    loader.load(import_me_SWF);
    loader.x  = 0;
    loader.y = 0;
    addChild(loader);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,  dataOnLoad);
    function  dataOnLoad(evt:Event): void {
    external_swf_holder.external_swf =  MovieClip(evt.target.content);
    4. That's it.  Now Flash should always keep your swf on the layer that 'external_swf_holder' is on.
    Cheers
    Shaun

  • Show Loading icon during long PPR request?

    Hi,
    I have a 11g taskflow that loads a bpel tasklist which can take some time to load when the user has a lot of tasks. The pagefragment shows the tasks based on a view object. The view object is filled by calling the bpel api over soap which can take some time (did not get the rmi client to work with weblogic). When the view object is filled the UI shows the fetching data text but during loading the view object the UI stays on the calling page and to the user it looks like the application is not doing anything when he clicked the show tasklist page menu item while in fact the page is still loading. Is there a way to show a status/loading icon/component when PPR is loading the pagefragment that contains the task list? The fact that loading takes some time is not an issue but now the user has now idea if there is actually happening something. Showing the loading icon that is rendered at application startup during waiting would be great .....
    Kind Regards,
    Andre

    Hi,
    try af:progressIndicator
    " The progressIndicator component can be used to give users an indication that there is a back end task in progress. A ProgressIndicator's state is tracked by the org.apache.myfaces.trinidad.model.BoundedRangeModel attached to this component through its 'value' attribute. The BoundedRangeModel provides a 'value' and a 'maximum' to the component. If either the 'value' or the 'maximum are negative numbers, the progressIndicator is in an indeterminate state and shows up as a spinner animation. If the 'value' is not negative (and the 'maximum' is negative), the progressIndicator is in a finished indeterminate state and shows up as a stopped spinner. When the 'value' and 'maximum' are non-negative values, the component switches to a determinate mode and renders a progress bar indicating percentage of task completion ('value' / 'maximum'). Each of these various states will show a hover description for that state Once the task is complete, if an 'action' has been assigned to the progressIndicator, then an ActionEvent is triggered.
    The progressIndicator component can be used with a poll component from the page as a partial trigger, in order that it be updated at regular intervals in PPR mode as determined by the pollInterval from the poll component. "
    <af:progressIndicator id="progId" value="#{boundedRangeModel}" />
    value: The data model being used by this progress component. The model should be of type org.apache.myfaces.trinidad.model.BoundedRangeModel.
    Frank

  • JUST GETTING THE LOADING ICON AFTER DOWNLOADING CREATIVE CLOUD SOFTWARE!!!! Please Help!

    I just purchased the lightroom 5 and PS suite and went to download them...i was prompted to install the creative cloud first...once i did that, i tried going to the creative cloud App and the menu opened but all i get is the "loading" icon and nothing comes up, even after waiting 100 minutes. I have already chatted on the support forum with "support techs"...they have just told me to un-install and re-install and one even had me run a "cleaner program" but none of it is fixing the problem! i just want to use lightroom 5! And now when i go to trash the install versions and delete my trash bin, it won't let me because it sayds the cleaner cannot be deleted!!!!! what do i do??????????

    Hi Rachel, sorry you're having trouble.  If it's easier or faster for you, you can just use the Adobe CC direct links to download and install whichever Creative Cloud tools you want, including Photoshop CC and Lightroom 5.
    Those links do not use the Creative Cloud Desktop manager app, if you're having difficulties with that.

  • N97 mini carkit-icon stays continuous in display

    After I have updated my N97 mini (v30.0.004) I discovered following:
    I use a Parrot carkit (connection by bleutooth).
    There is not any problem with pairing and using the carkit.
    After I disconnect the N97 mini from the carkit, the carkti-icon stays continuous in the display (right-top).
    Even when I turn off the Bluetooth function completely, the icon stays.
    Does anybody have a solution???
    Location user: the Netherlands

    Never did a measurement of power-consumption in idle mode. But i have same issue, it is sometimes hard to get 24 hours our of the battery, while my old E71 did work for almost one week with one battery-load.....

  • Show loading icon when video freezes

    Hi all
    I inserted a video into my movie clip. It freezes sometimes if internet connection is not fast enough but freezes at any frame. I want a loading icon displayed once it stops and disappear when it continues.
    Thank you

    try:
    yourloadingicon.visible=false;
    var fps:Number=stage.frameRate
    var startTime:Number=getTimer();
    this.addEventListener(Event.ENTER_FRAME,f);
    function f(e:Event){
    if(getTimer()-startTime>=1000){
    yourloadingicon.visible=true
    } else {
    yourloadingicon.visible=false;
    startTime=getTimer();

  • How to make Files Panel stay visible (on Mac)

    this has always driven me crazy, and now i'm at the top of the iceberg.
    whenever i'm working in dreamweaver (on Mac with CS5 currently), and i need to pop over to another application or the Finder, i HATE that i have to either cmd+tab or click the icon in the dock to get back to DW. i so wish there was a way to make the expanded files panel STAY visible no matter what app is in the foreground/focus.
    does anybody have any solutions? are there any extensions or widgets or hacks to make this happen? i've gone thru each menu option & preference option and can't find anything that would do this.
    thanks!

    @SnakEyez02
    thank you for your suggestion.
    i guess what i want just isn't possible yet. in the rest of the CS5 suite i use (Photoshop, Illustrator, InDesign) the Window Menu -> Application Frame option which keeps it all open/visible all the time. i don't know why Adobe hasn't yet put that option into DW.
    but at 'least' i was hoping there was a hack or extension that'll keep at leat the files panel open/visible all the time.

  • Fine tune ML so windows do not enlarge and dock stays visible

    I need to simplify ML for non-literate user so windows do not enlarge and dock stays visible instead of disappearing.  If I need to install Snow Leopard i will, I am DESPERATE to avoid these phone calls from MOM IN LAW everyday.

    Windows will enlarge if the user clicks the green button or the icon to put the app into full-screen mode (I'm presuming this is what you're referring to) and I don't know of any way to block either. Not meaning to seem snide, but perhaps your mom just needs to learn not to click those buttons.
    For the Dock, all you have to do is go to the Dock system preference and turn off "automatically hide and show".
    Regards.

  • I just got an eMac G4-1Ghz/256/80/SuperDrive/56k/220v the problem is, it's stuck on theLoading Screen everytime i turn it on it wont go any further it's stuck on the Gray Apple logo with whiteBG and the loading icon that keeps circling any ideas?

    i got this emac from my uncles friend, and they said it's still working so i was likeok lemme see. and when i turned it on i was like "nice it really is working" but right after it went to the loading screen (Gray apple logo with a whiteBG and the loading icon that keeps circling) it wont go any further.. it just stays like that forever.. OMG any ideas???? thanks

    Hello, do you have the Install Discs for it?
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • Loading icon doubts

    Hi,
    I've got a page that takes around 2 secs to display. The reason is a pl/sql process executed before/after header.
    This page contains just links to other pages.
    I've searched around but I haven't managed to find anything suitable for me. It probably is a lack of proper understanding of how it works.
    What I am trying to achieve is to display a loading icon with a greyed out div until the page is rendered.
    I've tried the onload event but the pl/sql process is still executed before and therefore the loading icon only appears for a millisec after of the 2 secs of no "apparent" activity.
    I guess my problem is the pl/sql process but i can't figure out how to implement a solution for my problem.
    I would appreciate any help/guidance.
    Regards

    Hi,
    It seems that the generated page is downloaded to the user browser only after all page processes finish. That is why you are experiencing that behavior, and I don't think this can be changed...
    What does exactly your process do? Would it be an option to call it after the page is loaded using ajax and a application process?
    Another option would be to show the loading icon in the calling page -- so it would be immediatelly visible, even if the called page takes all those long 2 seconds to show.
    Another further option would be to create an in-between page, which would simply display the loading icon and redirect to the main target page.
    I hope this helps.
    Luis

  • Loading Icon (Swirly Rainbow) Constantly Appearing

    While using my ibook, the loading icon (the swirly rainbow coloured icon) will often appear especially when using safari. it happens on most pages when surfing the internet and will stay there for 5 secs while i can't do anything. any ideas?

    Daniel,
    This icon means that your Mac is working on something that is consuming a lot of your resources.
    How much RAM do you have?
    I know that if Safari for Panther has been open for a while, and you're visiting sites with plenty of Javascript, Safari will slow to a crawl. A reboot of Safari usually corrects this though.
    Another solution would be to download a lighter-weight browser than Safari. It is in my opinion that Mozilla makes an excellent replacement called Camino. I'd recommend picking it up if you'd like to stomp out the spinning beach ball.
    Brian

Maybe you are looking for