Start a sound file from pdf

Using an iPad, is it possible to play a sound file from a link on a pdf page? If so, is it also possible to stop the file playing when that pdf page is exited?
Or should I be trying to do this with some other application?
Any suggestions gratefully received.
John

Hi!!
I guess I had more or less the same problem. Actually, if you want to specify the jar's classpath, you have to put it in the manifest file, or not use the -jar option. Take a look at:
http://forum.java.sun.com/thread.jsp?forum=22&thread=546391&tstart=0&trange=15
Once you have the command line, you can use Runtime.exec(...) to run your program.
I hope it helps...

Similar Messages

  • How to import and play sound file from mxl link?

    I need to load different sound files dependent on which link you previously clicked in my app, but cannot figure out how to call the link to the sound file from my mxl file:
    <carRace>http://www.unisux.org/zik-car/lamborghini-diablo-gtr_standing-start.mp3</carRace>
    Can someone tell me what I am doing wrong in this code?
    <fx:Script>
       <![CDATA[
                                            private var req:URLRequest;
                                            private var context:SoundLoaderContext = new SoundLoaderContext(1000);
                                            private var bCall:Sound;
                                            private var bSong:Sound;
      private function playSong():void
                                                      var urlSong:String = "{carRace}";
                                                      var request:URLRequest = new URLRequest(urlSong);
                                                      bSong = new Sound(request, context);
                                                      bSong.play();
      ]]>
    </fx:Script>
    because this code does work:
    <fx:Script>
       <![CDATA[
      private var req:URLRequest;
      private var context:SoundLoaderContext = new SoundLoaderContext(1000);
      private var bCall:Sound;
      private var bSong:Sound;
      private function playSong():void
      var urlSong:String = "http://www.unisux.org/zik-car/lamborghini-diablo-gtr_standing-start.mp3";
                                                      var request:URLRequest = new URLRequest(urlSong);
                                                      bSong = new Sound(request, context);
                                                      bSong.play();
      ]]>
    </fx:Script>

    Visit: http://www.tools.de/solaris/
    you will love sound/audio programming.... source available.

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

  • When I converted a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How can I solve this problem?

    When I tried to convert a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How do I solve this problem?  I don't know how to change it from Read Only.

    Dear Sara
    Thank you very much for sending the converted file.  Yes, I am able to edit it - that will be very useful to me and I appreciate your help.
    Referring to your previous message when you said you'd converted via Acrobat and not Acrobat.com, I'm converting via Acrobat.com because that's the only option that is shown (how do I convert via Acrobat? - perhaps that would be more successful).  I'm using the Export PDF website, and the OCR is enabled to "Recognize text in English UK".  However, I've just tried converting a different LPA pdf form, this time for Health & Welfare https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/245571/LPA114_He alth_welfare_LPA.pdf and again I have the same problem as before.  I've altered it from "Read only" and thought I'd then be able to enter text, but "Drawing Tools" is shown in the pane and I'm unable to enter anything onto the form - everything appears to be in images.  Also, the lettering on the heading of' page 1 has become jumbled, with the word "Public" overlaying the word "Guardian."  Any suggestions as to what it is I'm doing wrong would be welcome - I don't like to be beaten!
    Regards,
    Judith.

  • Can you please tell me what to do when I change a file from PDF to word and it comes up with headers

    Can you you please tell me what to do when I change a file from PDF to word and it comes up with headers and footers. I do not want the headers and footers but I need the information so that changes can be made in them  - There are over 80 pages in this document and every page had a header and footer. The document did not have any headers and footers when it was first typed out.

    Good day,
    Try converting the document to a .doc format instead of .docx. 
    If that doesn't resolve the issue, please share the file with us via the File Conversion Issue form.  Be sure to reference this forum thread in your description so we can circle back on the issue.
    Kind regards,
    David
    Adobe Systems

  • How to convert a file from pdf to txt in java

    hi,
    in my project ,I want to convert a file from pdf to txt using java api. If anyone
    have any idea about it plz help me.

    Google has several ideas. :)

  • I paid to convert a file from pdf to Word doc. and it is unintelligible. Why ?

    I paid to convert a file from pdf to Word and it is unintelligible. Why ?

    Hi M & B P,
    Please give the following a try:
    If you're converting via the ExportPDF website, log out, clear the cache, and then log back in.
    If you're converting from within Reader, choose Help > Check for Updates to make sure that you have the most current version.
    Please let us know how it goes. If you're still having problems, please let us know how you're converting, what browser you're using, and whether you're on Mac OS and Windows. We'll do some deeper digging if need be.
    Best,
    Sara

  • Read sound file from disk in Java

    Write a simple application that reads a sound file from disk (use a Clip). Play the sound backwards by arranging the byte arrays/frames in the reverse order.
    Please I need an explanation of every step.
    Get some Duke Dollars for your help.

    Hi,
    When execute this code, I see this: "[Ljava.io.File;@111f71".   
    How I can see the name of the File, and How I can run a program with one by one from the files reader in a parameter ???
      Thank's.
       Hervey P.                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Loading a sound file from the library to play it in one frame

    I am new to actionscript. I have a flash file with several frames. In each frame I need to play a sound file.
    I've added all the sounds to the library and done all the necessary steps to export for actionscript.
    Here's my code to play the sound in one frame.
    var sound1:Sound = new Cal10101();
    sound1.play();
    This works great to play the sound. I am using buttons to move to the next frame. When I click the button to move to the next frame, I need the sound from frame 1 to stop and a new sound which would be Cal10102 to start playing.
    How do I stop the sound from frame 1 from playing when I go to the next frame?
    Thanks,
    Steve

    what you should do is use:
    var sound1:Sound = new Cal10101();
    var sound1SC:SoundChannel = sound1.play();
    and before you goto the next frame execute:
    sound1SC.stop();
    // but you'll probably find it easier to use:
    SoundMixer.stopAll();
    before going to the next frame

  • What's the best solution for audio out of sound files from a MacBook Air to both an amplifier and to a subwoofer amplifier? I'm using the MBA to play sound files for worship services at our church.

    I have a MacBook Air (13", 1.7GHz, 8GB RAM, 500GB SSD) that I'll be using to play sound files (primarily organ and piano) for worship services at my church. We'll be using a QSC RMX2450 650 Watts/Channel amplifier with Community CPL-27 speakers and also a JBL SUB 250P powered subwoofer with its own amplifier. What's the best option for getting sound out from the Mac to both of these amplifiers? 

    if you work with own recorded sounds you might wanna have a music program where you want to work with samples, steinberg has got very good ones (so they say)... but their really really ( ²) expensive(that's why almost no one haves them), magix haves good ones too bu their more for 'unprofessional' use, ableton haves really good ones too and they're not to difficult to use (if you know a bit of those programs you learn very quickly) and if you don't get them, there is a sort of manual built in it which explains and lets you do things to start (basics)
    i hope this helped, btw stereo speakers are always better if you buy good ones (no pc speakers), but if you don't think you need them, don't buy them...
    so again, i hope you have some ideas now

  • When I start new project files from previous project are displayed

    WIN 8 PRE 9   PAL (UK) 
    I have PRE 9 since new and gave up with it as it contuinually crashed.   I am trying again but find when I open a new project all the old media files are displayed on the right.   I delete them and then drag and drop new ones in, but it still shows the old ones.   File names are the same as previous project but in a different drive and directory.   When I try to do anything it asks where are the old,deleted, files
    I thought with version 9 the problewms would be ironed out.   Apparently not.
    I have found DVD Styler Freeware is excellent and produced a simple DVD in about 5 minutes.   I may be doing something wrong in PRE9 but do I need to be Steven Speilberg to get a basic DVD burned?

    I believe you have two problems. One of misunderstanding, and one of having moved / deleted files from your hard disks.
    The misunderstanding:
    Premiere Elements consists of two separate but connected programs - the Editor with which you create your video projects and the Organizer which is a media manager into which you can import still images, videos, sounds and PDF files and then rank, organize, tag, make albums from and do many other activities.
    The Media pane in the Organize tab in the Premiere Elements Editor is a mini-view to the main Organizer program and will show you all the media on your computer that you have imported into it. This initial panel is NOT project specific. To see the media for the specific project you look to the Project pane in the Organizer tab.
    These pages from the manual at http://help.adobe.com/archive/en_US/premiereelements/9/premiereelements_9_help.pdf may be helpful:
    Moving/Deleting Files problem - the 'Where is ...' issue
    The Organizer is a database and records the where and name of media files that you have imported into it. So long as you use the folder and file management features of the Organizer, it keeps track of the files. But the moment you use Windows Explorer to move or delete files this does NOT update the Organizer database and it loses track of them.
    The Editor also keeps track of files used in Projects. If these files are moved or deleted, then the Editor will prompt for their location.
    Resolution
    For the Organizer issue use Find> All Missing Files (in the Elements Organizer, not the Editor) . After a while you will see a list of all files in the Organizer for which the originals are no longer in their recorded location. As it sounds as though you are not making use of the Organizer, the simplest way to resolve this is to select them all and press Delete. This will delete them from the catalog.
    For the Editor issue, put copies of the files back where the Editor is looking for them, then in the Project pane of the Organizer tab delete them from there. Then you can delete the copies from the hard disk.
    You might also find the Elements 9 Organizer manual of help  - http://help.adobe.com/en_US/ElementsOrganizer/9.0/Using/index.html
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Importing sound files from itunes to ipod

    I have used office for mac word notebook to record lecture audio, and then exported the sound file (.mp4) into itunes without any hassles. However, I haven't been able to drag them into my ipod when it's connected - any suggestions how I can do this?

    OK so let me ask the basic question you failed to include in your post.
    First question is how is your iPod set up with respect to syncing with iTunes? Is it set up to auto sync everything, auto sync only specific playlists, or is it set up to manually manage ?
    Let's start with that and go from there.
    Patrick

  • Starting exetutable java file from java code

    Hi I was wondering how I can start a executable java file from java code?
    thanks

    Hi Mkaveli,
    Yes, it's possible. If you have a JAR executable, you've just to call the main method of its starter class. For a simple executable class, just call its main method.
    This way :
    SomeStarter.main(null); // if there's no argumentSmall precision : the executable JAR or class must be specified in the classpath of your application.

  • I am using Adobe Reader with paid up service through May 2015.  When I attempt to convert a file from PDF or to PDF, I get the message "An error occured while trying to access the service.  What do I need to do to access the service paid for?

    I am using Adobe Reader with paid up service through May 2015.  When I attempt to convert a file either to PDF or from PDF, I get the error message, "An error occurred while trying to access the service".  What do I need to do to get access to the service I have paid for?

    Hi DeaconTomColorado,
    Please see "Error occurred when trying to access this service" when logging on to Acrobat.com.
    Adobe has just released an update to Adobe Reader, so if you're accessing the service via Reader, please let us know whether the update helps resolve the issue.
    Best,
    Sara

  • Using Acrobat XI MAC, unable to create Word file from PDF. Tried a simple PDF as well as a complex file. Neither can be created.

    Using Acrobat XI mac. Why can I not create a Word file from a PDF?  Tried some remedies offered online, i.e. convert to PDF X4:2008 then try to convert to the Word file. No go. Advise.

    Hello,
    I have tried 3 PDFs: one with only text -  created in Illustrator(CS5)  and saved as a PDF default, and the second which was a complex form of text and scanned images created in QuarkXpress and saved as a PDF for print purposes. The third file was a simple PDF offered online to solve problem.
    Each attempt was to create a Word file. Each received the same error message: Save as failed to process this document. No file was created.
    Thank you in advance.

Maybe you are looking for

  • Search for text and create report

    I have a text file that I need to search through, find specific elements and create a report based off of those findings. The text will have multiple paragraphs, each one needs to be reported on. I need to report on Router_XXXX Layer 1 Status Layer2

  • Windows Vista 64-bit download

    I have a tungsten T2 and need to send my info on the computer to this device. I see that Palm doesn't support this. They say to download the 6.2 and then try to connect with a Bluetooth device. I need to know how I set this up to do this. I do have a

  • How to zip up data from database and store as blob

    I would like to know how best to zip up retrieved data from the database and store it as a blob back on to the database. Thanks.

  • External (OS) authentication Oracle 10

    Hi everyone. I have an application which needs to authenticate with Oracle 10g using the operating system user and password. I started using ojdbc, but I kept getting an error because (I found out later) the thin client does not support null user or

  • Grey out the purchase group fields in SRM 7.0 ?

    Hi Experts, We have a requirement where in we need to grey out the purchasing group field in the item section of shopping cart screen . we are using SRM 7.0 portal. So that users cannot change the defualt pruchasing group. Is there a way where we can