Impromptu slideshow always fails second time?

Hey,
Well, the subject says it all. Impromptu slideshow always fails second time. I press
the menu item and nothing happens (I have photos selected). It works great when
I quit LR4 and then restart and select the photos again, but only first time...bug?
Otherwise, happy user so far.
Cheers,
Kasper

Yep. I see exactly that too, just pushing the triangular button in the Develop toolbar.
Win 7 64-bit.
Hal

Similar Messages

  • Wlconfig with custom role mapper always fails FIRST time only

    WLS 8.1 sp2.
    I have a very strange problem, where I'm "coldstarting" a server and
    configuring it, much like the ant build script for medrec. Only I have a
    custom role mapper (medrec has a custom authentication provider). Anyway,
    the first time I execute this task (after a clean), it consistently fails
    like so:
    [wlconfig] OK
    [wlconfig] OK
    BUILD FAILED
    file:P:/dgs/build.xml:186: Unable to create mbean:
    weblogic.management.MBeanCreationException: - with nested exception:
    [java.lang.ClassNotFoundException:
    weblogic.management.configuration.com.combinenet.security.CNRoleMapperProvid
    erMBean]
    (that class looks bogus to me, BTW, as my provider class is
    com.combinenet.security.CNRoleMapperProvider)
    Now, the SECOND time I execute "coldstart", which runs wlconfig, the server
    starts up fine, and my custom role mapper is loaded successfully. So,
    obviously I figured something was left around the first time which somehow
    helped matters, but the strange thing is that I delete the entire domain
    directory before "coldstarting" the server, and I also re-copy the role
    mapper provider jar into the mbeantypes directory, so I'm very puzzled. I'm
    copying the coldstart task below (and the clean).
    Can anyone tell me what's wrong with this task that would make it fail the
    first time through after a clean? Is this a bug? And why would it succeed on
    all subsequent attempts (without a clean)? I just don't see anything wrong
    with what I'm doing.
    TIA,
    Miles
    <target name="coldstart"
    description="Start a new DGS Server with an empty config"
    depends="configServerEnv,startPointBase,configPointBase,dist" >
    <delete dir="${dgs.root}" quiet="true"/>
    <mkdir dir="${dgs.root}"/>
    <wlserver
    beahome="${bea.home}"
    dir="${dgs.root}"
    domainname="${dgs.domain}"
    host="${dgs.host}"
    port="${dgs.port}"
    servername="${dgs.serverName}"
    username="${wl.username}"
    password="${wl.password}"
    productionmodeenabled="false"
    generateconfig="true"
    action="start">
    </wlserver>
    <wlconfig url="t3://${dgs.host}:${dgs.port}"
    username="${wl.username}"
    password="${wl.password}">
    <query domain="${dgs.domain}" type="Server"
    name="${dgs.serverName}"
    property="dgs.server"/>
    <create type="JDBCConnectionPool"
    name="DgsPool"
    property="dgs.pool">
    <set attribute="CapacityIncrement" value="1"/>
    <set attribute="DriverName"
    value="com.pointbase.jdbc.jdbcUniversalDriver"/>
    <set attribute="InitialCapacity" value="1"/>
    <set attribute="MaxCapacity" value="10"/>
    <set attribute="Password" value="${pointbase.password}"/>
    <set attribute="Properties" value="user=${pointbase.username}"/>
    <set attribute="RefreshMinutes" value="0"/>
    <set attribute="ShrinkPeriodMinutes" value="15"/>
    <set attribute="ShrinkingEnabled" value="true"/>
    <set attribute="TestConnectionsOnRelease" value="false"/>
    <set attribute="TestConnectionsOnReserve" value="false"/>
    <set attribute="URL" value="jdbc:pointbase:server://localhost/demo"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JDBCTxDataSource" name="DGS Tx DataSource">
    <set attribute="JNDIName" value="DgsTxDataSource"/>
    <set attribute="PoolName" value="DgsPool"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JMSConnectionFactory" name="Queue">
    <set attribute="JNDIName" value="jms/QueueConnectionFactory"/>
    <set attribute="XAServerEnabled" value="true"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="JMSJDBCStore" name="DgsJDBCStore"
    property="dgs.jdbcstore">
    <set attribute="ConnectionPool" value="${dgs.pool}"/>
    <set attribute="PrefixName" value="Dgs"/>
    </create>
    <create type="JMSServer" name="DgsJMSServer">
    <set attribute="Store" value="${dgs.jdbcstore}"/>
    <set attribute="Targets" value="${dgs.server}"/>
    <create type="JMSQueue" name="Registration Queue">
    <set attribute="JNDIName" value="jms/REGISTRATION_MDB_QUEUE"/>
    </create>
    </create>
    <create type="MailSession" name="Dgs Mail Session">
    <set attribute="JNDIName" value="mail/DgsMailSession"/>
    <set attribute="Properties"
    value="mail.user=joe;mail.host=mail.mycompany.com"/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <create type="StartupClass" name="StartBrowser">
    <set attribute="Arguments" value="port=${dgs.port}"/>
    <set attribute="ClassName" value="com.combinenet.test.StartBrowser"/>
    <set attribute="FailureIsFatal" value="false"/>
    <set attribute="Notes" value="Automatically starts a browser on
    server boot."/>
    <set attribute="Targets" value="${dgs.server}"/>
    </create>
    <set mbean="Security:Name=myrealmDefaultAuthenticator"
    attribute="ControlFlag" value="SUFFICIENT"/>
    <set mbean="Security:Name=myrealmDefaultAuthenticator"
    attribute="MinimumPasswordLength" value="10"/>
    <set mbean="Security:Name=myrealm"
    attribute="DeployPolicyIgnored" value="false"/>
    <set mbean="Security:Name=myrealm" attribute="DeployRoleIgnored"
    value="false"/>
    <set mbean="Security:Name=myrealm"
    attribute="FullyDelegateAuthorization" value="true"/>
    <set mbean="Security:Name=myrealm"
    attribute="AuthenticationProviders"
    value="Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaul
    tIdentityAsserter"/>
    <set mbean="Security:Name=myrealm" attribute="RoleMappers"
    value="Security:Name=myrealmDefaultRoleMapper|Security:Name=myrealmCNRoleMap
    perProvider"/>
    <create type="com.combinenet.security.CNRoleMapperProvider"
    domain="Security" name="myrealmCNRoleMapperProvider"/>
    <set mbean="Security:Name=myrealmCNRoleMapperProvider"
    attribute="Realm" value="Security:Name=myrealm"/>
    <query domain="${dgs.domain}" type="Server" name="DgsServer">
    <set attribute="StdoutEnabled" value="true"/>
    <set attribute="StdoutSeverityLevel" value="64"/>
    <set attribute="ListenAddress" value=""/>
    <set attribute="ListenPort" value="${dgs.port}"/>
    </query>
    <query domain="${dgs.domain}" type="WebServer" name="DgsServer">
    <set attribute="LogFileName" value="logs/access.log"/>
    </query>
    </wlconfig>
    <copy file="${dist}/lib/dgs.ear" todir="${dgs.root}"/>
    <wldeploy action="deploy"
    source="${dgs.root}/dgs.ear"
    name="dgsapp"
    user="${wl.username}"
    password="${wl.password}"
    verbose="true"
    adminurl="t3://localhost:7001"
    debug="true"
    targets="${dgs.serverName}"/>
    <!-- unfortunately BEA's wlserver task exits when ant's jvm
    exits -->
    <sleep hours="10"/>
    </target>
    <target name="clean"
    description="Clean the build tree(s)"
    depends="init">
    <delete dir="${build}" verbose="true"/>
    <delete dir="${dist}" verbose="true"/> (dist is where the ear file is
    created)
    </target>

    g_wolfman wrote:
    Are you using Parallels?
    Wolfman, thats a good hint!
    Additional info at --> http://reviews.cnet.com/8301-13727_7-20106682-263/macbook-airs-double-booting-wi th-parallels-and-filevault-enabled/
    Thanks for the input.
    Lupunus

  • Changing status in the LMS after retrying a quiz (good fisrt time and failed second time)

    Good evening,
    I have a question on Captivate. Is it normal that when my client does a new time a validate lesson he observes that the only one result memoried is the last even if the first was ok (Complete and more than 80%) and the second is failed (Incomplete and less than 80%) ?
    Can I do something on Captivate ?
    LSM platform : WBT
    Version Captivate 5
    Thank you for your answers,
    Antoine

    This should be controllable in the LMS settings.  It's not controlled by Captivate.
    Check your LMS for some setting related to how the Attempts are scored.  Here is a snapshot from Moodle's SCORM attempt settings:
    As you can see, the options are:
    Highest attempt - which retains the best overall score from any attempt
    Average attempts - calculates an average of all scores
    First attempt -
    Last attempt
    So look for something like this in your LMS admin settings for the SCORM course.

  • Connecting to dynamic link server - FAILED - second time

    I bought the creative cloud membership and I use after effects for my projects then send them over to media encoder for rendering.
    At first when I would send it over to media encoder it worked just fine, then SUDDENLY, one day, it stopped worked and it would say  "connecting to dynamic link server failed".
    I deleted the program and re installed it and it did the trick...However, AGAIN, this same problem and unexpectedly risen. I do not want to be deleting and installing every-time this happens.
    I have a brand new windows 8.1 computer and I do not know why this is happening. any fixes?

    Something is running that is preventing dynamic link from opening. It could be any one of a host of programs. Open up your Task Manager (Activity monitor if you are having the same problem and are on a Mac) and check for all running programs to see which one is hanging. Then either update or uninstall the app that is causing the problem.
    If you don't find anything there try purging memory and disk cache first and then allocate more memory to other apps in AE's preferences.

  • Lion - startup fails first time, second time fine

    So here's a weird issue… it started a week ago, every time I shut my Mac down and start, the first time it tries to start fails. I have FileVault enabled, so I enter my password, the grey screen appears, the wheel under the Apple logo starts spinning and after a while it just restarts. I enter my password again and it boots just fine.
    But only the second time.
    I tried verbose boot to see what's going on, but I don't really understand much of what it says. I took some pictures, I don't know if there's a startup log somewhere.
    http://cl.ly/3J103V1q112h1L1Q3n3K
    http://cl.ly/2n0Y3B1e0P382k1r3W2q
    I just don't understand it, because the second time it always boots with no problem, but the first time the above happens. I unfortunately can't take it to a genius bar as there is no Apple Store in Brazil and my Portuguese isn't good enough to explain that to someone.

    g_wolfman wrote:
    Are you using Parallels?
    Wolfman, thats a good hint!
    Additional info at --> http://reviews.cnet.com/8301-13727_7-20106682-263/macbook-airs-double-booting-wi th-parallels-and-filevault-enabled/
    Thanks for the input.
    Lupunus

  • HT6162 Hi guys, I downloaded this new iOS7.1 but it always fails to install. It says I am not connected to the Internet while I have all the network and second excuse it gives is that the software update is currently unavailable. Please help.

    Hi guys, I downloaded this new iOS7.1 but it always fails to install. It says I am not connected to the Internet while I have all the network and second excuse it gives is that the software update is currently unavailable. Please help.

    Hi Romantilizer,
    Hook your phone up to iTunes on the computer you sync with and do your update from there. This is a robust iOS release, and doing it OTA is not always successful. I tried on my iPhone a couple of times, and it aborted the update twice. Did it via the Mac, and it was fine.
    It takes a bit of time, so hook it up, make sure it is updating your phone, and then find something else to do for a couple of hours.
    Cheers,
    GB

  • How do I get a refund?  I have tried to use this converter to change a PDF to a word document or excel document three of four times and it always fails..  I want my money back but don't see any way to communicate with Adobe.

    How do I get a refund?  I have tried to use this converter to change a PDF to a word document or excel document three of four times and it always fails..  I want my money back but don't see any way to communicate with Adobe.  i really just want my money back.  Very disappointed.  Also disappointed that it is so hard to find a way to communicate with Adobe that I have to resort to asking this question in this forum. 

    You need to use the CHAT link in support to reach Adobe staff. Be sure you know the product name you are trying to cancel, Adobe have lots of products, several converters etc. I think it is ExportPDF you have, most likely.

  • I have a problem in buying zynga poker chips, every time i try to buy chips they tell me contacts itunes support and the the purchase always failed, i contacted zynga but they told me that i have to contact itunes because they don't know the problem ?

    i have a problem in buying zynga poker chips, every time i try to buy chips they tell me contacts itunes support and the the purchase always failed, i contacted zynga but they told me that i have to contact itunes because they don't know the problem ?
    P.S i always use my credit money from gift cards to buy anything from itunes or in apps - purchasing.
    so what do u think should i do ?

    Have you tried contacting iTunes support : http://www.apple.com/support/itunes/contact/ ?

  • When i try to download 7.1 it is SOOO slow (estimated 5 hrs?!) and then it always fails. Ive tried downloading it multiple times on my iTunes

    i can't download the 7.1OS on my iphone! i've tried multiple times on my itunes & my iphone and at first it goes soooooo slow (estimated time 5 hrs on my itunes!) and then it fails everytime.
    on my itunes, it says something about a network error....
    help!!

    I don't have any of that -- i have to update through itunes because my phone has an issue where i have to restore it, and before i can restore it, it forces you to update.
    The update download shows 1.13 GB and anywhere from 13-15 hours to download.
    the download has failed three times, and when it fails it doesnt resume where it left off, it starts over again.
    I had let it download all day, and it was down to under 30 mins left and it failed (said it lost network connection) -- and I had to start all over again.  Right now it is showing 15 hours remaining, and it is literally downloading at the rate of about 0.1 MB every 5 seconds.
    And no, there is nothing wrong with my connection , i have FIOS and download everything else very fast.
    In the meantime, I have no phone working at all because im forced to do this before i can restore it.

  • My FaceTime isn't working properly. Every call I make a black dot appears on the camera in the middle (fixed onto the screen, and is not dirt), and the calls always fail. It would ring 6 times and then say call failed. How can I fix this?

    My FaceTime isn't working properly. Every call I make a black dot appears on the camera in the middle (fixed onto the screen, and is not dirt), and the calls always fail. It would ring 6 times and then say call failed. How can I fix this?

    If FaceTime ever worked properly for you, restarting your modem (and separate router/wireless if you have such) may help.  If the problem continues, try connecting at a different location to see if the problem is within your wi-fi.
    The black dot problem may mean you need to reset your iPod.  If that does not help, it may need service by an Apple Authorized Service Provider.
    If you need help with any of these suggestions, detailed help on each topic is available via Apple's Support pages:
      http://www.apple.com/support/ipodtouch/
    Message was edited by: EZ Jim
    Mac OSX 10.7.3

  • Time Machine backups always fail

    Hello,
    I have been trying for a week to get time machine working with my time capsule and it just wont do the initial backup. It starts out fine but then after so many gigs have been tranferred (anywhere from 10 -20 of 70 total) it just fails. If I try to start it again it shows it going from 1kb to 10mb to 35mb at which point it always fails again. I have tried different suggestions from around the forum but none of them have worked. I have even tried to backup to a different external hard drive over usb and it still gives the same error.With the time capsule I have tried over wireless and ethernet with same results.
    please help

    I am having the same issue. I just purchased a new iMac and transferred my data from my MacBookPro during initial startup. I'm guessing there is a file that Time Machine does not like. My plan is to reinitialize my iMac to factory and, instead of transferring data, I will re-install inidividual programs. Any suggestions to make this less painful would be helpful.
    To initial poster: sorry I don't have an answer. Hopefully there is an answer out there for both of us. Thank you!

  • HT4623 i have done update my IOS, but is not activate yet... i have had try so many time but always fail..i dunno what method supposed i do..please help me to solve this prob. tq

    i have done update my IOS, but is not activate yet... i have had try so many time but always fail..i dunno what method supposed i do..please help me to solve this prob. tq

    You can't if your iPhone was hacked/jailbroken to unlock.

  • HT201407 i cannot activate my iphone 3Gs i tried many times using wifi and connect. to itunes but activtion is always failed

    Hi, i cannot activate my iphone 3Gs i tried many times using wifi and connect. to itunes but activtion is always failed. can you help me to fix this problem?

    Do you have a SIM in the phone?
    A SIM is required to activate it.
    If you DO have a SIM in it, the most common cause of this problem is a phone that was hacked to illegally unlock it and has been updated or restored.

  • Lightroom CC starts once, but fails on second time

    After resolving the "Start" problem fixed by "Log off/Log in" in Create Cloud, I finally be able to try Lightroom CC.
    But when I quit Lightroom, and restart it a second time, it crashes :
    If a remove the "catalog" on file system, ligtroom starts again once.
    But when I quit, same issue again.
    Any ideas ?

    No, the catalog is on my main drive.
    By removing the catalog on file system, I've deleted the catalog directory directly from the Finder app.
    By doing that, Lightroom does not find the previous catalog, and so ask me to choose or create another one.

  • C++/CUDA DLL fails to give correct results when running a second time

    Hi all.
    I just finished writing a C++/CUDA DLL that runs in labview.
    It passes a 3d array, crunches the data, then spits out some results as a 2d array.
    When I open labview, and run it, I get the predicted results. However if I run the labview code again, it gives me garbage data.
    I have to not only close the open VI, but all of labview itself, reopen it, and then it will work again for one run.
    I read a thread on somthing similar to this happening with C++ code due to the way labview handled threads, however this was over 10 years ago, and it seems that since LV 2008 this has been fixed. I am running LV 2011.
    In my code, I checked that all dynamic memory allocated gets deleted, both on the GPU and CPU so other than that, I'm not sure what the problem could be. What changes when I call the DLL a second time?
    Please ask me to clarify anything that you might need to know about the program, and its implimentation.
    I have written other labview DLLs in just C++ that have not had this problem, so I wonder if it is a CUDA specific thing, or maybe somthing else I am overlooking.

    It seems to be that something not properly closed. What you can try is - unload DLL.
    CUDA Compute Context should be theoretically not necessary if your CUDA functions executed "all in one call" (and properly closed at all). The reason for NI Compute is following: it is not guaranteed that thread safe DLL calls will be called in the same thread. So, for example if you have three separate DLL calls in LabVIEW, for example - transfer data to GPU memory, compute, transfer back to the host - they should be done in the same thread (in CUDA terms all functions should be executed within same context). You can call these functions in UI thread - it will work, but the UI thread will be blocked. Or you can mark calls as thread safe, and using NI Compute - then all three calls will be done within same thread and this thread is separated from UI thread.
    Andrey.

Maybe you are looking for