Edge animation  only plays when I arrive at the page from the next page

Hi Everyone, I'm really at my wit's end. Everythign was working fine Friday and then on Sunday, it just stopped.
I have several a 13 page Indesign CS6 file, one .OAM file per page. Page 1 plays fine, but when I advance to page 2, the box with the .OAM file flashes, then nothing. The rest of the pages play fine, but if I were to swipe to page 3, then back to page 2, page 2 now plays fine. But if I were to swipe from page 2 to page 1, page 1 does not play.
What's even more odd is any animation I move to page 2 will not play. So if I were to put a blank page as page 2, the non-working page 2 will now animate when it is moved to page 3.
This is an important job, is there a higher level of Adobe tech support I can subscribe to for 1 on 1 help?

Good point, Alistair. I've started rebuilding each page in a new InDesign document and things were going smoothly, until I reached the 8th page, which contains the 8th .OAM (there's one per page). Now, some animations have stopped displaying—same as my original problem. The similarity is while I had 13 pages built up in the original document, it started getting buggy once the 8th .OAM went in. Maybe I've reached the limit to what InDesign/DPS can handle? And once the glitch was set in, it didn't matter if I reduced the file down to 2 pages, the error remained.
Is it possible to divide up the document to two files, pages 1-7 and pages 8-13, then use DPS to combine them for the iPad?
I have plenty of RAM and hard drive space. 16GB RAM, 5 TB storage space, 470 GB internal.

