Home AMX User Forum MODPEDIA - The Public Repository of Modules for Everyone
Options

access code to TP page

HI ALL
i need to make login button to TP page this button didnot flip to the secured page without entering the right pin code.

please help

Thanks

Comments

  • Options
    ericmedleyericmedley Posts: 4,177
    You can do it in either TPbDesign by making the button do a page flip and then setting that button's security settling to ask for a password or perform thevfunction from code.
  • Options
    kfahmykfahmy Posts: 5
    is this the code do the required function??


    DEFINE_START

    CREATE_BUFFER TP1, TP1_BUFFER

    .

    .

    DEFINE_EVENT

    ..

    DATA_EVENT[TP1](* EVALUATE TP1 DATA *)

    {

    STRING:

    {

    SELECT

    {

    ACTIVE (FIND_STRING (DATA.TEXT,'PAGE-',1)):

    {

    JUNK = REMOVE_STRING (DATA.TEXT,'PAGE-',1)

    CUR_PAGE = DATA.TEXT

    }

    ACTIVE (FIND_STRING (DATA.TEXT,'KEYP-',1)):

    {

    xxxx (* keypad code *)

    }

    ACTIVE (FIND_STRING (DATA.TEXT,'KEYB-',1)):

    {

    1234 (* keyboard code *)

    }

    ACTIVE (1):

    {

    1988 (* default code *)

    }

    }

    CLEAR_BUFFER TP1_BUFFER

    }

    ONLINE:

    {

    SEND_COMMAND TP1, 'TPAGEON'

    }

    }
  • Options
    ericmedleyericmedley Posts: 4,177
    This code will get you the current page or whether or not the user has entered a strung from either the keyboard or key pad.. You still need some code to do something with that information. It's pretty basic string parsing, however.
Sign In or Register to comment.