How Do I select Multiple songs to Use with Slideshow?

I am running Lightroom 4 on an iMac with OS - Lion. Love it!
I am trying to create a slideshow with music in the background but I cannot seem to select more than 1 song. How can I select multiple songs?
Thanks
Adrian

The slide show feature in Lightroom isn't really very flexible or feature packed.  I suspect the design was to provide professional photographers a quick way to show proofs to clients.  You will have to use other software for what you intend to accomplish.  I'm going to be creating a slide show with about 500 images soon.  My intention is to create the slide show with Lightroom and export as video.  Then I will use Premiere Elements and import the video and lay down the music track.  There are easier ways to do it, I know.  But I don't do this kind of thing very often and don't plan to purchase more software that would make it easier.

Similar Messages

  • How do you select multiple songs in itunes to delete

    how do you select multiple songs to delete at once in itunes?

    Try highlighting the first one yhen command click on the others you wish to delete, when you have the ones selected hit delete.

  • How do I select multiple songs and uncheck them from compilations (itunes 10.5.2)

    So I found to my annoinance that itunes has recently moved much of my music to compilations that shouldn't be there. I tried searching online for how to turn compilations off or select multiple songs and uncheck them from compilations all at once and although I found both answers, they must have only worked for older versions of itunes. I no longer can find the option to turn off compilations under preferences and when I try to select multiple songs at a time then press "Get Info" the "part of a compilation" checkmark is not there. It is only there when one song is highlighted. This is very frustrated. In fact I would venture to say I've never been so angry with Apple. There are 609 songs "stuck" in my freaking compilations! I don't have time nor should I have to take the time to go through every single song right clicking it, pressing "Get info", unchecking "part of compilation" then clicking ok. WAY TOO MUCH TIME! If anyone has any good news on a faster way to do this I'd be VERY THANKFUL!

    This was a life saver! I even started to manually tick the box as well!

  • How can I select multiple cells in tableview with javafx only by mouse?

    I have an application with a tableview in javafx and i want to select multiple cells only by mouse (something like the selection which exists in excel).I tried with setOnMouseDragged but i cant'n do something because the selection returns only the cell from where the selection started.Can someone help me?

    For mouse drag events to propagate to nodes other than the node in which the drag initiated, you need to activate a "full press-drag-release gesture" by calling startFullDrag(...) on the initial node. (See the Javadocs for MouseEvent and MouseDragEvent for details.) Then you can register for MouseDragEvents on the table cells in order to receive and process those events.
    Here's a simple example: the UI is not supposed to be ideal but it will give you the idea.
    import java.util.Arrays;
    import javafx.application.Application;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SelectionMode;
    import javafx.scene.control.TableCell;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.input.MouseDragEvent;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    public class DragSelectionTable extends Application {
        private TableView<Person> table = new TableView<Person>();
        private final ObservableList<Person> data =
            FXCollections.observableArrayList(
                new Person("Jacob", "Smith", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Michael", "Brown", "[email protected]")
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage stage) {
            Scene scene = new Scene(new Group());
            stage.setTitle("Table View Sample");
            stage.setWidth(450);
            stage.setHeight(500);
            final Label label = new Label("Address Book");
            label.setFont(new Font("Arial", 20));
            table.setEditable(true);
            TableColumn<Person, String> firstNameCol = new TableColumn<>("First Name");
            firstNameCol.setMinWidth(100);
            firstNameCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("firstName"));
            TableColumn<Person, String> lastNameCol = new TableColumn<>("Last Name");
            lastNameCol.setMinWidth(100);
            lastNameCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("lastName"));
            TableColumn<Person, String> emailCol = new TableColumn<>("Email");
            emailCol.setMinWidth(200);
            emailCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("email"));
            final Callback<TableColumn<Person, String>, TableCell<Person, String>> cellFactory = new DragSelectionCellFactory();
            firstNameCol.setCellFactory(cellFactory);
            lastNameCol.setCellFactory(cellFactory);
            emailCol.setCellFactory(cellFactory);
            table.setItems(data);
            table.getColumns().addAll(Arrays.asList(firstNameCol, lastNameCol, emailCol));
            table.getSelectionModel().setCellSelectionEnabled(true);
            table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
            final VBox vbox = new VBox();
            vbox.setSpacing(5);
            vbox.setPadding(new Insets(10, 0, 0, 10));
            vbox.getChildren().addAll(label, table);
            ((Group) scene.getRoot()).getChildren().addAll(vbox);
            stage.setScene(scene);
            stage.show();
        public static class DragSelectionCell extends TableCell<Person, String> {
            public DragSelectionCell() {
                setOnDragDetected(new EventHandler<MouseEvent>() {
                    @Override
                    public void handle(MouseEvent event) {
                        startFullDrag();
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
                setOnMouseDragEntered(new EventHandler<MouseDragEvent>() {
                    @Override
                    public void handle(MouseDragEvent event) {
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
            @Override
            public void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);
                if (empty) {
                    setText(null);
                } else {
                    setText(item);
        public static class DragSelectionCellFactory implements Callback<TableColumn<Person, String>, TableCell<Person, String>> {
            @Override
            public TableCell<Person, String> call(final TableColumn<Person, String> col) {         
                return new DragSelectionCell();
        public static class Person {
            private final SimpleStringProperty firstName;
            private final SimpleStringProperty lastName;
            private final SimpleStringProperty email;
            private Person(String fName, String lName, String email) {
                this.firstName = new SimpleStringProperty(fName);
                this.lastName = new SimpleStringProperty(lName);
                this.email = new SimpleStringProperty(email);
            public String getFirstName() {
                return firstName.get();
            public void setFirstName(String fName) {
                firstName.set(fName);
            public String getLastName() {
                return lastName.get();
            public void setLastName(String fName) {
                lastName.set(fName);
            public String getEmail() {
                return email.get();
            public void setEmail(String fName) {
                email.set(fName);

  • How can I select multiple songs in iTunes without having to hold the Command key while clicking each individual song

    Trying to drag a block of songs from iTunes into TuneUp and I have about 1800 songs to bring in.  TuneUp maxes out at 1000 songs per batch, so I can't use Select All, but I also don't want to Command + Click 800 times to get all of those songs selected. 
    Thanks in advance. 

    Answered my own question.  Select song at the beginning of the list.  Hold down the shift key.  Go to the last song you want in your list.  Click that song.  All songs in between will be highlighted.  Such and idiot. 

  • Selecting multiple songs for Playlist or deletion...

    this one's probably pretty easy, but how do you select multiple songs in the Music Library to be able to use in a new Playlist or to delete...I can't seem to find the right keystrokes for this....

    Command-click to select multiple items or click the first one and Shift-click the last one if the items are consecutive.
    Then press Delete to delete them or choose 'New Playlist from Selection' in the File menu (Shift-Command-N) to create a playlist of the selection.
    You can find most shortcuts in the 'Keyboard Shortcuts' of the' Help' menu.
    Hope this helps.
    M

  • Itunes match  how do you to select multiple songs or do you click each one

    In ITunes match  how do you to select multiple songs to download to pc or do you have to click each one.

    First make sure you have the current version of iTunes, which is actually 10.5.1.  I had to manually download it from apples website, for some reason, it wouldnt auto-update.
    http://www.apple.com/itunes/download/
    Once that is complete, go to the iTunes store. In the Quick Links secion to the right, you should see iTunes Match. This will prompt you to activate your subscription to iTunes match.  After that it should ask you to add your computer and once youve done that, it should begin the process of scanning your library and adding it to the cloud
    Alternatively, once you activate your subscription, you can also go to the Store dropdown menu in iTunes and select Turn On iTunes Match.

  • How can I transfer multiple songs at once from itunes to device

    I was wondering how you can transfer multiple songs or files from itunes to a device, such as an ipod, at once. The past itunes let you do it and I've been trying the same methds that you use on the older versions but nothing is working. Anyone know how to do it?

    If syncing, select the content desired to be synced and then sync.
    If manually managing content select the content then drag and drop it. Multiple items can be selected by holding the Cntro key and clicking on multiple items.

  • How do I "check" multiple songs at same time?

    I'm trying to backup my itunes library to DVD, but itunes will only burn songs from a playlist if the box is checked. I have 900+ songs that are unchecked that I need to backup. I realize I can just re-import them from the original CD, but then I will also have to rate the songs all over again.
    A. How do I check multiple songs, or...
    B. Is there another way to backup the ratings data for each song?

    Highlight all the songs that you want, you could hit command+A to select them all.
    Then right click, or control+click and choose "Check Selections"
    "D"

  • How do I select Multiple Pdfs at one time when I am combining files?

    How do I select Multiple Pdfs at one time when I am combining files?
    I can only select one pdf at a time.

    Hi,
    Please use either Firefox or Chrome to selelct multiple files.
    Thank you.
    Hisami

  • How do you change multiple songs genre at the same time

    How do you change multiple song's genre at the same time with out during them one a time in ITunes  on Windows 8?

    You can select a range of songs by selecting the first, then holding shift when clicking on the last. You can ctrl+click to add or remove from the selection. Once you have a selection press Ctrl+I to Get Info. Type in the new Genre and press OK.
    tt2

  • How do I add multiple songs to an existing playlist from the (no longer called) Library? Highlighting multiple songs and clicking the "Add to" button will only add the with the little arrow, not all the highlighted ones!

    How do I add multiple songs to an existing playlist from the (no longer called) Library? Highlighting multiple songs and clicking the "Add to" button will only add the one with the little arrow, not all the highlighted ones! I am using the "new" iTunes.

    For the moment there isn't a way for us end-users to control what is "matched" or "uploaded." That is purely a result of Apple's server-side algorithms.
    To re-add multiple songs at once simply highlight all the songs you want to re-add, then right-click (or Control+click) the list and choose "add to iCloud."

  • How do I SELECT multiple albums in iPhoto?

    I can select a single album:
    select album "Album A"
    But, How do I SELECT multiple (non-contiguous) albums in a list?
    Something like :
    select album's {"album1","album3","album9"} --(doesn't work)
    -TIA
    G4 powerbook   Mac OS X (10.4.6)  

    I agree, it seems to just be limited to children of Library.
    I'm going to use your 'build command' to deselect all Library items. That way, the novice computer user will get visual feedback that Library items won't be processed.
    ----------------applescript
    tell application "iPhoto"
    set _selection to selection as list
    --getting selected albums inherently omits Library albums (a bug IMHO) .
    set _albumsSelected to {}
    repeat with _album in _selection
    set end of _albumsSelected to _album's name
    end repeat
    -- Now, reselt albums to deselect Library albums.
    set commandString to "select (albums whose name is "
    set firstLoop to true
    repeat with albumName in _albumsSelected
    if firstLoop then
    set commandString to commandString & "\"" & albumName & "\""
    set firstLoop to false
    else
    set commandString to commandString & " or name is " & "\"" & albumName & "\""
    end if
    end repeat
    set commandString to commandString & ")"
    run script {commandString}
    end tell
    Thanks Bernard for your help. I just changed "contains" to "is" because in my tests I had "untitled album", "untitled album 1" etc. Then, because of the first "untitled album", all iterations were re-selected (not desirable).

  • How do I select multiple clips in a timeline in the reverse direction, e.g. middle to front?

    I know how to click "a" and select clips in the timeline looking forward, but how do we select multiple clips from a middle point to the front of the timeline?  I don't want to be lassoing -- is there some other way?

    Hi denniscallan,
    Please check the track selection tool. Refer to the link below for more information about the tools section.
    http://help.adobe.com/en_US/premierepro/cs/using/WSd79b3ca3b623cac957c49aa9127401b0642-7ff f.html
    Regards,
    Vinay

  • How do I select multiple pictures in a folder

    How do I select multiple pictures in a folder? I have tried shift + click, command + click etc but cannot find a way of selecting a large group without selecting individually 

    Select the first image.  Then Command-Click on each additional image you want to select as part of a group.
    If you are using List mode, you can click on the first, then Shift-Click on the last, and all the files between the first and the last will also be selected.
    Command-Click will still work to add additional non-sequential, or to remove items from the list already selected.

Maybe you are looking for

  • How do I remove cache?

    I'm trying to upgrade to the latest version of icefaces and it says in the install notes to: On Windows only, manually remove the JSC2 internal cache files or the installation of the newer extension library will fail silently. Where are the 'JSC2 int

  • ABAP and XI proxies

    I am looking for some best practices/experiences from projects where we have integrated SAP backend system based on WAS 6.40 with XI using ABAP proxies or other mechanisms for SSL communication for sensitive data. We are trying to use ABAP proxies on

  • Portal exception in Business Planning

    Hi Friends, Facing issue after successfully configures Integration planning in Portal. Go to RSPLAN > Start Wizard> It says    404   Not Found SAP J2EE Engine/7.00  The requested resource does not exist. Details:   Go to main page of this application

  • Help with Java JAR file opbfuscation.

    I am looking for a free (no $) for use on commercial java code code obfuscation program, which can beat the Jode decompiler. I have tried Proguard, and I have tried Joga (using Jode itself for obfuscation is too complex for my purposes). Is there a s

  • I've updated my iphone 4S to iOS 5.1 recently and I've found some problems.

    First, it drains my battery. It drops 15% in an hour even though I don't use it. Second, when I click the "Edit" button for photos, my iphone shuts down automatically and turns on again. I can't edit any photos! Third, I can't click the "Camera" butt