Imbedding sound files in documents

I want to embed mp3 sound files inside a document and be able to share it as a pdf document or other generally available format. Text Edit can accept mp3 files, and a little player bar appears, but Text Edit is not able to 'print' them as PDFs with the sound retained. Pages 1.0 does not export them as pdf, and InDesign CS does not accept mp3s.
Any suggestions how I can generate a document with included mp3s that is readable by PC and Mac?

In Text Edit you just drag the mp3 file into the window. Can PC users read a Text Edit file?
I'd rather not use Word format as it is not universally readable.

Similar Messages

  • How can I transfer a sound file from my "Voice Memos" app on my iPhone to my iPad?

    How can I transfer a sound file from my "Voice Memos" app on my iPhone to my iPad?

    In iTunes with your iPhone connected, click on the iPhone device, select the Apps tab, scroll down to the File Sharing section and pick an app that plays Quicktimes ("Files Connect" works in this example, but I'm open to suggestions of better apps for playing transferred Quicktimes) and drag your Quicktime from Finder to the Documents pane for the File Sharing app.   Once the file transfer is complete, go to the app on your iPhone to play the Quicktime.

  • How can I use a sound file on one slide, which fades to another sound file on the next?

    I am trying to make a slide show that begins with a certain sound file, which then I hope to fade out to the second slide which uses a different sound file, I've followed Apple's online tutorials, but what happens is I get two sound files playing simultaneously. Also, I'd like to add sounds files to different individual slides throughout the presentation, which I want to play independently from the entire slide show's sound track. I have programmed the slides to change automatically. Is there any way I can have multiple sound files on multiple slides all playing independently, without playing over the top of the previous sound file? I imagine this is a simply task, so my apologies if this is the case. Thanks in advance for any help!
    kind regards,

    Getting sound to work right in Keynote requires a basic understanding that:
    1. Sound played during slide transitions (from one slide to the next) must be placed in the Document Inspector > Audio > Soundtrack Well - there can only be one audio file and it plays across all slides
    2. Additional sounds files can be placed on individual slides as sound objects - each object can have build-in and build-out assignments, but sound files need at least a Build-In > Start Audio (done in the Build Inspector) - each object, wether a shape, image, sound or movie can have discrete start timing such that the start of one sound object can be delayed X seconds after the previous event. This can be used to avoid overlapping starts or playing. If you know the length of each sound file object, you can adjust the start to occur after the end of a previous sound using the Build Inspector. Click on the More Options Button to display the event build-order list and click on the event to reveal how the build starts and add any delays to start there.
    3. Keynote does not have a Fade Feature - any fade-in or fade-out (sound up/sound down) of audio files must be done to the sound file using third party applications and then brought into Keynote. If you'd like to join the crowd wishing Apple might add this feature in the future, you can provide feedback to Apple here:
    http://www.apple.com/feedback/
    4. If you need an audio file to play across a few slides and another audio file to play across another few slides, break the presentation into seperate documents, place the audio in the soundtrack well for each document and then add a hyperlink object to connect to the next Keynote document in the series. Note: all files must be "opened" in the background and ready to play or else the next file will attempt to start but stall just when you don't need it to.
    Hope this helps.

  • How to input sound file into MS Access Database, not random folder?

    Hi, I am trying to input a sound file into an MS Access 2000 database, I know it can be copied and pasted into there, but how can u input into the database with a user record, i also need the code to extract it as well as inputting it....at the moment it records the sound and stores it as test.wav on the local drive....
    here is my code for my applet do far....
    compile this file first....
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import java.io.IOException;
    import java.io.File;
    import java.net.URL;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.TargetDataLine;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.AudioFileFormat;
    public class VoicePasswordRecorder extends Thread {
         private TargetDataLine m_line;
         private AudioFileFormat.Type m_targetType;
         private AudioInputStream m_audioInputStream;
         private File m_outputFile;
         public VoicePasswordRecorder(TargetDataLine line,
                             AudioFileFormat.Type targetType,
                             File file)
              m_line = line;
              m_audioInputStream = new AudioInputStream(line);
              m_targetType = targetType;
              m_outputFile = file;
         /** Starts the recording.
             (i) The line is started,
              (ii) The thread is started,
         public void start()
              /* Starting the TargetDataLine. It tells the line that
                 data needs to be read from it. If this method isn't
                 called then it won't be able to read data from the line.
              m_line.start();
              /* Starting the thread. This call results in the
                 method 'run()'being called. There, the
                 data is actually read from the line.
              super.start();
         /** Stops the recording.
             Note that stopping the thread is not necessary. Once
             no more data can be read from the TargetDataLine, no more data
             can be read from the AudioInputStream. The method 'AudioSystem.write()'
             (called in 'run()' returns. Returning from 'AudioSystem.write()'
             is followed by returning from 'run()', and then the thread
             stops automatically.
         public void stopRecording()
              m_line.stop();
              m_line.close();
         /** Main working method.
             'AudioSystem.write()' is called.
              Internally, it works like this: AudioSystem.write()
             contains a loop that is trying to read from the passed
             AudioInputStream. Since there is a special AudioInputStream
             that gets data from a TargetDataLine, reading from the
             AudioInputStream leads to reading from the TargetDataLine. The
             data read this way is then written to the passed File. Before
             writing of audio data starts, a header is written according
             to the desired audio file type. Reading continues until no
             more data can be read from the AudioInputStream. In this case,
             it happens if no more data can be read from the TargetDataLine.
             This happens if the TargetDataLine is stopped. Then,
             the file is closed and 'AudioSystem.write()' returns.
         public void run()
                   try
                        AudioSystem.write(
                             m_audioInputStream,
                             m_targetType,
                             m_outputFile);
                   catch (IOException e)
                        e.printStackTrace();
         public static void main(String[] args)
              if (args.length != 1 || args[0].equals("-h"))
                   printUsageAndExit();
              /* There is only one command line argument.
                 This is taken as the filename of the soundfile
                 to store to.
              String     strFilename = args[0];
              File     outputFile = new File(strFilename);
              /* For simplicity, the audio data format used for recording
                 is hardcoded here. The PCM 44.1 kHz, 16 bit signed,
                 stereo was used.
              AudioFormat     audioFormat = new AudioFormat(
                   AudioFormat.Encoding.PCM_SIGNED,
                   44100.0F, 16, 2, 4, 44100.0F, false);
              /* Here, the TargetDataLine is being received. The
                 TargetDataLine is used later to read audio data from it.
                 If requesting the line was successful, it will open it.
              DataLine.Info     info = new DataLine.Info(TargetDataLine.class, audioFormat);
              TargetDataLine     targetDataLine = null;
              try
                   targetDataLine = (TargetDataLine) AudioSystem.getLine(info);
                   targetDataLine.open(audioFormat);
              catch (LineUnavailableException e)
                   out("unable to get a recording line");
                   e.printStackTrace();
                   System.exit(1);
              AudioFileFormat.Type     targetType = AudioFileFormat.Type.WAVE;
              /* The creation of the VoicePasswordRecorder object.
                 It contains the logic of starting and stopping the
                 recording, reading audio data from the TargetDataLine
                 and writing the data to a file.
              VoicePasswordRecorder     recorder = new VoicePasswordRecorder(
                   targetDataLine,
                   targetType,
                   outputFile);
              /* It is waiting for the user to press ENTER to
                 start the recording.
              out("Press ENTER to start the recording.\n");
              try
                   System.in.read();
              catch (IOException e)
                   e.printStackTrace();
              /* Here, the recording is actually started.
              recorder.start();
              out("Recording...\n");
              /* It is waiting for the user to press ENTER,
                 this time to signal that the recording should be stopped.
              out("Press ENTER to stop the recording.\n");
              try
                   System.in.read();
              catch (IOException e)
                   e.printStackTrace();
              /* Here, the recording is actually stopped.
              recorder.stopRecording();
              out("Recording stopped.\n");
         private static void printUsageAndExit()
              out("VoicePasswordRecorder: usage:");
              out("\tjava VoicePasswordRecorder -h");
              out("\tjava VoicePasswordRecorder <audiofile>");
              System.exit(0);
         private static void out(String strMessage)
              System.out.println(strMessage);
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    import javax.sound.sampled.*;
    import javax.swing.*;
    public class AppletTest extends JApplet
        implements ActionListener
        public AppletTest()
            comp = null;
            startrecording = null;
            stoprecording = null;
            recorder = null;
        public void init()
            Panel panel = new Panel(new FlowLayout(1));
            comp = new JTextArea(50, 50);
            comp.setPreferredSize(new Dimension(50, 50));
            comp.setEditable(false);
            JButton startrecording = new JButton("Start");
            JButton stoprecording = new JButton("Stop");
            comp.append("Please record your Voice Password...\n");
            GridBagLayout gridbag = new GridBagLayout();
            GridBagConstraints c = new GridBagConstraints();
            getContentPane().setLayout(gridbag);
            c.weightx = 1.0D;
            c.weighty = 1.0D;
            gridbag.setConstraints(comp, c);
            gridbag.setConstraints(panel, c);
            getContentPane().add(comp, c);
            getContentPane().add(panel, c);
            c.weightx = 0.0D;
            c.weighty = 0.0D;
            startrecording.setEnabled(true);
            stoprecording.setEnabled(true);
            startrecording.addActionListener(this);
            gridbag.setConstraints(startrecording, c);
            getContentPane().add(startrecording, c);
            stoprecording.addActionListener(this);
            gridbag.setConstraints(stoprecording, c);
            getContentPane().add(stoprecording, c);
            int width = 300;
            int height = 200;
            setSize(width, height);
            setVisible(true);
            boolean looping = false;
        public void actionPerformed(ActionEvent ae)
            if(ae.getActionCommand().equals("Start"))
                createRecorder();
                recorder.start();
                System.out.println("Start Button Clicked");
            } else
            if(ae.getActionCommand().equals("Stop"))
                recorder.stopRecording();
                System.out.println("Stop Button Clicked");
        private void createRecorder()
            String strFilename = "C:\test.wav";
            File outputFile = new File(strFilename);
            AudioFormat audioFormat = new AudioFormat(javax.sound.sampled.AudioFormat.Encoding.PCM_SIGNED, 44100F, 16, 2, 4, 44100F, false);
            javax.sound.sampled.DataLine.Info info = new javax.sound.sampled.DataLine.Info(javax.sound.sampled.TargetDataLine.class, audioFormat);
            TargetDataLine targetDataLine = null;
            try
                targetDataLine = (TargetDataLine)AudioSystem.getLine(info);
                targetDataLine.open(audioFormat);
            catch(LineUnavailableException e)
                comp.append("unable to get a recording line\n");
                e.printStackTrace();
                System.exit(1);
            javax.sound.sampled.AudioFileFormat.Type targetType = javax.sound.sampled.AudioFileFormat.Type.WAVE;
            recorder = new SimpleAudioRecorder(targetDataLine, targetType, outputFile);
            comp.append("Press ENTER to start the recording.\n");
            try
                System.in.read();
            catch(IOException e)
                e.printStackTrace();
            comp.append("Recording...\n");
            comp.append("Press ENTER to stop the recording.\n");
            try
                System.in.read();
            catch(IOException e)
                e.printStackTrace();
            comp.append("Recording stopped.\n");
        private JTextArea comp;
        private JButton startrecording;
        private JButton stoprecording;
        private SimpleAudioRecorder recorder;
    }I intend to use this for verifying the username, password and a voice password over the web....as shown in the following code...
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta http-equiv="Content-Language" content="en-us">
    <title>Home Page</title>
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta name="Microsoft Theme" content="artsy 011, default">
    <meta name="Microsoft Border" content="tl, default">
    </head>
    <body background="arttilea.jpg" bgcolor="#000000" text="#FFFFCC" link="#FF9900" vlink="#999900" alink="#669933">
    <!--mstheme--><font face="Arial, Helvetica">
          <p align="left"><font size="4" color="#FFFFFF">Please enter login
          details below:</font></p>
    <form>
    <!--mstheme--></font><table border=0 cellpadding=3 cellspacing=3>
    <tr>
        <td align=right width="74"><!--mstheme--><font face="Arial, Helvetica">
          <p align="left"><font face="Arial, Helvetica, sans-serif"><b><i>Username</i></b></font></p>
        <!--mstheme--></font></td>
        <td width="335"><!--mstheme--><font face="Arial, Helvetica">
          <p align="left"><input type=text
          name=username size="20"></p>
        <!--mstheme--></font></td>
    </tr>
    <tr>
        <td align=right width="74"><!--mstheme--><font face="Arial, Helvetica">
          <p align="left"><font face="Arial, Helvetica, sans-serif"><b><i>Password</i></b></font></p>
        <!--mstheme--></font></td>
        <td width="335"><!--mstheme--><font face="Arial, Helvetica">
          <p align="left">
            <input
            type=password name=password size="20"></p>
          <!--mstheme--></font></td>
      </tr>
      <tr>
        <td align=center width="74"><!--mstheme--><font face="Arial, Helvetica">
          <p align="left"><font face="Arial, Helvetica, sans-serif"><b><i>Voice
          Password Check</i></b></font></p>
        <!--mstheme--></font></td>
        <td width="335"><!--mstheme--><font face="Arial, Helvetica">
           <p align="left">
    <APPLET CODE="AppletTest.class" ALIGN="MIDDLE" WIDTH=272 HEIGHT=38 NAME="AppletTest.class"></APPLET> </p>
        <!--mstheme--></font></td>
      </tr>
    <tr>
        <td colspan=2 align=center><!--mstheme--><font face="Arial, Helvetica">
        <p align="left"><font face="Arial Narrow"><input type=submit value="Enter Website" name="Submit"></font></p>
        <!--mstheme--></font></td>
    </tr>
    </table><!--mstheme--><font face="Arial, Helvetica">
    </form>
          <p align="left">This page was last updated on <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d/%m/%y" startspan -->25/03/04<!--webbot bot="Timestamp" endspan i-checksum="12776" -->.</p>
    <!--mstheme--></font></body>
    </html>I will be very grateful if somebody could help me out....as this is my first time at java programming ....also my first time for using this forum!
    Thanks,
    Regards,
    Mayur Patel

    Hi
    I Learned how to read a file text and Parse as StringTokenizer. But still i don't know how to read the Individual tokens into to database.
    But now i face a new Problem, i am not able to sort it out.
    i am posting my code
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.BufferedReader;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.*;
    import java.util.*;
    public class CSVExample {
        public static void main(String[] args) throws IOException {
            BufferedReader inputStream = null;
            PrintWriter outputStream = null;
            try {
                inputStream = new BufferedReader(new FileReader("file.csv"));
              String text;
                 while((text=inputStream.readLine())!= null)
                    StringTokenizer st = new StringTokenizer(text);
                         if(st.hasMoreTokens())
                        System.out.println(st.nextToken());
            } finally {
                if (inputStream != null) {
                    inputStream.close();
    }Here the Problem is The file.csv has got two fields ID, NAME The content of this file is as follows
    T12,MR.RAJ KUMAR
    T13,MR.EARNEST DIES
    T14,MR.MATHEW HYDEN
    Now when i StringTokenize this File The Output printed as follows
    T12,MR.RAJ
    T13,MR.EARNEST
    T14,MR.MATHEW
    That means when it finds the Space it is not printing the Remaining Text.
    Please Help me in this and then Tell me how to INSER The Tokens into the Database Table
    Thank you for your service
    Cheers
    Jofin

  • Streaming Sound File Playing Early

    I'm creating a presentation in Flash v8. It's the very same
    presentation I created in v5 last month but now I'm recreating it
    from scratch in v8 and something's happening now that didn't happen
    then.
    It's a simple Flash document with multiple scenes and no
    Actionscript. I'm starting a new .wav sound file (narration) at the
    start of each scene. When I play each scene individually in the
    Flash environment, the sound synchs fine with the events in the
    presentation. But when I run the presentation as a .swf or .exe,
    the sound file on scene 2 begins playing before scene 1 has
    finished playing. The sound file from scene 3 begins playing before
    scene 2 has finished, etc. This didn't happen in the same
    presenation I created in v5. Is there something new that I haven't
    figured out yet?

    Its doing this to me too....
    Same thing - a series of scenes - each with sound streamed on
    its own layer.
    as soon as one sound ends, the next scene's sounds starts -
    The sounds are synched correctly in edit mode - its just when
    I play the SWFs.
    I'm publishing a MENU movie as a projector - this menu calls
    the other SWFs.
    Dave

  • What is the best way to integrate a sound file (mp3) into a PDF?

    I saw that its possible to do it by Tools->Multimedia->Sound. This works fine on a computer but not a tablet. So what is the right way to embed a sound file into a PDF of maybe by Indesign? What i want is that people can easily open a document (PDF) on a tablet and when they click on a (play)icon that they hear a sound file. The best thing is that they can stop or put it on pause.

    I think this functionality relies on Flash, so it's not likely it's going
    to work on mobile devices, certainly not on iOS ones.

  • Please tell me how to automatically play a sound file in a PDF slideshow?Da

    I use PS CS3, LR2, and now I purchased Acrobat 9.1 Pro.  My intent is to create an image based full screen automatic slideshow WITH SOUND.  I have everything working well but I can't figure out how to get the sound file to simply play along with the images.  I do not want the viewer to have to press anything to hear the sounds.  The sound file should simply play along with the image(s).  I would like to be able to time the sound file to the images as well.
    I will appreciate any pointers you may have.
    Thanks...

    To do this reliably the document has to be in the list of the client applications list of trusted documents.  You get this prompt when you attempt to play a sound.  The other way is to actually set the Multimedia Trust (legacy) preference on each client for each type of Player application.  While this might seem a bit of a task it's meant to protect the user.

  • Problems Embedding Sound Files

    I recently upgraded from Acrobat Pro 8 to X, not realizing how different they are. In 8, I would open a link to a sound file and then click on the box that allowed me to embed it in the document. I could have the field borders invisible so that when the hand passed over a text that was linked to sound, it changed to the pointing finger and clicking started the sound.
    Now it seems I can't do that any longer. I watched the tutorial and it looks like I have to have something that's visible. While I know that you can set it so the sound file marker won't print, it's still ugly and carries no identification, unless I add a text field and then have others who use the file learn to exclude both the "comment" and the image of the sound file.
    What I would like to do at the minimum is to be able to type in an identifier for the sound file which is part of the image itself, or else make the image of the sound file transparent, so that the relevant text already present would show through, like it did in Acrobat 8.
    Does anyone know if this is possible any longer? I miss the old way.
    Thanks in advance for your help.

    I've run into similar problems and haven't found a satisfactory solution with sound files. Others have reported this problem as well.
    You might experiment in turning sound files into movies, and making your text label into the first frame of the movie (the "movie poster"). The best movie formats for Acrobat 9 and Acrobat X are Flash formats—F4V and FLV. If you have a copy of InDesign CS5, it's easier to use the Media panel to place and manipulate the Flash movies.

  • How I store my sound file in my database table

    Dear friend
    i make a table for store sound file
    table is create .
    but now
    how i insert that file which is at 'c:\my document '
    to this table.
    i try following command but it has a error
    insert into sound values('c:\my document\abc.au');
    what i do for it
    please mail me as soon as on following id
    [email protected]
    ok bye

    Dear friend
    i make a table for store sound file
    table is create .
    but now
    how i insert that file which is at 'c:\my document '
    to this table.
    i try following command but it has a error
    insert into sound values('c:\my document\abc.au');
    what i do for it
    please mail me as soon as on following id
    [email protected]
    ok bye

  • Too many sound files... AS3 no worky

    I've created this little program to test with.  It works perfectly for 5 or less sound files/for loops.  As soon as I do more then that the sounds stop working. Everything else is fine... just no sound. My plan is to have the xml file determin how many movie clips with attached sound files to create. I'm planning on having tons of movie clips and sound files once this is all finished.  No luck so far
    Is there a limit to how many sound files a swf can reference? Any other ideas why the sounds aren't working for me?
    //load xml
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    var xmlPath:String = "data.xml";
    xmlLoader.load(new URLRequest(xmlPath));
    trace("loading xml from: " + xmlPath);
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    function LoadXML(e:Event):void {
         trace("xml loading complete");
         xmlData = new XML(e.target.data);
         //load objects
         buildScroller();
    function buildScroller():void{
         var tl:MovieClip=this;
         for (var i:Number = 0; i < 5; i++){
            //create movie clips
            var container_mc:container = new container();
            addChild(container_mc);
            container_mc.x = 325 * i;  // set the number here to the width of the movie clip being repeated
            //sound info
            tl["snd"+i] = new Sound();       
            tl["snd"+i].load(new URLRequest(xmlData.sound.loc[i]));
            container_mc.snd = tl["snd"+i];
            container_mc.addEventListener(MouseEvent.CLICK, playSound, false, 0, true);
            function playSound(event:MouseEvent):void {
                event.currentTarget.snd.play();
    here is the xml file that I'm using:
    <DATA>
        <object_count>20</object_count>
        <sound>
            <loc>fart.mp3</loc>
            <loc>burp.mp3</loc>
            <loc>creak128.mp3</loc>
            <loc>GateOpen.mp3</loc>
            <loc>bang.mp3</loc>
            <loc>pop.mp3</loc>
            <loc>slap.mp3</loc>
        </sound>
    </DATA>

    Dmennenoh, pulling the playSound function out of the other functions worked perfectly!  I should have known better.  Even though everything is working correctly I am now recieving an error stating that "Parameter url must be non-null."  I'm certain this has to do with the sound file urls that I am passing from the xml document... but if the sounds are playing the urls must be non-null already.
    I tried changing the tl["snd"+i] to container_mc["snd"+i] as you suggested but the sounds would not play at that point.  I recieve an error saying: "a term is undefined and has no porperties."  Below is how I built it:
    function buildScroller():void{
         for (var i:Number = 0; i < 55; i++){
            //create movie clips
            var container_mc:container = new container();
            addChild(container_mc);
            container_mc.x = 325 * i;  // set the number here to the width of the movie clip being repeated
            //sound info
            container_mc["snd"+i] = new Sound();       
            container_mc["snd"+i].load(new URLRequest(xmlData.sound.loc[i]));
            container_mc.snd = container_mc["snd"+i];
            container_mc.addEventListener(MouseEvent.CLICK, playSound, false, 0, true);
    function playSound(event:MouseEvent):void {
         event.currentTarget.container_mc.play();

  • Can I use a sound file on Pages?

    I want to create a picture book for kids to run on iPad and Iphone -- it will have a voiceover -- so the user can turn the voice on or off.
    Would Pages be a suitable program for this?
    Can I put a sound file in a Pages doc for this purpose?

    You can drag in any media into Pages, but be aware that it is only accessible in the .pages document itself.
    Why not have a look at iBook Author which is based on Pages and much more suitable for what you want?
    Peter

  • Help, error when trying to load sound file

    When i try to load a sound file like this
    AudioClip gong = getAudioClip(getDocumentBase(), "slow.wav");I get this error,
    java.lang.NullPointerException
        at java.applet.Applet.getDocumentBase(Applet.java:141)
        at collision.<init>(collision.java:30)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at sun.applet.AppletPanel.createApplet(AppletPanel.java:786)
        at sun.applet.AppletPanel.runLoader(AppletPanel.java:715)
        at sun.applet.AppletPanel.run(AppletPanel.java:369)
        at java.lang.Thread.run(Thread.java:619)I don't know why i'm getting this error.
    Btw, the rest of my code is on the Maze game help thread.

    I am using the newest version of Java. I reverted it back to update 7, and it still didnt work.
    And for the API, i cant find out why it may return null, all it says is
    getDocumentBase
    public URL getDocumentBase()Gets the URL of the document in which this applet is embedded. For example, suppose an applet is contained within the document:
        http://java.sun.com/products/jdk/1.2/index.html
    The document base is:
        http://java.sun.com/products/jdk/1.2/index.html
    Returns:
    the URL of the document that contains this applet.
    See Also:
    getCodeBase()

  • Resurrecting split sound files

    This question has been answered in various forms, but I need a little additional information.
    It has been asked previously how to restore files that have been split into data and resource forks. I have been able to restore Word documents and older QT Moov files by simply changing the extension on the data file.
    Since I couldn't get AppleTalk to communicate over Ethernet between OS9 and OS 10.3, I copied the info off my old PowerMac using a Zip drive, copied it to a PC, and loaded it on the thumb drive to transfer to the iBook. I know, I know, two steps more than I needed.
    I have been able to re-combine data and resource forks for .wav, .snd, and .au files by simply copying both forks to a thumb drive, at which point I was able to copy the merged file back to my hard drive.
    But once I copy them back, I can't find a sound format that will play, .au and .snd files won't play through Quicktime, .wav files won't play through iTunes. Any idea how to resurrect these files?
    I've tried to follow the RsyncX procedures, no luck. If there's a step-by-step procedure out there to bring sound files back together and get them to play, if someone could post a link, that would be greatly appreciated.
    Thanks!

    Thank you!
    I was able to use Audacity's "Import raw data" to bring them back to life.
    A couple are indeed corrupted, not much I can do about those.
    I tried opening the snd and wav files directly through Audacity, and the program automatically suggested the "import raw data" command. It took a couple tries for each to get the correct sampling rates, but the process really isn't that difficult.
    The help is much appreciated!

  • File Properties: Document Kind... Where Does it Come From?

    In Bridge's metadata subsection "File Properties", what exactly
    is "Document Kind"? Is it synonymous with the file's mime type?
    I've read through Adobe's XMP specification document (http://partners.adobe.com/public/developer/xmp/sdk/index.html) and I've seen many of Adobe's XMP schemas and data elements defined there, but I can't find where "Document Kind" is defined.
    The closest I come is page 39 where the XMP specification notes that the dublin core schema has a property called "format" with a value of "MIMEType". Is "dc:format" synonymous with "file properties: document kind"?
    Thanks for any help.

    dont mind but please tell me how do u communicate with computer ports...
    u can mail any material at [email protected]
    thanks

  • How to open and read pdf and micrsoft word (.doc) files or documents

    My problem is how to use my BB 9800 software version 6.0.0.546 to read/view pdf files and microsoft office documents. I have also bought documents to go from online and have installed it on my phone, but whenever i try to open it I receive a message that it is incompactible. Any help will be greatly appreciated.

    Hi, Sammy.
    Why not install a 3rd party PDF reader and Word Doc reader to help open and read pdf and micrsoft word (.doc) files or documents? You can google it and select one whose way of processing is simple and fast to help you with the related converting work.  It will be better if it is totally manual and can be customized by users according to our own favors. Remember to check its free trial package first if possible. I hope you success. Good luck.
    Best regards,
    Arron

Maybe you are looking for

  • ITunes & WMP freeze when importing 2nd CD

    Sorry if this is repetitive, but haven't got this figured out yet. At first I thought it was just iTunes, but i've found that WMP 11 also freezes. I am able to import an initial CD without a problem, but when I put in the next one to rip/import, my c

  • Why is my left audio output not working, when I have brand new headphones? (6th Generation Ipod Nano)

    I have recently been having problems with my Ipods audio output... The Left headphone puts out No sound at all... I am positive it is not my headphones... Any solutions or is it a harware problem?? Hope to hear Back ASAP thanks

  • Strange 9i behaviour on scheduled report

    Windows 2000 server, 9ias RL 2, patches applied according Note 215882.1. I have a report that used to run well in 6i (9ias RL1). It is a scheduled report. It takes current (system) month and year as parameters. In the After-Report-Trigger I run the s

  • SAX Parser Validation Bug or.....

    I'm using Oracle XML Parser 2.0.1.0.0 for C Programming. I found that the parser cannot provide validation function when it use the SAX parser. I try to use a different tag name between the data. It also can pass the parser example:<nam>John<name> As

  • PSCC does not recognize 3rd party plug-ins.

    How do I make my PSCC to recognize Topaz plug-ins?