Author Topic: Retrospin - Static 16x9 - Version 1.1  (Read 44819 times)

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #15 on: January 24, 2017, 12:20:42 PM »
Looking great. :) Let me know when it's complete so I can test it, and place it on the themes download page?

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #16 on: January 24, 2017, 12:27:15 PM »
Test away and add to downloads at your will captain!

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #17 on: January 29, 2017, 08:58:34 AM »
Let me know when you consider it finished so I can test it, and perhaps put it on the theme download page. :)

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #18 on: January 29, 2017, 11:45:54 AM »
Let me know when you consider it finished so I can test it, and perhaps put it on the theme download page. :)

I consider it finished.  Test and add on the download page please.  Thanks you!

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #19 on: January 29, 2017, 11:57:59 AM »
Will do. 😀

Sent from my SM-G920F using Tapatalk


Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #20 on: February 10, 2017, 09:21:47 AM »
I made a small change in the menu setup by adding a menu for each index (0-2); your current setup didn't work for all collections, and added it to the theme download page.

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #21 on: February 10, 2017, 12:39:31 PM »
I made a small change in the menu setup by adding a menu for each index (0-2); your current setup didn't work for all collections, and added it to the theme download page.
Thank you very much.  I will check it out.  This was my first time making layouts for retrofe so getting use to all the options.

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #22 on: March 06, 2017, 10:52:39 AM »
Is there a page up down animation?  I would like to have the box images move off the screen and back on with paging up and down which gets used alot along with letter down up.  If that is not currently possible that would be a nice feature to add thanks.

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #23 on: March 06, 2017, 12:51:42 PM »
Is there a page up down animation?  I would like to have the box images move off the screen and back on with paging up and down which gets used alot along with letter down up.  If that is not currently possible that would be a nice feature to add thanks.

Not a separate animation at the moment; it just activates onHighlightExit/Enter.

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #24 on: March 06, 2017, 08:44:03 PM »
Is there a page up down animation?  I would like to have the box images move off the screen and back on with paging up and down which gets used alot along with letter down up.  If that is not currently possible that would be a nice feature to add thanks.

Not a separate animation at the moment; it just activates onHighlightExit/Enter.
Oh well then I guess I will make those a slide on and off thing.  Thanks

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #25 on: March 07, 2017, 12:06:31 PM »
Here is my system box section:

Code: [Select]
<reloadableImage type="artwork_front" x="1578" y="687" alpha="0" xOrigin="center" yOrigin="center" layer="14">
<onEnter>
<set duration=".25">
<animate type="alpha" to="1" algorithm="easeinquadratic"/>
</set>
</onEnter>
<onExit>
<set duration=".25">
<animate type="xOffset" from="0" to="600" algorithm="easeinquadratic"/>
</set>
</onExit>
<onMenuEnter menuIndex="0">
<set duration=".25">
<animate type="alpha" to="1" algorithm="easeinquadratic"/>
</set>
</onMenuEnter>
<onMenuExit menuIndex="0">
<set duration=".25" menuIndex="0">
<animate type="xOffset" from="0" to="600" algorithm="easeinquadratic"/>
</set>
</onMenuExit>
<onHighlightEnter menuIndex="0">
<set duration=".25">
<animate type="xOffset" from="600" to="0" algorithm="easeinquadratic"/>
</set>
</onHighlightEnter>
<onHighlightExit menuIndex="0">
<set duration=".25">
<animate type="xOffset" from="0" to="600" algorithm="easeinquadratic"/>
</set>
</onHighlightExit>
<onMenuScroll menuIndex="0">
<set duration=".25">
<animate type="xOffset" from="0" to="600" algorithm="easeinquadratic"/>
</set>
</onMenuScroll>
</reloadableImage>

Is there a way to make the box not slide off if you hold down the page up or page down?  Like keep the box off the screen until you stop in the next menu item.  As in it repeats the animation over and over if you hold the button for page up or down.  If you tap the button it works great.
« Last Edit: March 07, 2017, 12:17:43 PM by dougan78 »

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #26 on: March 07, 2017, 02:16:03 PM »
Not at the moment. Since page up/down is currently a single action rather than a scroll, it immediately starts (and finishes) the onHighlightEnter animation. The menu scroll waits for the scrolling animation to complete first. I'd have to give some serious thought on how to best implement a page up/down scroll without starting an animation.

Sent from my SM-G920F using Tapatalk


dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #27 on: March 07, 2017, 03:25:01 PM »
Not at the moment. Since page up/down is currently a single action rather than a scroll, it immediately starts (and finishes) the onHighlightEnter animation. The menu scroll waits for the scrolling animation to complete first. I'd have to give some serious thought on how to best implement a page up/down scroll without starting an animation.

Sent from my SM-G920F using Tapatalk
Add it to your list then. ;)  Thanks much for looking!

ryuuji

  • Full Member
  • ***
  • Posts: 166
  • Karma: +1/-0
    • View Profile
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #28 on: March 07, 2017, 05:54:54 PM »
Not at the moment. Since page up/down is currently a single action rather than a scroll, it immediately starts (and finishes) the onHighlightEnter animation. The menu scroll waits for the scrolling animation to complete first. I'd have to give some serious thought on how to best implement a page up/down scroll without starting an animation.

Sent from my SM-G920F using Tapatalk

What if you change the onHighlightEnter value ? instead of from 0 to 600 => from 600 to 600 ...

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Retrospin - Static 16x9 - Version 1.0
« Reply #29 on: March 07, 2017, 07:44:01 PM »


Not at the moment. Since page up/down is currently a single action rather than a scroll, it immediately starts (and finishes) the onHighlightEnter animation. The menu scroll waits for the scrolling animation to complete first. I'd have to give some serious thought on how to best implement a page up/down scroll without starting an animation.

Sent from my SM-G920F using Tapatalk

What if you change the onHighlightEnter value ? instead of from 0 to 600 => from 600 to 600 ...

Why would that help?



Sent from my SM-G920F using Tapatalk