Similar Messages

  • I have an iPad 4th Gen with Retina Display.  I want to watch movies on an airplane.  I downloaded downloaded one movie successfully from digital copy, but my next movie only plays when I am connected to wifi, and the other one is the same way now

    I have an iPad 4th Gen with Retina Display.  I want to watch movies on an airplane.  I downloaded downloaded one movie successfully from digital copy, but my next movie only plays when I am connected to wifi, and the other one is the same way now

    Hi there slogrown,
    You may need to download these purchases directly to the device. Take a looke at article below for more information.
    Downloading past purchases from the iTunes Store, App Store, and iBooks Storehttp://support.apple.com/kb/HT2519
    -Griff W.

  • Mouse Leave animation being played when going down past 50% of object

    I'm new to Adobe Edge and I'm not really familiar with either CSS or javascript but I'm getting better. I've been trying to work on the navigational menu for my website for two weeks and the progress is very slow. I finally got the dropdown menu to happen correctly, except one thing. When I scroll down on the "AccomButton" and move the mouse past the 50% point of the object, the animation for the "up" occurs. I have it set to do this on "mouseleave". This seems to be the only instance in which the "up" animation is occuring wrongly. If I hover on any of the top 50% of the "AccomButton", it stays in the down or "stop" position.
    Your help will be very much appreciated as my head hurts from banging it on the table the past two days!
    Sorry, I forgot to add the code:
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseover", function(sym, e) {
             // insert code to be run when the mouse hovers over the object
             // play the timeline from the given position (ms or label)
             sym.play("drop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_HolstonButton}", "click", function(sym, e) {
             // insert code for mouse click here
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheHolstonRoom", "_self");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_TennesseeButton3}", "click", function(sym, e) {
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheTennesseeRoom", "_self");
             // insert code for mouse click here
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // play the timeline from the given position (ms or label)
             sym.play("up");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseenter", function(sym, e) {
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
             // insert code to be run when the mouse enters an element
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
    })(jQuery, AdobeEdge, "EDGE-379000071");

    I'm new to Adobe Edge and I'm not really familiar with either CSS or javascript but I'm getting better. I've been trying to work on the navigational menu for my website for two weeks and the progress is very slow. I finally got the dropdown menu to happen correctly, except one thing. When I scroll down on the "AccomButton" and move the mouse past the 50% point of the object, the animation for the "up" occurs. I have it set to do this on "mouseleave". This seems to be the only instance in which the "up" animation is occuring wrongly. If I hover on any of the top 50% of the "AccomButton", it stays in the down or "stop" position.
    Your help will be very much appreciated as my head hurts from banging it on the table the past two days!
    Sorry, I forgot to add the code:
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseover", function(sym, e) {
             // insert code to be run when the mouse hovers over the object
             // play the timeline from the given position (ms or label)
             sym.play("drop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_HolstonButton}", "click", function(sym, e) {
             // insert code for mouse click here
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheHolstonRoom", "_self");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_TennesseeButton3}", "click", function(sym, e) {
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheTennesseeRoom", "_self");
             // insert code for mouse click here
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // play the timeline from the given position (ms or label)
             sym.play("up");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseenter", function(sym, e) {
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
             // insert code to be run when the mouse enters an element
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
    })(jQuery, AdobeEdge, "EDGE-379000071");

  • Audio only plays when started from the beginning?

         Hi! I'm fairly new to flash, i'd consider myself a beginner, but recently i've been tasked with making an animation for someone! There is a song playing in the animation, it's a wav and it's on its own layer. There are also drawings i imported in too.
         My problem is, i want to be able to sync up the little drawings to the words of the song, but the audio only plays when i start at 0 on the timeline. If i were to start at let's say frame 24, it won't play. Does anyone know how to fix this? This commission needs to be finished by Wednesday and it's a S L O W process, having to start it over only to hear like one or two words later on

    change the sync property (in the properties panel after clicking the keyframe where your sound starts) from event to stream.  retest.

  • Tell edge animation to play

    Hi, Is it possible to tell an edge animation to play from a button widget in muse?

    Hi
    Sorry to say but there's not much going on between the two camps, Muse and Edge A that is.  Like you, I subscribe to Muse but since I discovered EA...well...
    Thing is, dragging the aimated button to the trigger container just overlays it which effectively hides it.  Hence, it will simply not work as a trigger to launch lightbox.  I myself had the same idea....but its more involved that this.  As always.
    A possible solution might be to design your lightbox  and simply use the built in trigger for now -  go ahead and publish the site like this.  View your site in a browser of your choice then click on the trigger which will reveal the URL that launches the Lightbox feature.  Copy this in the browser.  Cheeky eh?
    Then go back to your button in Edge A (select it) and add an on click event handler (look for {} to the left of the element and select click event).  Using the snippets on the right-hand plane choose add URL and paste the link from the clipboard between the " " so when the button is clicked it references the lightbox.  Go back to Muse and position your edge button again and publish again.  Its very long winded I know.  Get it? Will it work? dunno.  Have I tried it? no.  But the logic is faultless, because the URL trigger on your button  should point to the lightbox...thats the theory anyway.
    Hope this is of some help and hope it works...might as well give it a try eh?...this is how I discovered Edge A trying to animate buttons etc.  In the end I decided to build my entire site using it. 
    regards

  • HT4436 Since installing Ios7 280 music tunes out of a total of 360 will now only play when I'm within range of WiFi. How can I get them back on my Iphone 4s and scrap this stupid icloud that I did not want or ask for in the first place.

    Since installing Ios7   280 music tunes out of a total of 360 will now only play when I'm within range of WiFi. The remainder now appear with the stupid Icloud logo beside them. How can I get them back on my Iphone 4s and scrap this stupid icloud that I did not want or ask for in the first place. Why can't rotten apple ask if you want the dam icloud rather than just stealing everything without permission and then you can only have access to it through wifi.

    Wow, just posting and it seems that there is a solution that is working for me...
    What I've did is I turned off iTunes Match on my iPhone, then turned in on again. Now in my iTunes library on my mac I can get the duplicates to be matched or uploaded to iCloud with a right-click, add to iCloud. iTunes Match starts to check the songs and everything is done correctly. Pretty nice!

  • My iPod Touch will not play through external speakers when it is docked.  It only plays through it's internal speaker.  All the other functions on the iPod can be controlled by the external speakers (volume,track, etc).  How do I fix this?

    My iPod Touch will not play through external speakers when it is docked.  It only plays through it's internal speaker.  All the other functions on the iPod can be controlled by the external speakers (volume,track, etc).  How do I fix this?

    I would try in oreder:
    - Resetting the iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restoring the iPod via iTunes.  First from backup and if problem persists, restore to factory defaults/new iPod.

  • I downloaded several cds to my external hard drive in .mp3 format. Later, I copied them to iTunes. The songs only play when the external hard drive is plugged in. I tried to load the songs from iTunes to my iPhone and the songs don't play.

    I downloaded several cds to my external hard drive in .mp3 format. Later, I copied them to iTunes. The songs only play when the external hard drive is plugged in. I tried to load the songs from iTunes to my iPhone and the songs don't play. I thought iTunes allowed me to transfer music to my iPhone and play it. What am I doing wrong?

    Hi skoorb1,
    When adding music to iTunes, you can set it to either make a local copy of the file, or simply point to the original location of the file (for example, on an external hard drive). If it is set to do the latter, it will not be able to play or transfer those files when the external hard drive is not plugged in. You may find the following article helpful:
    iTunes: About the Add to Library, Import, and Convert functions
    http://support.apple.com/kb/ht1347
    Regards,
    - Brenden

  • Speakers only play when headphones are plugged in.

    My internal speakers only play when the headphones are plugged in. (System preferences-Sound tells me I'm using Internal Speakers, audio port for sound input).  When I remove the headphones, the red light in the jack goes on and the computer says I'm using Digital Out ("The selected device has no output controls.)
    I have read many community responses, most saying that the switch inside the headphone jack hasn't engaged, that I should fiddle with it using a paperclip/bobbypin/toothpick or just plug-in and unplug headphones repeatedly.  I have repeatedly both of these to no avail.  When fiddling, I don't really know which bump inside there is the switch, I've played with them all. 
    No, it's not dirty, I've blowin air, vaccuumed, dusted. Same problem.
    I do use my speakers often for work and pleasure, go between different external speakers and a projector.
    It seems that the computer has things backwards- headphones unplugged is pluged and vice versa.
    Any suggestions or clear guidance as to what I should be fiddling with when I stick a bobby pin in there?  No need to refer me to old posts, I've read them.
    Thanks in advance,
    TheKip

    If your phone is still under warranty, Apple will service your phone for free.
    Did you check the headphone port for any kind of debris or lint?
    Did you already try another set of headphones? Are you suing the headphones that came with the phone?
    Is the headphone jack plugged in fully into the headphone port?

  • HT1725 why will my downloaded song only play when connected to wifi

    why will my downloaded song only play when connected to wifi

    I have the same probelm and I'm trying to find out.

  • Html5 animation only plays once???

    I have an html5 animation that plays fine if I click or tap it the first time.  If I change pages and return, the animation shows the correct "start" poster, but clicking it goes directly to the last frame, as if the animation remained at that frame, and only the poster was reset.
    The same page also contains another html5 animation that is looped.  It plays fine every time (although I would like to know how to get it to stop, other than turning the page and coming back.)  But: if I activate this animation first, the second animation never activates.  The page-change trick resets this animation, but not the one described above, which simply doesn't work.
    ...and neither will scale down to fit the window, if I try to give them a smaller window to play in.
    Both are from FlashCS6 (not CC), rendered to html5 by CreateJS.
    Any advice?    --Jose

    Thank you.  These are not set to autoplay, however.  They are dynamic illustrations of points I make in the text.  The idea is that the reader should start them after reading the appropriate text.  Alas, if you start the one at the top of the page, the one at the bottom cannot be started at all.  I'm fairly certain that the page is fully loaded.

  • Help!my ipod only plays when its in the dock :(

    a couple of weeks ago I couln't get my ipod to turn on unless it was in the dock (I've got those little speakers that charge while it plays) so I tried resetting it but nothing happened. I was going to send it off to get it repaired, but tried resetting it one more time and it came on - the only thing is no matter how long it's charged for every time I unplug it, it says the battery is empty, so now it'll only play when it's plugged into the speakers. I'm assuming the battery's a duffer, I only got it at Christmas. Can anyone help??
    any help would be greatly appreciated!!!

    Hi,
    Same thing happened to a friend of mine.
    You need to get it repaired - I don't know where in the UK you live, but if you have access to one of the Apple Stores take it in, other than that take it back to where it was bought, you are obviously under warrantee.
    My friends was a duff battery, and they replaced the iPod.

  • My sound has recently gone on my Iphone4s, this only happens when I use my phone myself. The sound works when I receive calls and texts but I am unable to watch videos, listen to music etc it seems like my volume button has gone! Can anyone help??

    My sound has recently gone on my iphone4s, this only happens when I use my phone myself. The sound works when i receive a call or a message etc but I am unable to watch videos or play music, the sound also doesn't work on games. Please can anyone help with this issue or let me know how to fix it if experienced the same problem?

    Remove all apps from multitasking bar. Double click Home button then tap and hold an icon and tap on little x on every app. Then reset. Hold down Home and Power button until Apple logo appears.

  • Changing animation frame rate when rendering in photoshop does not change the length of the video?

    I made a walk cycle animation in Photoshop CS6 and want to render it into a quicktime format. I'd like it to be 12 fps, but when I rendered it at 12 fps the video seemed to be missing frames, and the video was 3 seconds long. I have 98 frames to my animation; doing the math, at 12 fps it should be 8 seconds long. Not 3.
    I was confused and for curiosity's sake I rendered the video at 6 fps, trying to really slow it down. The video ended up being STILL 3 seconds long and only maybe 20 frames. I was missing literally 70 frames. I'm so upset with this rendering thing, I could chuck my computer at the wall.
    Does anybody know of a solution to this?
    edit: If it means anything, I've tried rendering it straight from the frame view and the timeline view. Each time I render it I have the timeline frame rate match the rendering frame rate as well.

    floriannaart wrote:
    Changing animation frame rate when rendering in photoshop does not change the length of the video?
    Photoshop CS6 and CC support two types of animation Frame animations and a Video Timeline
    Changing the frame rate should not change the length of a video timeline. It should just change the number of frames that are rendered.  To change the length of a video you need to change the length of the video timeline.  If you increase the length of the timeline and there is audio I'm quite sure there will be a problem with it,  The Video part will most likely be better then the sound. The required number of extra frames can be generated however the video may look like slow motion. If you decrease the length the motion will speed up.  The length of a video is normally done be editing video clips which are trimmed and stitched together to get the desired duration. Not normally done by altering the duration of a clip.
    The duration a of Frame animation is the sum of the times each frame is displayed.  In a frame animation the length of time a frame is displayed can be varied it not a normal motion picture video.  To have a smooth frame animation you need a sufficient number of frames that are different from each other to show smooth motion.  You can use Photoshop Frame animation tween feature to have Photoshop manufacture frames to help with a smoothing the animation.   Once you have a frame animation the length with the motion you want you can have Photoshop convert it to a video timeline and render a normal motion picture video.  It will not have audio but you can add audio to it.

  • TS1424 i downloaded a song and it shows the time length all to be correct but while playing the song will only play for about 30 seconds then skip to the next song in my list (all lists) - in short i payed for a song that is only of a preview quality

    i downloaded a song and it shows the time length all to be correct but while playing the song will only play for about 30 seconds then skip to the next song in my list (all lists) - in short i payed for a song that is only of a preview quality
    Either this needs to get fixed or i will request my money back because i will not work for my money while other lie about what i spend it on.

    Try deleting the problematic tune (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

Maybe you are looking for