What is the easiest  program to make a project with data audio text then put on a DVD

how to make a slideshow using dat text audio, on my imac desktop to  play on a DVD player.   I have a suprdrive DVD  recorder

would think it sounds like something one would use ms powerpoint or apple keynote to do

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 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

  • I own a MacBook Pro. Can someone advise me the easiest way to make a movie with existing photos on my laptop?

    I own a MacBook Pro. Can someone advise me the easiest way to make a movie with existing photos on my laptop? I have made some movies on this laptop but find it too cumbersome. Thanks.

    Hi sato gato,
    The page linked below serves as a good starting point for creating slideshows in iPhoto.
    iPhoto Help - Make a slideshow
    http://help.apple.com/iphoto/mac/9.6/#/pht5470fe9b
    Regards,
    Allen

  • What is the easiest way to transfer multiple photos attached to a TEXT message to my MAC?

    What is the easiest way to transfer multiple photos attached to a TEXT message to my MAC?

    @randers4
    That is exactly what I've been doing.
    I get dozens of photos from a job site every day and it just takes forever.
    I had hoped there was an easier - or at least more direct and simpler way.
    Thanks anyway.

  • What is the best program and/or method to have crisp clear text in FCP?

    What is the best program and/or method to have crisp clear text in FCP?
    I have the CS4 Production suite.
    Thanks

    What is the best work flow to use? For example creating text in Motion, AE, PS, or AI and then bringing it into FCP.
    I used Motion and the text looks jagged. I though Motion was vector based and I don't understand why the edges aren't crisp and smooth.
    I'm just starting to learn these programs and want to create good working habits.

  • 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?

  • I recently got a MacBook Pro and want to burn my videos taken with my iPhone to DVD. What is the easiest program for me to accomplish this? Help!

    I recently got a MacBook Pro and want to burn my videos, taken with my iPhone, to DVD. What is the easiest way for me to accomplish this? I've been told I need to download a DVD creator/burner. I've downloaded 3 different free versions, but none of them seem to recognize the video files from my iPhone. I don't need anything fancy or complicated. I just want a way to store these vidoes and be able to play them on our DVD player. Help!

    Copy the entire /Music/iTunes/ folder on your PC to /Music/ on your Mac.
    Then delete what you don't want.
    You will need to authorize yrou computer for the iTunes account yoru mother has.
    You should create & use your own iTunes account for any more purchases.
    You don't need to export anything and definitely don't need to (and shouldn't) convert anything.

  • 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!

  • What's the easiest way to remove/append a line of a text file???

    The line to remove can be any line in the file - not only the first or last one.
    Is there any good tutorial for file operations?
    Thanks a million,
    Serano.

    To remove a line from a text file, the easiest way is to read it in one line at a time and write out all lines except the one you want to remove to a new version of the file. Likewise, to insert a line, you read the file one line at a time and write the lines to a new version, inserting the new line at its correct spot.

  • What is the best way to make JPanel moving with some speed...

    I made a JPanel and now I want it to move. What is the best way to do it?? Should I use a Timer class object or sth else, I want the movement to be smooth, please help me. Thanks.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.Timer;
    public class PanelMotion
        public static void main(String[] args)
            MotionPanel panel = new MotionPanel();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel.getUIPanel(), "North");
            f.getContentPane().add(panel);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class MotionPanel extends JPanel
        Timer timer;
        final int DELAY;
        int dx, dy;
        public MotionPanel()
            final JPanel panel = new JPanel();
            panel.setBackground(Color.red);
            panel.setPreferredSize(new Dimension(25,25));
            panel.setBounds(50,50,panel.getPreferredSize().width,
                                  panel.getPreferredSize().height);
            dx = 2;
            dy = 3;
            DELAY = 25;
            timer = new Timer(DELAY, new ActionListener()
                public void actionPerformed(ActionEvent e)
                    int w = getWidth();
                    int h = getHeight();
                    Rectangle r = panel.getBounds();
                    if(r.x + dx <= 0 || r.x + r.width + dx >= w)
                        dx *= -1;
                    if(r.y + dy <= 0 || r.y + r.height + dy >= h)
                        dy *= -1;
                    r.x += dx;
                    r.y += dy;
                    panel.setBounds(r.x, r.y, r.width, r.height);
                    repaint();
            setBackground(Color.white);
            setLayout(null);
            add(panel);
        public JPanel getUIPanel()
            final JButton
                start = new JButton("start"),
                stop  = new JButton("stop");
            ActionListener l = new ActionListener()
                public void actionPerformed(ActionEvent e)
                    JButton button = (JButton)e.getSource();
                    if(button == start)
                        if(!timer.isRunning())
                            timer.start();
                    if(button == stop)
                        timer.stop();
            start.addActionListener(l);
            stop.addActionListener(l);
            JPanel panel = new JPanel();
            panel.add(start);
            panel.add(stop);
            return panel;
    }

  • I'm new to Java. Whats the easiest program to make games?

    I'm a moderately experience flash actionscript 3 developer, so i know how to program.
    I just want to know a developers kit that is good for making simple 2d games. Are there kits, that help you with the graphics stuff, like flash does? Because i suppose in Java you have to load all the sprites etc mannually?
    So i'm looking for an easy developer's kit for Java games.

    omniscient wrote:
    game maker is very limited. I want to use the java language.Okay but why do you want to use java? What do you think it offers you over something like GameMaker (especially if you're relying on prebuilt libraries)? If we know your actual goals (what kind of game do you want to make? How do you plan to get started? How much programming do you already know?), we can better help you.
    I'll check the tutorial.Always a good start. If you're unfamiliar with java in general, I wouldn't touch anything GUI-related until you master the [basic tutorials|http://java.sun.com/docs/books/tutorial/java/index.html] first.
    But I don't understand why you're so negative. What's wrong with wanting to use a kit thats easy- to use, and has all the basic stuff ready for you?I didn't mean to come off as negative. The problem with using a "kit" is that it gets in the way of actually learning how to program. I'd recommend getting a really basic game going on your own (think pong), and then worry about adding on to it using third party libraries. Learning how to do the basics (which really aren't that hard to start) will give you a better idea of what you need: physics engine? More accurate collision detection? Special effects? Smoother animation? Artificial intelligence? The list is endless, and I doubt you'll find all of it in one prebuilt kit. What fun would that be anyway!
    Ofcourse i know i dont ahve to draw pixel per pixel, i was exaggerating.Ok phew, you had me worried for a second.
    All this being said, I love seeing what other people come up with. Keep us posted on your progress, and feel free to ask questions as you go along.

  • 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 about the ati radeon 4870 makes it incompatible with '07 mac pros?

    maybe a stupid question but there ya go.

    OWC was selling some OEM Apple 3870's last summer, short supply, never were sold by Apple, and unlike the retail 3870s, these would ONLY work in the 2008 Mac Pro.... so there is some precedent that the new Apple branded may not work in our EFI32 systems also.
    Or ATI could come out with another retail version; but this time around I'm not yet seeing a universal statement "works on any Mac Pro" for hardware requirements.
    "EFI64" is how folks talk about it, but may not be technically correct term, and just something we "made up" to describe - the whole need for two sets of EBC firmware for two versions of the Nvidia 8800GTs out there.
    (I thought EFI would begin to take off or be used more in the PC universe or something by HP and others but it is only officially supported on 64-bit OS/hardware. Snow Leopard will use 64-bit drivers. I wonder if that is part of the move to EFI64 or whatever the rightful name.)

Maybe you are looking for

  • CMC Customization

    Dear Team, We are trying to provide a user access to CMC application with a restricted access (BO Version: XI 3.1 + SP3 + FP3.3). The operations he / she can do should be as below: • Login to CMC application • Able to see the user's and groups • Able

  • Files Created by external computer are read only on file server!

    Not an indesign question but have searched and searched but can't find an answer, hoping someone in here has had same problem and know if it can be fixed. Systems: MacPro running snow lepoard as the file server iMac reading and writing files to the M

  • Delivery split through VLSP along with JIT Calls with AW Partner profiles

    Hi SAP SD/LE Guru's, I have one critical issue to resolve immediately in my implementation of SAP 4.6C system in multinational automotive industry. It's in the area of Delivery split along with AW - Duns number partner profile and JIT calls. Here is

  • How can I make a drawing stable and not disappear?

    When I draw some shapes in a panel, if another window goes over the panel, then the drawing disappears and I have to draw it again. How can I make the drawing stable?

  • Missing column at the end of report in Crystal report server 2008 VI

    When we run the reports in Crystal report server 2008 VI, for some reports we see the last column is missing some characters. I have few reports that show numbers with decimals at the end of the report, but in CMC it cuts the number at the start of t