Home AMX User Forum AMX Control Products
Options

Command for Page Flip with Transition?

Hi

Playing around with the Transition effects on pageflips on a Modero-S.
All works well when done in TPD4, but cant find anything on how to do this from code in the programming manual.

Anyone know something more on this?

Comments

  • Options
    Joe HebertJoe Hebert Posts: 2,159
    Check out page 58 to set the hide effect name with the @PHE command and check out page 61 to set the show affect name with the @PSE command. There is a note that states future firmware versions may not support these commands.

    http://www.amx.com//assets/manuals/ModeroSSeries.ProgrammingGuide.pdf
    @PHE
    Set the hide effect
    for the specified
    popup page to the
    named hide effect.
    Syntax:
    "'@PHE-&lt;popup page name>;<hide effect name>'"
    Variable:
    popup page name = 1 - 50 ASCII characters. Name of the page the popup is displayed On.
    hide effect name = Refers to the popup effect names being used.
    Example:
    SEND_COMMAND Panel,"'@PHE-Popup1;Slide to Left'"
    Sets the Popup1 hide effect name to ’Slide to Left’.
    NOTE: Future firmware versions may not support this command.

    @PSE
    Set the show
    effect for the
    specified popup
    page to the
    named show
    effect.
    Syntax:
    "'@PSE-&lt;popup page name>;<show effect name>'"
    Variable:
    popup page name = 1 - 50 ASCII characters. Name of the page the popup is displayed On.
    show effect name = Refers to the popup effect name being used.
    Example:
    SEND_COMMAND Panel,"'@PSE-Popup1;Slide from Left'"
    Sets the Popup1 show effect name to ’Slide from Left’.
    NOTE: Future firmware versions may not support this command.
  • Options
    Thanks Joe, but that sets how to open/close a PopUp page...

    Im looking at the new transitions when Page flipping between PAGES.
    See Standard animated (in Page flip settings n TPD4) Page flips, and thn you can choose between Page Flip animations in TPD4...

    Command for Standard Page flip is: PAGE-<name of page to flip to>
    Im missing something like: PAGE-<ANIMATION>,<TIME>,<name of page to flip to>
  • Options
    OK Joe

    At least i broadened my search... :)

    Found it in the MVP-9000i doc.(OP/REF guide Page 104 AND in AMX PI Online)
    ^AFP-<Page Name>,<animation>,<origin>,<time>

    The 9000i doesnt got all the animations that S-series got, but tested with implode,explode,waves and they works like a charm!

    Actually: The name of the animation is not case-sensitive (waves,Waves,WAvES all works well....)
  • Options
    Joe HebertJoe Hebert Posts: 2,159
    kennethk wrote: »
    Thanks Joe, but that sets how to open/close a PopUp page...

    Im looking at the new transitions when Page flipping between PAGES.
    Oops, pages not popups.

    If you need any more irrelevant answers to questions you haven’t asked just let me know...
  • Options
    . ;)
Sign In or Register to comment.