What is the easiest way to make a slide presentation DVD with music that can be played on PC or DVD player using MacBook Pro?

What is the easiest way to make a slide presentation DVD with music that can be played on a PC or DVD player?  I'm using a MacBook Pro since that's the computer that has all the photos (in an album) and music.  Thanks.

I would suggest that you post this to the Adobe Encore>Menus & Buttons forum. What you want to do, if I read correctly, is pretty simple. There will probalby be links available to step you though it. I'll look for this there, and start gathering some links.
Good luck,
Hunt

Similar Messages

  • What's the easiest way to make a password system? 10 Duke Points!

    Hello everyone,
    What's the easiest way to make a password system in java?
    I'd like to be able to:
    1) store passwords for about 6 people.
    2) have the people only interact with my program using my Eclipse console with no GUIs, pop-ups or Swing code.
    3) let the people have the ability to create/delete their own passwords and logins. (ideally)
    Having searched around the Internet, it seems that the options are to:
    A) have code that allows users create files, write to files, read from files.
    B) have code that serializes objects - this seems pretty difficult.
    C) have code that has a hash table of some kind - although I don't really know hash tables very well and am not sure if they can store data over time unless the program is always running (which is an option).
    D) use some sort of javadoc like PassWordCallback - this one looks the easiest as the code already seems to be there but I'm not really sure how to include this type of stuff in my code.
    E) have code that allows users to input their password, which I've given them on a piece of paper, and then allow the code to match it to a file - this wouldn't let the users create their own passwords though.
    Anyway, hope you can help!
    I have a 'Head First Java' book and a 'Java for Dummies' book if you know of anything directly useful in these books.
    Edited by: woodie_woodpeck on Jan 11, 2009 3:51 AM

    bastones_ wrote:
    Using GUIs and Swing is really easy, I have only been using Java for a week now and I have already made a simple application with events. First of all Swing is a package and you need to import it (as described in the documentation).
    When you click on the Swing package in the documentation to the second frame you'll see JFrame when you scroll down. JFrame's are the main windows on your screen. JFrame is a class therefore it needs to be instantiated (making an instance of that class so we can use it). After all, everything is based around classes.
    JFrame frame = new JFrame("Title here");
    Note: The "JFrame" before the frame vaiable name is the "data type" of the variable, really we're making an object type (I think its called) just like we'd do String frame if we wanted to make a frame variable that is of type String.
    As explained in the [JFrame section of the documentation|http://java.sun.com/javase/6/docs/api/javax/swing/JFrame.html] in the "Constructor Summary" section is the different types of Construtors that are made available to us when we instantiate the JFrame class. One of the construtors available are:
    JFrame(String title)
    ... which is exactly what I did above in the brackets/parentheses (its telling us we can add a String title).
    Remember constructors do not have any return type or anything and is not a method, because it is the same name as the class and when we instantiate we call the constructor. And so the JFrame class has many constructors, one is for making a title for our JFrame and another is just instantiating without a title. If there wasn't the JFrame(String title) and just JFrame() constructor, we wouldn't be able to add a title as we made an instance of JFrame.
    So once we've made an instance of JFrame we have all the methods available (and all of the methods are shown in the API documentation).
    Hope you understand now :).Wow. Thanks a lot bastones_. I think Swing is just a bit beyond me at the moment and will require quite a bit of time for me to master. Is there not an easier way of making a password system? I think that A (see above) seems the easiest for me at the moment and D (see above) would be nice if I could just figure out how to use the javadoc.

  • What is the easiest way to add a slide show to a dream weaver page?

    What is the easiest way to add a slide show to a dream weaver page?

    Copy & paste the following code into a new, blank document.  Change images to your own.  SaveAs test.html and preview in browsers. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Cycle2</title>
    <!--help for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    /**Slideshow**/
    .cycle-slideshow {
        position: relative;
        z-index: 1;
        width: 400px; /**adjust width as required**/
        margin:75px auto;
        text-align: center;
    .cycle-slideshow img { max-width: 100% }
    /* prev / next links */
    .cycle-prev, .cycle-next {
        position: absolute;
        top: 0;
        width: 20%;
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 800;
        height: 100%;
        cursor: pointer;
    .cycle-prev {
        left: 0;
        background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
    .cycle-next {
        right: 0;
        background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
    .cycle-prev:hover, .cycle-next:hover {
        opacity: .7;
        filter: alpha(opacity=70)
    /**END SLIDESHOW STYLES**/
    </style>
    </head>
    <body>
    <h1><a href="http://jquery.malsup.com/cycle2/">JQuery Cycle2</a></h1>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
        data-cycle-fx="fade"
        data-cycle-timeOut="2000"
        >
    <!-- prev/next links -->
    <div class="cycle-prev"></div>
    <div class="cycle-next"></div>
    <!--insert your images below-->
    <img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="description">
    <p>Mouse over image for previous / next links</p>
    </div>
    <!--end slideshow-->
    </body>
    </html>
    Nancy O.

  • What's the easiest way to make a SOAP client request in java?

    I need to make a request to a website that provides tv listings. Basically I just need to make a simple SOAP request for the listings and the site provides them in XML format.
    What's the easiest way to do this? Do I need to download a package like Axis2 or JAX-WS? These seem kind of overkill for what I want to do, since I don't need to run a server. Is there something in the Java standard libraries that will do this? Is it difficult to just write the code for this my self?

    I've been trying to do it with HTTP POST commands. Here is the sample SOAP envelope that the site gives:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <SOAP-ENV:Body>
              <m:download xmlns:m="urn:TMSWebServices" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   <startTime xsi:type="xsd:dateTime">2005-02-22T19:00:00Z</startTime>
                   <endTime xsi:type="xsd:dateTime">2005-02-22T21:00:00Z</endTime>
              </m:download>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>I can post this to the URL and it gives me back a generic xml file as a reply with no listings. The problem is that the site requires credentials, so I assume I have to login somehow first. Can anyone tell me how I would do this?

  • What's the easiest way to make a preloader?

    What's the fastest, easiest way to make a preloader? I'm new
    to Flash and don't know any actionscripting, so any help would be
    greatly appreciated, thanks!

    fastest way would be to google it :)
    there are an unlimited amount of tutorials and source files
    all over the web for years - try
    www.kirupa.com or www.gotoandlearn.com
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    xslamx wrote:
    > What's the fastest, easiest way to make a preloader? I'm
    new to Flash and don't know any actionscripting, so any help would
    be greatly appreciated, thanks!

  • Is there a way to create a cd or dvd of photos that can be "played" on a regular dvd player?

    I have a lot of pictures that I'd like to burn to a cd or dvd that can be "played" or "viewed" on a tv via dvd/blueray unit.  Can this be done?  If so, how?

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large [iPhoto 8 (09)] and earlier or 480p [iPhoto 9 (11)] or later.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailer like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • What is the easiest way to sync Google Cal and Contacts with an iMac?

    iTunes will sync Google Contacts, but not calendar. Weird. Why? What's the best fix?

    There must a better way to do this. The problem is, YOU CAN'T UNCHECK IPHOTO in the installer. You pretty much need all the support files which you can't see in the installer, but you usually don't want iphoto.
    1 way to get around this is: Quit the installer if you launched it. Open the install disc > search = (any ilife app) > make visibility option 'invisible'. (if you don't know how, search invisible files in apple's help menu). run through the stuff to find a 'packages' (or some similar name) folder. Inside of that, I install everything except for what I don't want, which for me is the iphoto and imovie stuff.
    Still there must a better way, maybe you can create your own installer from the packages w/ package maker or something and burn that image... Worth trying...
    Please be assured that you will not get full integration between the current apps and the iLife apps in 10.9.x; Mavericks.  The apps don't have all the expected hooks to each other due end of product development. This seems to be the crux of the problems I've had testing to make an idvd dvd.
    If you're running 10.9, I recommend moving on to current replacements that will work as expected. That way you won't be wasting time running down project problems.

  • What is the best way to make 3g/4g simcard work with airport extreme

    I live in Mumbai, India and I am tired of the state of broadband connection over here. I have vodafone 3G Data only SIM with me which I use via a 3G dongle that plugs into my mac. It has a decent speed and I would like to use it as a primary internet connection across the 3 iPhones, 2 iPads, a Mac and 2 apple tvs at my home.
    I have a 2014 airport extreme and i want to know what hardware do i need to make the 3g sim work with it? like put the sim in the hardware/adapter and then plug it into the wan port of the airport extreme and let the AE handle my dhcp so that i can access 3g internet from all my devices?
    also, i was something 4g compatible as 4g is on the roll in India. it doesn't have to be a wireless router on its own but something that can dial the connection and provide internet access to the AE via the wan port.
    thanks.
    Neerav

    The only reason I mention it would be configure your network for a roaming instead of extended setup. The number one advantage over an extended is bandwidth performance ... aka speed.
    For example, I have a Cisco RVS4000 wired router as my main Internet router. I am fortunate that my 2-story home came pre-wired for Ethernet. I have placed an AirPort Extreme and a Time Capsule, connected by Ethernet back to the Cisco; one on each floor to provide a seamless wireless network for an assortment of wired/wireless clients. With this setup, I am able to stream HD TV content throughout the house. Mine is an example of what you can do with a roaming network.

  • What's the easiest way to have datagrid including renderers disabled, with loading spinner?

    I understand how to fire my start loading / end loading events when a datagrid is being populated from external data. What I do not know how to do effecitively (and have been googling) is what's the best practice for making the datagrid appear as modal with a loading spinner on top of it?
    My train of thought of the approach is - onLoading,  Make existing datagrid not clickable, then set alpha to dim the current datagrid. Show a loading spinner on top of  the grid.
    I can set the alpha which gives it the modal appearance, but how to make it so the user can't click anything in the existing grid? Setting the grid to enabled=false sort of works, but there are some icons in an item renderer in the grid that at are still clickable. Do I have to manually disable all of them as well?
    Sadly, I'm suprised that googling for this hasn't turned up much. I know this must be a basic problem.

    hi,
    I would place the grid in a container and have 2 states when you want to load data you set the state to locked once data is loaded set state to normal, in locked state it will show a custom spinner, blur the container and disable the container which effectively blocks the Grid. I just included the button event so you could test the effect.
    David
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Script>
    <![CDATA[
    protected function button1_clickHandler(event:MouseEvent):void
    if (this.currentState == 'normal')
    currentState = "locked"
    else
    currentState = "normal";
    ]]>
    </fx:Script>
    <s:states>
    <s:State name="normal"/>
    <s:State name="locked"/>
    </s:states>
    <fx:Declarations>
    <s:BlurFilter id="lockGrid" blurX="4" blurY="4"/>
    </fx:Declarations>
    <s:Group x="199" y="131" width="655" height="381" enabled.locked="false" filters.locked="{[lockGrid]}">
    <mx:DataGrid right="0" left="0" top="0" bottom="0">
    <mx:columns>
    <mx:DataGridColumn headerText="Column 1" dataField="col1"/>
    <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
    <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
    </mx:columns>
    </mx:DataGrid>
    </s:Group>
    <!--<mx:SWFLoader id="myspinner" source="spinner.swf" includeIn="locked" verticalCenter="0" horizontalCenter="0/>-->
    <s:Button x="199" y="538" label.normal="Disable Grid" label.locked="Enable Grid" click="button1_clickHandler(event)"/>
    </s:Application>

  • What's the easiest way to make scrolling text?

    I'm creating a template to use for a site, and I put an
    editable region inside of a table cell. The problem is some of the
    text for certain pages is more than will fit in the cell. How can I
    make it so the text scrolls inside of the cell? Is there an
    extension or something that will add the scrollbars? Thanks, I
    really appreciate the help!

    You'll only get the scroll bar if the text height exceeds
    300px. Use
    overflow:scroll if you always want scroll bars.
    What browser did you test it in? Some older browsers do not
    support
    overflow.
    What element did you assign the maintext class to? It needs
    to be on a
    block-level element. I would not put it on the <td>.
    You can always add
    a <div> tag inside the <td> if there is no single
    containing tag.
    Yes, the height should match the table cell height.
    HTH,
    Randy
    > I tried it and it didn't work. What I did was I have the
    text assigned to a
    > style class called .maintext and I added those two lines
    to it. It looked like
    > this...
    >
    > .maintext {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 12px;
    > font-style: normal;
    > line-height: 18px;
    > color: #FFFFFF;
    > overflow: auto;
    > height: 300px;
    > }
    >
    > Like I said, this didn't seem to work. I put the text
    into the editable
    > region and it broke the table, no scroll bars appeared
    when I viewed it in a
    > browser as well. Was I supposed to put the two lines of
    code somewhere else?
    > Like on the <td> tag?
    >
    > Also, should the height coincide with the pixel height
    of the cell I'm putting
    > the text into?

  • What is the easiest way to get time stamped wvm data with AI samp Ch Vi?

    The AI sample channel VI only outputs single point waveform data which is making it a beast for me to get my input data into XY graphs. I have been trying to combine the data with a elapsed time clcok so I can synchronize all my inputs but it isnt working too great. All this stuff is in a while loop also, so that gives me trouble. Basically I just want to make an XY graph from both AI inputs.
    Attachments:
    PID_Control_LoopII.vi ‏326 KB

    Tim, no problem. I have attached the modified code that displays the readings from both devices on the same plot. I used a chart instead of an XY graph since it is much easier to use (it keeps track of elapsed time for you if you know the amount of time in between data points - and since the loop time is fixed we do know that). If this time were to change, then we would have to re-create the X-axis (time) and the XY graph would be necessary. One other note - the code that reads the values from the DAQ cards will not execute at exactly the same time, therefore the data will not be acquired at exactly the same time, though it will be close. Therefore, if your application requires these readings to be dead on together in time down to the mi
    crosecond for example, then you would have to synch the two devices via hardware. Let me know if you intend to do that and I can steer you in the right direction. Hope this helps.
    Attachments:
    PID_Control_LoopII_rev_2.vi ‏89 KB

  • What's the easiest way to resize/optimize an image size with the iPhone SDK?

    hi.......every one.
    I developed one APP in XCode4.6.3 ,it's working perfectly in ipad.
    After update my xocde 4.6.3 to 5.0 it is not working, it is crashes.
    How to Set an iamge for both ,ipad & ipad retina

    Hi Srikanth,
    if chitram.png is your image file for 1024 resolution iPad, then [email protected] will become image for retina iPad.
    Please have double resolution image ready for that.

  • What's the best way to make a tribute DVD?

    I wanted to make a DVD for my mom for her birthday. What is the easiest way to make a photo slideshow with music with short video clips? Can I make each section a separate slideshow in Iphoto with music and then just import that as a project into iMovie '09 and then string them together with short video clips in between?
    Also, I am having different people send me videos. What video formats are usable with iMovie '09?

    You might be better advised posting this in either the iPhoto or iMovie forum rather than here in iTunes. I think you are more likely to get relevant answers there as your question seems to be specifically about those programs.

  • What is the easiest way to create alias email addresses in exchange 2013?

    For example my official domain is [email protected]
    Within my company i want to make it look like certain departments are sending from bicycles.com skateboards.com
    and skooters.com and receive to those addresses even though the emails are really going through the
    [email protected] domain. but it appears to be coming from three other domains.
    appearance is everything. What is the easiest way to accomplish this.
    Step by step with examples if possible. I am not well versed in exchange server 2013 yet.
    Droid Hacker

    In Exchange 2013 you can use the ECP to add additional email addresses to mailboxes. In order for a mailbox to send using an address, that address needs to be set as the reply address. One mailbox cannot send as multiple addresses. Doing that would require
    a mailbox for each address. To set a new primary address on a mailbox log into the ECP and choose mailboxes under the recipients option on the left. Then search for the mailbox you want to add the address to and click the edit symbol. Navigate to the
    Email Address tab on the left. To set a new primary address you will likely need uncheck the box for "Automatically update email addresses based on the email address policy applied to this recipient". Then click the plus button, enter the new address,
    and check the box for "Make this the reply address"
    Before you do this you should ensure that the proper MS records exist for these other domains, and that they are properly configured for mail flow. Once you set this as the reply address for a mailbox, that is the address external users will use for replies.

  • What's the easiest way to add storage to a mac mini. (1TB hard drive but only 32G of real storage). External device, internal or partitioning?

    What's the easiest way to add storage to a mac mini. (1TB hard drive but only 32G of real storage). External device, internal or is there some way to partition? I tried doing so but received a message that there wasn't enough free space to partition. Seems like a 1TB drive should have more storage than my Ipad

    Its worth confirming what free space you have on your drive: 
    go to:   Apple Menu > About this Mac >  More Info > Storage
    The bar chart shows how much free space there is on the drive:
    Please realise that partitioning does not create extra space so this wont help you.
    If your free space is less than 20 % you should get extra storage with an external USB or Firewire drive, any make or model will work.

Maybe you are looking for