-
1. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
joel_pau Oct 19, 2014 1:45 AM (in response to theDustinWilliam)You can try this code (Start Trigger):
if ( sym.isPlayDirectionReverse() ) { sym.stop() } else { sym.play() };
sym.isPlayDirectionReverse() returns true if you are playing reverse.
So, if i play reverse then i stop the timeline else i play.
-
2. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
theDustinWilliam Oct 19, 2014 8:50 AM (in response to joel_pau)Thanks very much for your help! This worked!
Not sure if this code has anything to do with this issue:
I am also having another problem - if you would be so kind to help me figure this one out...
I click on and of the buttons Portfolio or Services or Connect or Dspace
then it animates to this (if i click on Portfolio for example):
I then use the reverse playback, with your code to stop it back to the start (image 1).
If I click on another button (services for example) it animates back to (image 2) but now without showing the larger "SERVICES" like it did for "PORTFOLIO"
It only shows the appropriate title if I refresh the browser.
I use the hide function on the other titles of the other buttons so they don't all appear on top of each other each time a different button is clicked.
here is my timeline if it helps any:
Thanks again for your help with this!
-
3. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
theDustinWilliam Oct 20, 2014 8:40 AM (in response to theDustinWilliam)Anyone with advice on this one would be great. I can send u the project files if needed.
-
4. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
joel_pau Oct 26, 2014 10:07 AM (in response to theDustinWilliam)Here is a demo : buttonsPanels.zip - Box
-
5. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
theDustinWilliam Nov 1, 2014 10:34 PM (in response to joel_pau)Hey Joel! Thanks so much for your reply. I looked at the demo file you attached and I can't figure it out in my situation. I have zipped my project, in hopes you would be kind enough to assess and assist me with what I am missing.
Every time I click on a link.... "PORTFOLIO" for example, if i hit the menu button, and return to the main nav where I see the links again, clicking on another link, for example "SERVICES", the title does not appear after the animation.
-
6. Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
joel_pau Nov 1, 2014 11:59 PM (in response to theDustinWilliam)Ok, i look at your edge file.
-
7. Re: Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
joel_pau Nov 2, 2014 1:04 AM (in response to theDustinWilliam)So, at 1000 (trigger) i replace this code:
if ( sym.isPlayDirectionReverse("PortfolioEnd") ) { sym.stop("PortfolioEnd") } else { sym.play("PortfolioStart") };
by this one:
if ( sym.isPlayDirectionReverse() ) {
sym.$("connect_2").show();
sym.$("services_2").show();
sym.$("portfolio_2").show();
};
Note that sym.isPlayDirectionReverse() is a boolean function. You cannot script: sym.isPlayDirectionReverse("PortfolioEnd");
Your files: nav.zip - Box
-
8. Re: Re: Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...
theDustinWilliam Nov 2, 2014 5:10 PM (in response to joel_pau)Joel, Thank you very very much for your help with this! I now see what you did. This helps me more than you can imagine! I appreciate the time you spent helping me out!






