Can't find "Create Slideshow" dialog box.

I have Premiere Elements 7, and am trying to create a slideshow.  The Help page refers to a "Create Slideshow" dialog box, but I don't see that anywhere.  I've looked through every menu, every icon, and tried right clicking on the photos that were dragged down to the timeline, but no slideshow option.
I've done slideshows manually using PE7 before, but it's a big pain having to manually reset the duration of each slide, rather than changing the default somehow.
Thanks!
Bennett

There are actually four different ways to build slideshows in Premiere Elements, and I show you how to do each in my books.
But I think you're referring to the slideshow creator on the Project panel. To use it, select several stills or clips in the Project panel (by selecting as you hold down the Ctrl or Shift key) and right-click. This will open the panel I think you're looking for.

Similar Messages

  • Slow-Start Up and "can not find the server" dialog box

    hi there -
    2 year old Ibook G4. When I try to open either Safari or Netscape the "can not find the server" box pops up.. I have a solid connection wi-fi for the wireless signal is on full strength. I have cleared my cache. Also I am experiencing start-ups that are taking 2-3 minutes. The color wheel just keeps spinning.Also, I have done repair and I renewed the DHCD. Not sure what else to do?

    as a guess, spinning wheel could be caused by failing hard drive.
    often failing hard drives will pass all tests by the utilities.
    you may want to back up any important files just in case.
    if the iBook boots up from the OS install CD/DVD with no problems, issues could be caused by the corrupted files on the hard drive or failing drive.

  • Where do I find the printer dialog box to change the setting that asks me to save a file before printing

    Where do I find the printer dialog box to change the setting that asks me to save a file before printing

    Hi Sara,
    The problem is every time I try to copy a page from a website or attachment sent to me or anything that I don't create, the dialog box says I have to save it before I can print -- there are no other options on the dialog box.  Very frustrating -- one of the girls in my office is having the same problem and we can't find a way around it.
    Hope you can help
    Thanks
    Carol Laskos
    "Sara.Forsberg" <[email protected]> wrote:
    Sara.Forsberg  created the discussion
    "Where do I find the printer dialog box to change the setting that asks me to save a file before printing"
    To view the discussion, visit: https://forums.adobe.com/message/7070517#7070517
    >

  • How can I automatically close a dialog box using Javascript after I click the OK button to submit it?

    How can I automatically close a dialog box using Javascript after I click the OK button to submit it? I don't want to have to X out of the dialog box after I am done.
    Thanks
    Linda

    JS can not interact with open dialogs in any way, unless it's a dialog
    created in JS using the Dialog object.
    On Thu, Jul 24, 2014 at 11:13 PM, lindaeliseruble <[email protected]>

  • Creating a dialog box with OK and Cancel buttons without OADialogPage

    Hi Experts,
    i want to create a dialog box for Delete Confirmation means after clicking on delete it should pop up a small dialog box with OK/Cancel buttons
    and need code for the same to handle the buttons.
    i have created with OADialogPage but its showing in a complete page but i want to show those buttons in a small box.
    Plz help.
    THANKS IN ADVANCE.
    Thanks
    Raja.

    Hi,
    I have not tried using javascript in destination URI as suggested by Mukul.
    I have tried the below code for opening a page as dialog box.
    You can try it for your requirement by creating a dialog page of your own, say XXDialogPage (with OK and Cancel button)
    StringBuffer l_buffer = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    String url = "/OA_HTML/OA.jsp?page=/xx/oracle/apps/fnd/dialog/webui/OADialogPG";
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:500, height:500},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    In dialog page's controller, you can forward it to the page onc ethe user selects OK or Cancel.
    Pass the selected value back to the main page and further you can use it for deleting.
    Regards.

  • How to create Information Dialog boxes in web Dynpro

    Hi,
    'm new to webdynpro.
    Can any body help me to create a dialog box.
    I would like to know how to create dialog boxes of type information, confirmation and warning
    expects reply
    thanks
    smitha

    to create confirmation dialog I tried the code
         IWDControllerInfo controllerInfo = wdControllerAPI.getViewInfo().getViewController();
        String dialogText = "The email was successfully sent!";
        IWDConfirmationDialog dialog =wdComponentAPI.getWindowManager().createConfirmationWindow( dialogText, controllerInfo.findInEventHandlers("ok"), "ok");
        dialog.addChoice(controllerInfo.findInEventHandlers("newEmail"), "new email");
        dialog.open();
    and I got error like:
    java.lang.NullPointerException
         at com.sap.tc.webdynpro.clientserver.window.ConfirmationDialogDelegate.<init>(ConfirmationDialogDelegate.java:58)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createConfirmationWindow(ClientComponent.java:926)
         at com.enteg.systallocpkg.LoginView.onActionLogin(LoginView.java:157)
         at com.enteg.systallocpkg.wdp.InternalLoginView.wdInvokeEventHandler(InternalLoginView.java:137)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleAction(WebDynproMainTask.java:100)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:299)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:635)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    I don't know how to solve this
    can any body help me
    Smitha

  • 30EA3 - multiple errors in "Create Tablespace" dialog box

    I have noticed the following errors in the "Create Tablespace" dialog box (in the DBA view).
    1) In the "File Specifications" tab, if you try to use a period in the file name (for example "data01.dbf") , you get an error message "Validation Failed: Name DATA01.DBF contains an illegal character."
    2) The tool is automatically changing the case of the file name to all upper case. You can work around this by enclosing the file name in quotes, but you shouldn't have to do that.
    Overall, I've been real happy with the product, and that Oracle keeps improving it.

    I've also run into this, recently, in version 3 on Windows 7 (db is version 10g on Solaris 10/SPARC64). Although the error message is now "Name TABLESPACENAME.DBF contains an illegal character." Also found the described capitalization overriding what user types in.

  • Missing Remote Desktop Dialog Box in System Properties Running Under Windows 7 Ultimate SP1 But I Can Still See Remote Assistance Dialog Box

    Hello to everyone i am using Win 7 Ultimate SP 1 and when i go to system properties -> remote settings all i get is the remote assistance dialog box and i can't find the remote desktop dialog box. I can see the remote assistance dialog box but i
    can't see at all my remote desktop dialog box. Does anyone has any idea???????
    i have tried almost anything. I have opened exceptions in windows firewall for remote desktop. I started the remote desktop services manually but nothing happend, i still can't see the remote desktop dialog box and that's odd because i can see my remote
    assistance dialog box in system properties-> under the remote tab but as i said i can not see my remote desktop settings.
    Plz help.....
    Thanks in advance!

    Hi,
    First, please try the SFC command to check if you any corrupted system files:
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on
    Windows 7
    If this issue persists, it is recommended to perform system restore to get back to a previous time point to check what the result is:
    System Restore - Windows 7 features - Microsoft Windows
    Hope it helps.
    Alex Zhao
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Find and Replace dialog box issue

    When I am in split mode, I get the Find and Replace dialog
    box up "Edit -> Find and Replace..." When I run a "Find and
    Replace" clicking the "Find All" the dialog box disapears and I
    have the Results checked in the Windows menu. When I go down to the
    little green arrow to bring back my dialog box - the Find and
    Replace text areas are clear and I have to re-paste the items into
    it to do the "Replace All" - this is much more time consuming. Why
    does my Find and Replace dialog box disapear and why does it lose
    the last "Find All" texts?

    pamelito2014 wrote:
    I tried to hover over them but nothing popped up to tell me what is what. So, I had to ask.
    You might have Tool Tips turned off in preferences...
    This is CS6, but I assume CC is the same or similar:

  • How to create conditional dialog box

    Hi Everyone
    I am creating a database application in APEX 4.0. In that application a page requires a dialog box, which has to appear when a user clicks on Submit button.
    It has to consider validations and appear after validations and submit button is clicked. Here the Submit button submits the entire page after validations by updating the database table.
    Please help me out how to create a dialog box which has to appear by the click of Submit button.
    Thanks in advance
    Regards
    Sandeep

    Hi Kiran
    Thanks for responding,
    Sorry for providing the complete details.
    Provided link is much more helpful, but its not meeting my needs. My requirement is to just show a popup box after the user clicks on submit button.
    Saying 'Thank you for answering' if he is done with all questions or if he has more questions to answer pop up with different message 'You have more questions to answer'.
    In both the cases page as to get submitted when clicked on Submit button.
    Thanks in advance
    Regards
    Sandeep

  • ID CS3 – cannot access "find" or "tab" dialog boxes. I've restarted, uploaded recent upgrade, etc.

    ID CS3 – cannot access "find" or "tab" dialog boxes. I've restarted, uploaded recent upgrade, and  "repaired permissions" in Disk Utility. Will re-installing from original disks correct this problem? The disks are 3.0 version. I currently have 5.0.4 available at Adobe.

    see Replace Your Preferences

  • How can I reinstate the warning dialog box for entering a secure site?

    I would like to reinstate the warning box that tells me when I am entering a secure site. The one that warns when I am leaving a secure site is working just fine. I probably unchecked the box for entering at one time or another but I can't find how to bring it back.

    Looks that the Warning Messages dialog for those settings is gone from Tools > Options > Security
    You can reset the related <b>security.warn_</b> prefs on the <b>about:config</b> page.

  • How can I get a Distiller dialog box in Illustrator CS5 which is exactly the same as Distiller?

    I would like to know if there is some type of plug-in, etc. out there that would allow me to have all the functionality of a Distiller dialog box when I save a PDF out of Illustrator CS5. Right now, I just have what comes installed with Illustrator. It's a stripped down version of what you would find in distiller.

    When you save a PDF out of Distiller it doesn't just have different options, it's an entirely different program. It doesn't do things the same way, so it can't have the same options. Saving from Distiller is in many ways better, expecially in that transparency isn't flattened.
    What specific options are you looking for?

  • Can we display GUI windows/dialog boxes from two asynchronus threads?

    Hi All,
    I'm facing a problem with asynchronous threads. I've a client-server application where client is a Java application and server is a C++ application running on UNIX m/c. The C++ server is implemented equivalent to a HTTP server which handles the HTTP requests from the java client. So, whenever user select some action on the Java client, say "File/Open" menu, the client sends the equivalent HTTP request to the server, and waits for the response back from the server, and after getting the response displays it on the GUI.
    So far the java client application is single-threaded, and the communication between client-server was only one-way, i.e. all the communication was always initiated by the client.
    We had to change this behavior to make it multi-threaded, or rather two-way communication where kernel while processing any client request might need some response from the GUI. So, we had to create a ServerSocket on java client side, and C++ server is connected to this socket. So, whenever C++ server has to send some message to the GUI, it can send thru this other socket.
    On the java side, it's listening at this ServerSocket port in a separate thread, whenever it receives any request, it has to display a dialog box based on the request.
    Here is my problem coming. The main application thread (which is an AWT-EVENT- thread) has made a http request to the kernel and is blocked until it gets the response back, and in the mean time, the C++ server has sent a message to the GUI thru the other socket, and when I use JOptionPane.showOptionDialog(...), I see the dialog box outline but not the contents, and the same for my main application window.
    So main question here is, can I invoke, say,
    JOptionPane.showOptionDialog(...) on another thread, when the main application thread (rather AWT-EVENT -QUEUE thread) is blocked.
    Please let me know if anyone knows the answer or if has faced the similar problem. It will be a big help.
    thanks,
    Ajay

    You mean to make the HTTP request in a separate thread, like below,
    new Thread ( new Runnable() {
    public void run() {
    server.makeHTTPRequest(...);
    }).start();
    But we cannot do this, as there is one more constraint with our application, that it has to behave like single-threaded from user's perspective. i.e. If user has clicked "File/Open" menu, user has to wait until the "File/Open" action is completed. He cannot do anything in between.
    But if the server sends some message thru the other socket, then it has to displayed, and whatever user select on that dialog box, has to be sent to the server thry the same socket.
    I'm not sure whether this possible.
    Here is what I tried to make the http request in a separate thread, and at the same time, keeping the main thread in a wait state until the thread completes:
    new Thread (new Runnable() {
    public void run() {
    synchronized(server) {
    server.makeHTTPRequest(...);
    server.notify();
    }).start();
    synchronized(server) {
    server.wait();
    Even by doing the above it doesn't work, the GUI just hangs. I think the above code is effectively the same as,invoking directly,
    server.makeHTTPRequest(...);
    All I know is it's quite confusing. Does anyone has insight into it.
    thanks,
    Ajay

  • I can't see the Copy dialog box - ideas?

    Yep, it's as simple as that. When I copy something, I can't see the dialog box showing the progress of the copy/move/etc. In the Window menu, it shows that there's a copy dialog open, but I just can't see it.  It's not on another desktop or in a corner of the screen, it's just honestly not there.
    Any ideas?

    The first thing I'd suggest is deleting the AppleWorks preferences. My user tip, AppleWorks has stopped working correctly, included the information on where to find them in OS 8.
    Even though you are using OS 8, I strongly suggest updating AppleWorks to at least 6.2.3 (included in the 6.2.4 for OS X update) or the newest 6.2.8/6.2.9. You can find the 6.2.4 updater here. You can find the most reliable link to the 6.2.9 updater on this page where you can choose the appropriate updater for your AppleWorks 6 installation. Be sure to pay attention to the two English version updaters. You'd want to delete the preferences mentioned above before launching AppleWorks for the first time after the update.

Maybe you are looking for

  • Portal content translation is not working in my portal

    HI,    When i created translation text and released  it is not working according to the target language . I'm using EP 7.O sp11 Is there any problem with this package  ,help me plz regards , santhosh

  • Java inheritance and interface code help required

    please help me I need your 30 mins only,,, working on assignment and I am trying to understand interface and inheritance might not need even 30 mins, please add me on skype *[deleted by moderator]* Or add me on yahoo msgr *[deleted by moderator]* wai

  • Is it possible for a G4 to use optical drive of another mac over a network

    Well, is it? For some reason the optical drive on my G4 won't read certain CD's that are read by other Macs I have, but I can't see those drives over my network?

  • How to use Any connect before login windows?

    Dear All, Right now i have issue on Any connect VPN, all my clinet join Domain and i want connect any connect VPN before login windows. i mean that all user and password veryfy from DC. Is any connect VPN can do connect before windows loggin? Best Re

  • Ichat: empty chat, blank IMs...

    So my iChat suddenly stopped working. Every time I sign in, an empty chat opens and minimizes itself. If I open an IM window to message someone, it displays myself as already typing "..." even though I am not. Whatever I do type is sent to the person