Initiate a page turn once media has played.

I posted this question on the Acrobat forum but was advised to pose it on the scripts forum. So being new to Acrobat I have to say I am even less familiar with scripts.
I have a multimedia document which contains a video clip on some pages and audio clips on others.
I would like to initiate a page turn or page advance once the video or audio clip has finished playing. Is this possible without compiling first in PPT and Adobe presenter?
I am using Acrobat 9 pro on Windows XP platform.
Many thanks

Did you ever figure this out? I would love to know.

Similar Messages

  • Can Firefox automatically return to a file with a media link after the media has played?

    WIndows XP, Firefox 33.11.
    html documents have lines of dialogue text and a link to the audio of each dialogue line.
    The audio is sometimes mp3, sometimes wav.
    Clicking on a link plays the audio OK, however when the audio finishes, one has to manually
    click back to the document. This is inconvenient when sifting through numerous lines of dialogue.
    Is there a way to automatically re-display the document as soon as the audio finishes playing.

    HI sayang,
    I understand that opening an audio file in the same tab disrupts the viewing of the previous website you were browsing.
    There is no feature built into Firefox that does this, however there are some features that you can try to have an alternative:
    For example, opening the audio file in a new tab by right clicking on the link is a possibility. Also using the hot key Alt + Enter when clicking on the media url.

  • Play movie once sound has played...

    Hi,
    I have a basic flash movie with a graphic that fades in to a
    keyframe. At this point the movie stops and a sound plays through
    actionscript coding (shown below). How do I set the movie to
    continue once the sound clip has finished? At the moment the movie
    continues once the audio starts playing.
    stop();
    //Play Internal Sound Behavior
    if(_global.Behaviors == null)_global.Behaviors = {};
    if(_global.Behaviors.Sound == null)_global.Behaviors.Sound =
    if(typeof this.createEmptyMovieClip == 'undefined'){
    this._parent.createEmptyMovieClip('BS_daddy',new
    Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000)
    _global.Behaviors.Sound.daddy = new
    Sound(this._parent.BS_daddy);
    } else {
    this.createEmptyMovieClip('_daddy_',new
    Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000)
    _global.Behaviors.Sound.daddy = new Sound(this.BS_daddy);
    _global.Behaviors.Sound.daddy.attachSound("daddy");
    if (true) {
    _global.Behaviors.Sound.daddy.start(0,1);
    //End Behavior
    play();
    Thanks

    I tried placing;
    Sound.daddy.onSoundComplete = function() {
    .play();
    Afterwards but the following error is thrown up when I play
    back "There is no property with the name 'daddy'." Any
    ideas???

  • Limitations of indesign flash page turner

    Hello,
    We have a company newsletter that we wish to launch digitally as a document that can be:
    a) be viewed as spreads
    b) incorporate a realistic page turning action
    c) has a zoom function.
    InDesign has a function that will turn the PDF into a Flash file where the page turning function works. Unfortunately, there is no zooming option, and when viewers click on the page (the text is too small in this format), it opens up a PDF of that particular side of the spread, defeating the purpose of a special format where you can turn pages realistically. There is a program called Page Turn Pro which incorporates all of these functions, but it is very expensive, at hundreds of dollars per year. Are there any other alternatives out there?
    Thanks,
    Neal

    eDocker, described here. Don't expect a free solution!
    http://indesignsecrets.com/adding-zoom-and-print-to-indesign-swf-files.php

  • Placed mp3 stops playing on page turn in exported pdf

    Hi, I placed a sound file in an indesign file, left the 'media' setting 'stop on page turn' unchecked, and still, the file stops when i turn the page in the pdf. I have one button controling the play (mouse release action) and stop (mouseover action) of the file.

    hi steve, you're right; from what i've found, the only way that an embedded audio or movie file will keep playing is if you float a controller. The problem there however is that you have to use the controller; that can be dealt with in pdf, but not from indesign, and if one has a lot of media files in their interactive pdf, that's a lot of work after export. from within indesign, that controller can be made fairly small, and it ends up sitting in the top right corner of adobe reader once a media file is clicked; and it only goes away if you close it; and if you open other media files, the contollers start piling up.
    what i ended up figuring out as an alternative was that if you export to swf instead of pdf, for some reason the mp3 (i only tried mp3 in swf) keeps playing on page turn (with no controller); and the nice thing about swf is that you can get 'curl' page transitions, and since it opens as an html it's ready to go online.
    the document has buttons that upon being clicked, play the file (with nothing popping up); and the mouseover stops the file; and click again plays it.
    one thing that would be nice is if one audio file could be placed that buttons on other pages could access cue points within; unfortunately; buttons can only access audio files that have been placed on the page. so instead of having 1 file, accessed at different navigation points, you have 50 files cut from the 1, each with their own button.

  • Creating a PDF with automatic page turn after playing a movie

    Is there anyway to create a pdf where pages get turned automatically after a movie has been played? Simply put, I need to create a slideshow with both movies and images, and with an automatic page turn every x seconds the movies might be either too short or too long.
    Any help will be greatly apreciated!
    best, Jacob

    Did you ever figure this out? I would love to know.

  • Epub3 - possible to tweak code to allow mp3 to play across page turns?

    Hi i have an epub3 that i need the mp3 to be able to continue playing when the page turns.
    any ideas?
    here is code!
    function RegisterInteractiveHandlers() {
    RegisterButtonEventHandlers();
    ProcessAnimations();
    ProcessMedia();
    function ProcessMedia() {
    var oFrame = document.getElementsByClassName("_idGenMedia");
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-mediaOnPageLoadActions");
    if(actions) {
    var descendants = oFrame[i].getElementsByTagName('*');
    for(var j = 0; j < descendants.length; j++) {
    var e = descendants[j];
    var tagName = e.tagName.toLowerCase();
    if(tagName == 'video' || tagName == 'audio') {
    if(e.paused) {
    var selfContainerID = e.id;
    eval(actions);
    function ProcessAnimations() {
      var oFrame = document.getElementsByClassName("_idGenAnimation");
      for (var i = 0; i < oFrame.length; i++) {
      var actions = oFrame[i].getAttribute("data-animationOnPageLoadActions");
      if(actions) {
      var selfContainerID = oFrame[i].id
      eval(actions);
      var cn = oFrame[i].className;
      if(cn.indexOf("_idGenCurrentState") != -1) {
      var actions = oFrame[i].getAttribute("data-animationOnStateLoadActions");
      if(actions) {
      var selfContainerID = oFrame[i].id
      eval(actions);
      actions = oFrame[i].getAttribute("data-animationOnSelfClickActions");
      if(actions) {
      oFrame[i].addEventListener("touchend", function(event) { onTouchEndForAnimations(this, event) }, false);
      oFrame[i].addEventListener("mouseup", function(event) { onMouseUpForAnimations(this, event) }, false);
      actions = oFrame[i].getAttribute("data-animationOnSelfRolloverActions");
      if(actions) {
      oFrame[i].addEventListener("mouseover", function(event) { onMouseOverForAnimations(this, event) }, false);
      document.body.addEventListener("touchend", function(event) { onPageTouchEndForAnimations(this, event) }, false);
      document.body.addEventListener("mouseup", function(event) { onPageMouseUpForAnimations(this, event) }, false);
    function onPageTouchEndForAnimations(element, event) {
    var oFrame = document.getElementsByClassName("_idGenAnimation");
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-animationOnPageClickActions");
    if(actions) {
    var selfContainerID = oFrame[i].id;
    eval(actions);
    event.stopPropagation();
    function onPageMouseUpForAnimations(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    var oFrame = document.getElementsByClassName("_idGenAnimation");
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-animationOnPageClickActions");
    if(actions) {
    var selfContainerID = oFrame[i].id;
    eval(actions);
    event.stopPropagation();
    function onTouchEndForAnimations(element, event) {
    var classID = element.getAttribute("data-animationObjectType");
    var oFrame = document.getElementsByClassName(classID);
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-animationOnSelfClickActions");
    if(actions) {
    var selfContainerID = oFrame[i].id;
    eval(actions);
    event.stopPropagation();
    function onMouseUpForAnimations(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    var classID = element.getAttribute("data-animationObjectType");
    var oFrame = document.getElementsByClassName(classID);
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-animationOnSelfClickActions");
    if(actions) {
    var selfContainerID = oFrame[i].id;
    eval(actions);
    event.stopPropagation();
    function onMouseOverForAnimations(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    var animationClassName = element.getAttribute("data-idGenAnimationClass");
    var cn = element.className;
    if (cn.indexOf(animationClassName) != -1 ) {
    return;
    var classID = element.getAttribute("data-animationObjectType");
    var oFrame = document.getElementsByClassName(classID);
    for (var i = 0; i < oFrame.length; i++) {
    var actions = oFrame[i].getAttribute("data-animationOnSelfRolloverActions");
    if(actions) {
    var selfContainerID = oFrame[i].id;
    eval(actions);
    event.stopPropagation();
    function RegisterButtonEventHandlers() {
    var oFrame = document.getElementsByClassName("_idGenButton");
    for (var i = 0; i < oFrame.length; i++) {
    oFrame[i].addEventListener("touchstart", function(event) { onTouchStart(this, event) }, false);
    oFrame[i].addEventListener("touchend", function(event) { onTouchEnd(this, event) }, false);
    oFrame[i].addEventListener("mousedown", function(event) { onMouseDown(this, event) }, false);
    oFrame[i].addEventListener("mouseup", function(event) { onMouseUp(this, event) }, false);
    oFrame[i].addEventListener("mouseover", function(event) { onMouseOver(this, event) }, false);
    oFrame[i].addEventListener("mouseout", function(event) { onMouseOut(this, event) }, false);
    function hasAppearance(element, appearance) {
    var childArray = element.children;
    for(var i=0; i< childArray.length; i++) {
    var cn = childArray[i].className;
    if(cn.indexOf(appearance) != -1) {
    return true;
    return false;
    function isDescendantOf(child, parent) {
    var current = child;
    while(current) {
    if(current == parent)
    return true;
    current = current.parentNode;
    return false;
    function addClass(element,classname) {
    var cn = element.className;
    if (cn.indexOf(classname) != -1 ) {
    return;
    if (cn != '') {
    classname = ' ' + classname;
    element.className = cn + classname;
    function removeClass(element, classname) {
    var cn = element.className;
    var rxp = new RegExp("\\s?\\b" + classname + "\\b", "g");
    cn = cn.replace(rxp, '');
    element.className = cn;
    function onMouseDown(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    if (hasAppearance(element, '_idGen-Appearance-Click')) {
    addClass(element, '_idGenStateClick');
    var actions = element.getAttribute("data-clickactions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onMouseUp(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    removeClass(element, '_idGenStateClick');
    var actions = element.getAttribute("data-releaseactions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onMouseOver(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    if (event.relatedTarget) {
    if(isDescendantOf(event.relatedTarget, element)) return;
    if (hasAppearance(element, '_idGen-Appearance-Rollover')) {
    addClass(element, '_idGenStateHover');
    var actions = element.getAttribute("data-rolloveractions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onMouseOut(element, event) {
    var is_touch_device = 'ontouchstart' in document.documentElement;
    if (is_touch_device) return;
    if (event.relatedTarget) {
    if(isDescendantOf(event.relatedTarget, element)) return;
    removeClass(element, '_idGenStateHover');
    removeClass(element, '_idGenStateClick');
    var actions = element.getAttribute("data-rolloffactions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onTouchStart(element, event) {
      event.preventDefault();
    if (hasAppearance(element, '_idGen-Appearance-Click')) {
    addClass(element, '_idGenStateClick');
    var actions = element.getAttribute("data-clickactions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onTouchEnd(element, event) {
      event.preventDefault();
    removeClass(element, '_idGenStateClick');
    var actions = element.getAttribute("data-releaseactions");
    if(actions) {
    eval(actions);
    event.stopPropagation();
    function onHide(id) {
    var element=document.getElementById(id);
    handleMSOStateParentOfObject(element);
    addClass(element, '_idGenStateHide');
    function onShow(id) {
    var element=document.getElementById(id);
    handleMSOStateParentOfObject(element);
    removeClass(element, '_idGenStateHide');
    function handleMSOStateParentOfObject(element) {
    var prev = element;
    var parent = prev.parentNode;
    var found;
    while(parent && !found) {
    var cn = parent.className;
    if(cn && cn.indexOf('_idGenMSO') != -1)
    found = true;
    else
    prev = parent;
    parent = prev.parentNode;
    if(found) {
    var nextState = prev;
    var mso_states = parent.children;
    for (var i = 0, state; state = mso_states[i]; i++) {
    var cn = state.className;
    if (cn.indexOf('_idGenCurrentState') != -1 ) {
    handleMediaInMSOState(state);
    removeClass(state, '_idGenCurrentState');
    addClass(state, '_idGenStateHide');
    removeClass(nextState, '_idGenStateHide');
    addClass(nextState, '_idGenCurrentState');
    return;
    function onMediaStart(id, time, startDelay) {
    setTimeout(function() { onStart(id, time) }, startDelay*1000);
    function onStart(id, time) {
    var myMedia= document.getElementById(id);
    handleMSOStateParentOfObject(myMedia);
    myMedia.currentTime = time;
    myMedia.play();
    function onMediaStop(id, startDelay) {
    setTimeout(function() { onStop(id) }, startDelay*1000);
    function onStop(id) {
    var myMedia= document.getElementById(id);
    if(!(myMedia.paused)) {
    myMedia.currentTime = 0;
    myMedia.pause();
    function onMediaPause(id, startDelay) {
    setTimeout(function() { onPause(id) }, startDelay*1000);
    function onPause(id) {
    var myMedia= document.getElementById(id);
    if(!(myMedia.paused)) {
    myMedia.pause();
    function onMediaResume(id, startDelay) {
    setTimeout(function() { onResume(id) }, startDelay*1000);
    function onResume(id) {
    var myMedia= document.getElementById(id);
    if(myMedia.paused) {
    myMedia.play();
    function handleMediaInMSOState(element) {
    /*This function is used to stop playing media present in current state when we move from current state to another state.*/
    var descendants = element.getElementsByTagName('*');
    for(var i = 0; i < descendants.length; i++) {
    var e = descendants[i];
    var tagName = e.tagName.toLowerCase();
    if(tagName == 'video' || tagName == 'audio') {
    if(!(e.paused)) {
    e.currentTime = 0;
    e.pause();
    function playAnimatedElement(animated_element, className, hideAfterAnimating) {
    removeClass(animated_element, '_idGenStateHide');
    removeClass(animated_element, '_idGenPauseAnimation');
    var cn = animated_element.className;
    var previousAnimationClass = animated_element.getAttribute("data-idGenAnimationClass");
    if ((cn.indexOf(className) == -1) && (cn.indexOf(previousAnimationClass) == -1)) {
    addClass(animated_element, className);
    animated_element.setAttribute("data-idGenAnimationClass", className);
    else {
    removeClass(animated_element, className);
    removeClass(animated_element, previousAnimationClass);
    animated_element.removeEventListener("webkitAnimationEnd", function(evt) { onPlayAnimationEnd(this, hideAfterAnimating, evt) });
    animated_element.removeEventListener("animationend", function(evt) { onPlayAnimationEnd(this, hideAfterAnimating, evt) });
    setTimeout(function() {addClass(animated_element, className)}, 10);
    animated_element.setAttribute("data-idGenAnimationClass", className);
    animated_element.addEventListener("webkitAnimationEnd", function(evt) { onPlayAnimationEnd(this, hideAfterAnimating, evt) });
    animated_element.addEventListener("animationend", function(evt) { onPlayAnimationEnd(this, hideAfterAnimating, evt) });
    function playAnimation(animation_id, className, startDelay, hideAfterAnimating) {
    var animated_element = document.getElementById(animation_id);
    handleMSOStateParentOfObject(animated_element);
    var startClassName = animated_element.getAttribute("data-idGenAnimationStartState");
    var endClassName = animated_element.getAttribute("data-idGenAnimationEndState");
    removeClass(animated_element, endClassName);
    addClass(animated_element, startClassName);
    setTimeout(function(){playAnimatedElement(animated_element, className, hideAfterAnimating)}, startDelay*1000);
    function onPlayAnimationEnd(element, hideAfterAnimating, evt) {
    var className = element.getAttribute("data-idGenAnimationClass");
    var startClassName = element.getAttribute("data-idGenAnimationStartState");
    var endClassName = element.getAttribute("data-idGenAnimationEndState");
    removeClass(element, className);
    removeClass(element, startClassName);
    addClass(element, endClassName);
    if(hideAfterAnimating)
    addClass(element, '_idGenStateHide');
    evt.stopPropagation();
    function pauseAnimation(animation_id, time) {
    var animated_element = document.getElementById(animation_id);
    setTimeout(function() {addClass(animated_element, '_idGenPauseAnimation')}, time*1000);
    function resumeAnimation(animation_id, time) {
    var animated_element = document.getElementById(animation_id);
    setTimeout(function() {removeClass(animated_element, '_idGenPauseAnimation')}, time*1000);
    function reverseAnimatedElement(animated_element, className) {
    removeClass(animated_element, '_idGenStateHide');
    removeClass(animated_element, '_idGenPauseAnimation');
    var cn = animated_element.className;
    var previousAnimationClass = animated_element.getAttribute("data-idGenAnimationClass");
    if ((cn.indexOf(className) == -1) && (cn.indexOf(previousAnimationClass) == -1)) {
    addClass(animated_element, className);
    animated_element.setAttribute("data-idGenAnimationClass", className);
    else {
    removeClass(animated_element, className);
    removeClass(animated_element, previousAnimationClass);
    animated_element.removeEventListener("webkitAnimationEnd", function() { onReverseAnimationEnd(this) });
    animated_element.removeEventListener("animationend", function() { onReverseAnimationEnd(this) });
    setTimeout(function() {addClass(animated_element, className)}, 10);
    animated_element.setAttribute("data-idGenAnimationClass", className);
    animated_element.addEventListener("webkitAnimationEnd", function() { onReverseAnimationEnd(this) });
    animated_element.addEventListener("animationend", function() { onReverseAnimationEnd(this) });
    function reverseAnimation(animation_id, className, startDelay) {
    var animated_element = document.getElementById(animation_id);
    handleMSOStateParentOfObject(animated_element);
    var startClassName = animated_element.getAttribute("data-idGenAnimationStartState");
    var endClassName = animated_element.getAttribute("data-idGenAnimationEndState");
    removeClass(animated_element, startClassName);
    addClass(animated_element, endClassName);
    setTimeout(function(){reverseAnimatedElement(animated_element, className)}, startDelay*1000);
    function onReverseAnimationEnd(element) {
    var className = element.getAttribute("data-idGenAnimationClass");
    var startClassName = element.getAttribute("data-idGenAnimationStartState");
    var endClassName = element.getAttribute("data-idGenAnimationEndState");
    removeClass(element, className);
    removeClass(element, endClassName);
    addClass(element, startClassName);

    You might be able to get here, but I'm doubtful. There should be forums more oriented to coders. You might look on the MobileRead Forums:
    MobileRead Forums

  • HT3209 I rented a movie on Itunes and it downloaded. Now it will not play. When i go to videos and try to play it the whole page turns black.

    I rented a movie on Itunes and it downloaded but the movie will not play. When i go to videos to try to watch the video the page turns black

    Quit the videos app completely.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. Try the videos app again.
    If that doesn't work, reboot the iPad. Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    If that fails, try this. Swipe to the right from your first home screen to get to the iPad Spotlight search. Type in the name of rhe movie in the field at the top. When the movie appears in the search - tap on it and it should start to play. Let it play for a minute or so - hit done - go back to videos app and see if all is OK.
    But remember, once you start to play the rental, the timer starts.

  • Whenever I try to play gaia, the page turns white and reloads.. Help?

    Okay, here's what happens.
    - I go to the Gaia Homepage
    - I log in.
    - IT takes me to the My Gaia Page and it's fine for 2 seconds.
    - The page turns white and it reloads forever, and never shows the gaia page again.
    ... I don't know what's going on, and this has been happening for a while now... help??!
    == URL of affected sites ==
    http://www.gaiaonline.com

    oh, and at the bottom left hand corner it says "waiting on www.google-analytics.com...."

  • MP3 to continue playing through page turn  - epub3

    Hi guys!
    Can anyone help? My Mp3 stops playing on page turn in epub3, is there any way to:
    A) have the mp3 continue playing through page turns
    and
    B) stop an mp3 playing when another mp3 on another page is played?
    thanks!

    Thanks, shame about A) in regards to B) I have managed to do this when 2 mp3's are on the same page, btu not when the other mp3 is on a different page...
    Any other ideas?
    Kind regards,
    James Lightfoot07952710704

  • Audio stops playing on page turn

    hello,
    Hope any of you can help me. I added a audio file to a page, in a chapter. I want to the audio to start playing when the page is opened, I selected the "play on page load" option, BUT I also want to the audio to continue playing whilst I flip through the other pages in the chapter. For some mysterouis reason, the audio stops when I flip to the next page. The option "stop on page turn" is not selected.
    Does anyone have a workaround to get this fixed? I need it really badly.
    Thank you for your help!
    Marl

    Thank you for your response Bob!
    I just found out, by accident!, that when you keep smooth scrolling on it works! -- The audio keeps playing just fine when browsing throuhg the next pages. Now the only thing I have to find out is how I can keep the smooth scrolling option in horizontal ONLY.

  • I set up the primary language to English while initializing the MBP, but at the log-in page, the language appears to be a foreign language I don't use, after restart, the language turned into English, has anyone come across the same problem

    I set up the primary language to English while initializing the MBP, but at the log-in page, the language appears to be a foreign language I don't use, after restart, the language turned into English, has anyone come across the same problem, and is that normal?

    i have a similar problem...It seems to be tied to my guest account. It is set to Japanese as primary language but my main login is set to English. I tried changing the guest account to english but the change won't hold. It always reverts to Japanese.

  • Why can't JavaFx media player play .m4a file on windows xp sp3?

    Hi All
    Why can't JavaFx media player play .m4a file on windows xp sp3? I got an exception that 'Decoder is not available' when I played m4a file on windows xp sp3(it didn't work on vista either), but it works fine on windows 7 , so I guess Javafx media player needs some system dependencies or resources when it plays media files, do you have any suggestions for this ?
    Edited by: imtoocute on Aug 22, 2012 11:18 AM
    Edited by: imtoocute on Aug 22, 2012 11:19 AM
    Edited by: imtoocute on Aug 22, 2012 3:53 PM

    To allow playback on Windows XP, you need to install the correct software in addition to JavaFX.
    Once the system has been upgraded to meet the minimum requirements for playback of a particular type of video encoding, then playback should work fine.
    See the JavaFX Media portion of the JavaFX 2.2 System Requirements:
    http://docs.oracle.com/javafx/2/system_requirements_2-2/jfxpub-system_requirements_2-2.htm
    Note, m4a is just a container file and data streams inside the container format need to match a supported JavaFX format for playback to work:
    http://docs.oracle.com/javafx/2/api/javafx/scene/media/package-summary.html
    Some approaches you could take:
    - additionally encode the media in VP6 format and fallback to VP6 playback if H.264 playback fails.
    - use a 3rd party player like VLC.
    - don't bother supporting Windows XP video playback.
    - direct a browser to a divx install page if playback fails (http://www.divx.com/).

  • Why does my screen turn black when I play iTunes while working on iPhoto?

    Why does my screen turn black when I play ITunes while working on iPhoto? I can't click off of the screen but get a message that reads Shut down computer by pressing button in back then turn computer back on by pushing button in back. That's followed by Chinese letters (which I cannot read). I have had other problems when playing iTunes (actually, a radio station on the Internet) while working on  iPhoto. Before, I got a window that would pop up and tell me I had no disk space available, that I would have to quit applications that were open. Not many were open.
    It would be nice if I could solve this problem once and for all.
    Thanks in advance for all the suggestions. I truly appreciate your help.
    Jan

    That was easy. Thanks. Jan
    Interval Since Last Panic Report:  1949305 sec
    Panics Since Last Report:          1
    Thu Feb  6 15:29:32 2014
    panic(cpu 1 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f81d89ff3, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff7acd4a2a7c, CR3: 0x0000000085d3b000, CR4: 0x0000000000000660
    RAX: 0xffffffff4bffff56, RBX: 0x0000000000000000, RCX: 0x0000000000000001, RDX: 0x0000000000000000
    RSP: 0xffffff807867b7c0, RBP: 0xffffff807867b800, RSI: 0xffffff7acd4a2a7c, RDI: 0xffffff8065292000
    R8:  0x0000000000000001, R9:  0x0000000000000000, R10: 0xffffff7f81d44200, R11: 0xffffff800f8b45e8
    R12: 0xffffff8065292000, R13: 0xffffff807867b860, R14: 0x0000000000000001, R15: 0xffffff7acd4a2a7c
    RFL: 0x0000000000010286, RIP: 0xffffff7f81d89ff3, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffff7acd4a2a7c, Error code: 0x0000000000000000, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff807867b470 : 0xffffff8000220792
    0xffffff807867b4f0 : 0xffffff80002c4794
    0xffffff807867b6a0 : 0xffffff80002da55d
    0xffffff807867b6c0 : 0xffffff7f81d89ff3
    0xffffff807867b800 : 0xffffff7f81d8a694
    0xffffff807867b890 : 0xffffff7f81d8b4ed
    0xffffff807867b8d0 : 0xffffff7f81d472a1
    0xffffff807867ba40 : 0xffffff7f81d8bd6d
    0xffffff807867bb00 : 0xffffff7f81d44346
    0xffffff807867bb60 : 0xffffff8000655f3e
    0xffffff807867bb80 : 0xffffff800065681a
    0xffffff807867bbe0 : 0xffffff8000656fbb
    0xffffff807867bd20 : 0xffffff80002a3f08
    0xffffff807867be20 : 0xffffff8000223096
    0xffffff807867be50 : 0xffffff80002148a9
    0xffffff807867beb0 : 0xffffff800021bbd8
    0xffffff807867bf10 : 0xffffff80002af140
    0xffffff807867bfb0 : 0xffffff80002dab5e
          Kernel Extensions in backtrace:
             com.apple.GeForce(7.3.2)[7E1D7726-416F-3716-ACCB-E1E276E35002]@0xffffff7f81d390 00->0xffffff7f81dfbfff
                dependency: com.apple.NVDAResman(7.3.2)[97284661-2629-379E-B86B-D388618E8C30]@0xffffff7f808 b0000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f8089e000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f8082b000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80865000
    BSD process name corresponding to current thread: iPhoto
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: iMac10,1 (Mac-F2268CC8)
    System uptime in nanoseconds: 11526391261403
    last loaded kext at 23020191300: com.apple.driver.AppleHWSensor    1.9.5d0 (addr 0xffffff7f8234b000, size 28672)
    last unloaded kext at 522057763087: com.apple.driver.AppleFileSystemDriver    13 (addr 0xffffff7f8254c000, size 12288)
    loaded kexts:
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch    70.12
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.0.8f17
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleHDA    2.2.5a5
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMikeyDriver    2.2.5a5
    com.apple.driver.AppleBacklight    170.2.2
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.AGPM    100.12.75
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.3
    com.apple.driver.ApplePolicyControl    3.1.33
    com.apple.GeForce    7.3.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d8
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.8f17
    com.apple.driver.AppleUSBCardReader    3.0.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.1.0
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleFWOHCI    4.9.0
    com.apple.driver.AirPort.Atheros40    505.67.1
    com.apple.driver.AppleAHCIPort    2.3.1
    com.apple.nvenet    2.0.17
    com.apple.driver.AppleUSBHub    5.1.0
    com.apple.driver.AppleUSBEHCI    5.1.0
    com.apple.driver.AppleUSBOHCI    5.1.0
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.4
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.driver.AppleMultitouchDriver    231.4
    com.apple.driver.IOBluetoothHIDDriver    4.0.8f17
    com.apple.kext.triggers    1.0
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.driver.DspFuncLib    2.2.5a5
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOAudioFamily    1.8.6fc18
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleGraphicsControl    3.1.33
    com.apple.driver.AppleHDAController    2.2.5a5
    com.apple.iokit.IOHDAFamily    2.2.5a5
    com.apple.nvidia.nv50hal    7.3.2
    com.apple.NVDAResman    7.3.2
    com.apple.iokit.IONDRVSupport    2.3.4
    com.apple.iokit.IOGraphicsFamily    2.3.4
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d8
    com.apple.driver.IOPlatformPluginFamily    5.1.1d6
    com.apple.driver.AppleSMC    3.1.3d10
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.8f17
    com.apple.iokit.IOBluetoothFamily    4.0.8f17
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.2.1
    com.apple.iokit.IOUSBMassStorageClass    3.0.3
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBMergeNub    5.1.0
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.iokit.IOFireWireFamily    4.4.8
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOUSBFamily    5.1.0
    com.apple.driver.NVSMU    2.2.9
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.11
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4
    System Profile:
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.52f9
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.67.5-P2P
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Serial ATA Device: ST3500418ASQ, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x26200000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: Hub in Apple Extended USB Keyboard, apple_vendor_id, 0x1003, 0x06400000 / 3
    USB Device: Apple Extended USB Keyboard, apple_vendor_id, 0x020b, 0x06430000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x06110000 / 6

  • ITunes 10.7 turns on and starts playing anytime iMac is moved?!

    I downloaded the new version of iTunes yesterday, and now anytime my iMac is jostled or moved, iTunes turns on and starts playing. My iMac is 9 months old, and I never had this problem until yesterday. iTunes can be triggered if I just bump my desk; no other programs start up. I have tried restarting my computer, and this helped for a little while, but then the problem started up again. If I move the computer once, iTunes turns on and starts playing. If I bump it again, iTunes stops playing. If I bump it again, it resumes playing, and so on. Is this a software or hardware problem? Should I try downgrading to the older version of iTunes to confirm if this is a result of the upgrade? If so, how would I do that? If it could possibly make a difference, I had my iPad USB cord plugged into the back of my computer, and after just now removing it, I can't seem to recreate the problem (it dawned on me that iTunes automatically loads when I plug my iPad in, so maybe it had something to do with the cord). Is it possible the USB cord was triggering iTunes? Any thoughts that anybody can provide would be tremendously appreciated. If at all possible, I would like to avoid lugging my computer to the nearest Apple Store.

    Is there anyone out there who has suggestions for a fix on this?  I can't believe that this is such an obscure problem that none of the power users in our community can't help us out. 
    Thanks, folks.

Maybe you are looking for

  • My speakers won't work on my new computer with a Soundblaster live! 24

    When I was in college, I bought a Gateway computer that came with with Boston Acoustics speaker model BA735. Recently, I bought a new Dell computer with the Soundblaster Li've! 24 bit and my speakers won't work. I have an old set at my house that wor

  • PDF files not opening

    Hello, I am not able to open up PDF docs, which is new, it was fine before. When I try to open a doc I get a "Sign in required" message. When I click on this, it says that "either your computer is offline or the clock on your computer is set incorrec

  • How to set date formate dd/mm/yyyy from portal.

    Dear Experts, We are implementing ESS/MSS, my query is under ESS applications, date format is showing mm/dd/yyyy, then iam trying to change  user language is English (United Kingdom), from portal end, then its showing dd/mm/yyyy. My query is that is

  • How do I make the icons at the bottom of the macbook get bigger when the cursor rolls over them?

    I've checked in settings, but can't figure it out. thanks, judy

  • Password Checking

    import java.io.Console; class ConsoleTest { public static void main(String[] args) { Console conc = System.console(); String username = conc.readLine("Username :"); char[] passwd = conc.readPassword("Password String corPass = "supersoul"; if(corPass.