Download only on Demand

Hi,
I building a web site well users are able to listen to audio files. The files are plain WAV files. In the HTML code, I have the following code to allow users to listen to the audio using the Quicktime plugin.
<object width="70%" title="Click here to hear the entire call." height="16">
      <param name="src" value="./player/makaba.wav">
      <param name="kioskmode" value="true">
      <param name="autoplay" value="false">
      <param name="controller" value="true">
      <param name="scale" value="tofit">
      <param name="cache" value="false">
      <embed type="video/quicktime" width="70%" height="16"
       src="./player/makaba.wav" kioskmode="true" autoplay="false"
      controller="true" scale="tofit" cache="false"
      pluginspage="http://www.apple.com/quicktime/download/"
      title="Click here to hear the entire file."  target="myself">
</object>
the problem I have is that I have many audios on the same page and I want them to be downloaded only when the user clicks on play. Instead, what is currently happening is that Quicktime downloads all filesas soon as the user hits my page.
is ther a way to change this behavior?
Thanks,
Klaus L'Imbecile.

http://discussions.apple.com/thread.jspa?messageID=6632675&#6632675
A "poster movie" style where an image file is "linked" to a QuickTime format for Web playback or in the stand alone QuickTime Player.

Similar Messages

  • How do I get an only on demand business package

    How do I download the business package for web editing as it says it is "only on demand" for download?
    Thanks
    Patrick

    HI Patrick
    Check out the following link
    https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode6-1&contenttype=url&content=https://Business package for web editing
    Regards
    Rajeev.

  • I purchased several songs and they are not showing up in my purchased file. Tried to go online and re-download them but ITunes is not giving me option to download only the ones I am missing. It *****

    I contacted Itunes and they told me to go to my account and re-download the songs. I opened my account and found the recent purchases, but they are not recent, there are 250 songs in that list, how come? And ITunes didn't give me an option to download only the ones I am missing. I don't want to download 250 duplicate songs.
    The Itunes updates are worst each time, BTW, Just starting to get sick and tired of Mac and Apple and Itunes and all this complicated stuff because of your paranoia of people "stealing" songs, but in fact, who is going to download songs ilegally is going to do it anyway, So all you are doing is to make it difficult for honest people who actually buy the songs and can't have them. I reported the problem several times and didn't get any more answers. Hope this works before I disoute the charges of the songs I don't have.

    Hi samfergs,
    I'm not sure how the Purchased Playlist decides what to put into it, but if you want to see all of your purchased items, then you need to go to the iTunes Store, and on the right side, under Quick Links, click on Purchased.
    Then, click on the Music (or whatever other purchased items tab you want to look at). If you are looking at Music, click on All Songs, and then on "All" or "Not on this Computer" (depending on what you want to see).
    Cheers,
    GB

  • Is it possible to download only Software Updates for multiple Macs.

    We currently have two 24inch iMacs, a 15 inch and a 17 inch MacBook Pro and a MacBook and only have limited download speeds in our regional area and only 1 Gb of data download allowance a month. Is there any way we can "download only" software updates on one computer and transfer the update to the other systems in Snow Leopard, like we did in Leopard. This does not appear to be possible in Snow Leopard. For us to upgrade all computers to 10.6.5, we would blow our data allowance for 2.5 months. And this does not take into account all the other updates that are available for installed Apple software. Any suggestions would be appreciated.
    Robb.

    robb13 wrote:
    Is there any way we can "download only" software updates on one computer and transfer the update to the other systems
    well, one way of doing that is to get the stand alone installer packages from [here|http://support.apple.com/downloads>, then either mount the .dmg's from the other Mac(s) or copy the .dmg's over the network.
    i actually prefer this over software download - i usually install new software while booted into _*safe mode*_.
    JGG

  • How to download only some fields(dynamically) from alv grid layouts

    I have ALV grid list.
    I have layouts for selecting sets of fields dynamically.
    If I select a particular layout, I want to download only those fields into an Excel sheet.
    If I select another layout, I want to download only fields of that layout , into an Excel sheet.
    Can u plz write examples.
    Narendra

    Hello ,
    Here it is.
      FIELD-SYMBOLS <FS> TYPE ANY.
      DATA: GR_ATTACHMENT TYPE Z48S3_ATTACHMENT,
            GT_ATTACHMENT TYPE Z48S3_ATTACHMENT_TAB,
            L_F_TITLE     TYPE SO_OBJ_DES,
            L_R_FIELDCAT  LIKE LINE OF GT_FIELDCAT,
            L_F_FIELD     LIKE L_R_FIELDCAT-FIELDNAME,
            L_F_EMAILID   TYPE Z48S3_RECEIVER,
            L_F_FIRST     TYPE C.
      IF SY-SYSID EQ G_C_DEV_SYSTEM OR
         SY-SYSID EQ G_C_QUA_SYSTEM.
        CONCATENATE SY-SYSID '/' SY-MANDT ':' INTO L_F_TITLE.
        CONDENSE L_F_TITLE.
        CONCATENATE L_F_TITLE SY-TITLE INTO L_F_TITLE SEPARATED BY SPACE.
      ELSE.
        L_F_TITLE = SY-TITLE.
      ENDIF.
      G_R_VARIANT-REPORT = SY-REPID.
      G_R_VARIANT-VARIANT = P_VARIAN.
      CALL FUNCTION 'REUSE_ALV_VARIANT_SELECT'
           EXPORTING
                I_DIALOG            = 'N'
                I_USER_SPECIFIC     = 'A'
                I_DEFAULT           = 'X'
                IT_DEFAULT_FIELDCAT = G_T_FIELDCAT
                I_LAYOUT            = GR_LAYOUT
           IMPORTING
                ET_FIELDCAT         = G_T_FIELDCAT
                ES_LAYOUT           = GR_LAYOUT
           CHANGING
                CS_VARIANT          = G_R_VARIANT
           EXCEPTIONS
                ERROR_MESSAGE       = 4
                OTHERS              = 4.
      SORT G_T_FIELDCAT BY COL_POS.
      PERFORM CREATE_EXCEL_ATTM_HEADING_ROW TABLES GT_ATTACHMENT
                                                   G_T_FIELDCAT.
      LOOP AT G_T_ALVLIST.
        L_F_FIRST = 'X'.
        LOOP AT G_T_FIELDCAT INTO L_R_FIELDCAT WHERE NO_OUT IS INITIAL.
          CLEAR GR_ATTACHMENT-XNEWLINE.
          IF NOT L_F_FIRST IS INITIAL.
            GR_ATTACHMENT-XNEWLINE = 'X'.
            CLEAR L_F_FIRST.
          ENDIF.
          CLEAR L_F_FIELD.
          CONCATENATE 'G_T_ALVLIST-' L_R_FIELDCAT-FIELDNAME
                 INTO L_F_FIELD.
          CONDENSE L_F_FIELD.
          ASSIGN (L_F_FIELD) TO <FS>.
          WRITE <FS> TO GR_ATTACHMENT-FIELDVALUE.
          UNASSIGN <FS>.
          APPEND GR_ATTACHMENT TO GT_ATTACHMENT.
        ENDLOOP.
      ENDLOOP.
    Regards,
    Vasanth

  • I have a hard time understanding why I can't contact support about YOUR problem. I plugged my iPhone into my pc. iTunes came up. It said there was an update available for the phone. I accepted that. Clicked on the "download only" because I didn't have the

    I have a hard time understanding why I can't contact support about THEIR problem. I plugged my iPhone into my pc. iTunes came up. It said there was an update available for the phone. I accepted that. Clicked on the "download only" because I didn't have the time to install it at that point. It downloaded but didn't stop. It continued to the 'backing up your iPhone' segment then froze. I waited at least an hour with no change. Finally I unplugged my phone..iTunes wasn't responding.I rebooted my pc then tried the same thing again. Same outcome even though I let it "Back Up" for 7-8 hrs while I slept. Same Story...............         iTunes 10.4.0.80 is the software I'm using. When my phone is 'plugged' in what I see on it's face is "Sync in Progress".....for hours!

    Error 1611
    This error typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
    Synced media like apps and music are not included in the iPod backup that iTunes makes. You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Apple Mail downloads only one mail at a time...

    Hi Everybody,
    My PowerBook runs on Tiger 10.4.11. And I have Apple Mail version 2.1.3, which I have configured to my gmail account.
    Just a few days back I noticed something very peculiar about the download habit of Apple Mail which now downloads only one mail (this has started a few weeks back). Irrespective of how many mails there are on my gmail, when I press 'get mail' button, it connects to my gmail account and shows & downloads only one mail(the first in the row). Now, when I figured out the problem I have to press the 'get mail' button again and again till there are no more mails to download. It actually downloads all mails based on the receipt time, but only one at a time.
    Does anyone here have any idea what this could be. I really look forward to sorting this out.
    Thanks in advance
    Malaya

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.
    May even need to do an Archive and Install if you have room on the HD...
    http://docs.info.apple.com/article.html?artnum=107120
    I only use Software Update to see what is needed, then get them for real via...
    http://www.apple.com/support/downloads/
    That way I can wait a week or so, check the forums for potential problems, and get Permissions & such in order before installing.

  • I can no longer receive short videos in iMessage after downloading iOs7 on my iPhone 4 it says "Downloading", only 4.3MB in size

    I can no longer receive short videos in iMessage after downloading iOs7 on my iPhone 4 it says "Downloading", only 4.3MB in size

    I had the same problem today and was able to resolve it without having to do a restore or reset. The problem had something to do with my mail accounts. The upgrade reset my mail settings, switching both my gmail and my .mac mail to "archive all mail". I went into the General Settings, disabled that setting, and resynced the phone. The "other" storage allottment dropped back down to less than a gig.
    Before you restore or reset, I would try that first.

  • I am running Windows 7  and trying to update to iTunes version 10.5 (from version 10.3.1.55) and I keep getting the following error message, 'Error occurred while installing the updates. If the problem persists, choose Tools Download Only and try instal

    I am running Windows 7 home edition and trying to update to iTunes version 10.5 (from version 10.3.1.55) and I keep getting the following error message, ‘Error occurred while installing the updates. If the problem persists, choose Tools > Download Only and try installing manually’ which I do only to have the same error message pop up.

    Try updating your iTunes using an iTunesSetup.exe (or iTunes64Setup.exe) installer file downloaded from the Apple website:
    http://www.apple.com/itunes/download/

  • How do I install latest version of iTunes when I keep getting an error message to go to Tools, Download only, then Install manually??

    How do i install latest version of iTunes when I keep getting an error message to go to Tools, Download only, and install manually??

    Hi Moerdesign,
    Did you downloaded and installed Photoshop and Illustrator CS6 through Creative Cloud.
    After uninstalled them, Creative Cloud saying applications are "Up to Date" when not installed.
    If this is the case then please perform the steps given in the help document.
    http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html
    Please let me know if this is not the case.
    Screenshot of the problem would be great help.
    Regards,
    Sumit Singh

  • Trying to update iTunes and I get the error - "errors occured while installing the updates. If the problem persists, choose Tools Download only and try installing manually". Currently on version 10.5.3.3 trying to update to 11.0.2 on a Windows 7 64-bit

    Trying to update iTunes and I get the error - "errors occured while installing the updates. If the problem persists, choose Tools > Download only and try installing manually". Currently on version 10.5.3.3 trying to update to 11.0.2 on a Windows 7 64-bit.

    Try updating your iTunes using an iTunesSetup.exe (or iTunes64Setup.exe) installer file downloaded from the Apple website:
    http://www.apple.com/itunes/download/

  • I Just updated ipod software 4.3.5 but i clicked download only and how i cant find an option to apply it. The download window closed on my itunes and am on windows 7 and cant seems to find where itunes stores its updates to manually apply it either.

    So basically my question is how do i apply this update? I've been trying for days but it'd would download and then give an error code when processeing and die on me. So i finally switched of my anti virus and it downloaded and processed fine but now because i was worried the download wont complete i clicked on "download only" option and once the download was done, the window dissapeared and i cant find an option to apply the software update! HELP!

    With the iPod connected to the computer, what happens when you click on the update button in the Summary pane of iTunes?  That is all I had to do when I selected download only.

  • I get an error message after downloading the latest update. It says to download only and then to install manually. How do I fix this?

    I get an error message after downloading the latest itunes update.  It says to download only and then to manually install. How do I do this?  Or, is there some way to make the download work?  Thank you.

    The message is 'errors have occurred, go to tools>download only and try installing manually'.  BTW, I am using Google Chrome.

  • I cannot update  iTunes because when I run the Apple Software Updater, it says "'iTunes   QuickTime' has an invalid signature. It will not be installed." If I try downloading only it says "'iTunes cannot update.  Invalid signature.

    I cannot update  iTunes because when I run the Apple Software Updater, it says "'iTunes + QuickTime' has an invalid signature. It will not be installed." If I try downloading only it says "'iTunes cannot update.  Invalid signature.  Can someone help?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes for Windows forums.
    Regards.

  • HT5048 Hi, 1.34 is too much for me ... can I deselect Catalan, Croatian, Greek, Hebrew, Romanian, Slovak, Thai, and Ukrainian languages and download only the OS with less GB?

    Hi,
    1.34 GB is too much for me to download ...
    Can I deselect Catalan, Croatian, Greek, Hebrew, Romanian, Slovak, Thai, and Ukrainian languages and download only the OS with less GB?
    I tried several times but not successfull ...
    please help me to update my OS.
    thanks

    Are you asking why those non-ASCII characters are printing incorrectly? It's because the console is still treating the output as ASCII. The JVM is encoding each character as two bytes according to the UTF-8 spec, but the console is treating each byte as a separate, ASCII-encoded character. Changing the locale of the OS or the "file.encoding" property of the JVM doesn't affect the behavior of the console.
    When I run your code on my WinXP machine (leaving "file.encoding" at its default setting), I get this output: // __ System.getProperty("file.encoding"): |Cp1252|
    // __ |en_US|
    // __ |225|�|
    // __ |233|&#920;|
    // __ |237|&#966;|
    // __ |243|&#8804;|
    // __ |250|�|
    // __ |252|&#8319;|
    // __ |241|�|
    // __ |191|&#9488;|
    // __ |161|�|
    // __ |251|&#8730;|
    // __ |224|&#945;|
    // __ |223|&#9600;|
    // __ |232|&#934;|
    // __ |235|&#948;| The JVM is outputting the text as cp1252, but the console is treating it as cp437, its default codepage (encoding). When I change the console's encoding with the command "CHCP 1252" and run the code again, I get: // __ System.getProperty("file.encoding"): |Cp1252|
    // __ |en_US|
    // __ |225|�|
    // __ |233|�|
    // __ |237|�|
    // __ |243|�|
    // __ |250|�|
    // __ |252|�|
    // __ |241|�|
    // __ |191|�|
    // __ |161|�|
    // __ |251|�|
    // __ |224|�|
    // __ |223|�|
    // __ |232|�|
    // __ |235|�| I don't know if it's possible to change the encoding of the console in your OS, but that's not a showstopper. Just write the output to a file, then use a reasonably capable text editor to view the result. And there's no need to change all those OS/JVM settings; just specify the encoding when you open the file for writing: FileOutputStream fos = new FileOutputStream("out.txt");
    OutputStreamWriter osw = new OutputStreamWriter(fos, "UTF-8");

Maybe you are looking for