Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2007
    Posts
    107

    i want to add password in my project can you help me for plz

    hi everyone

    i want to add password in my project , i tried hardley but i didn`t find

    the solution , can you help me for plz .

    i mean is like serial or word .

  2. #2
    Join Date
    May 2005
    Posts
    1,115
    Well... code it yourself.
    It's easy using Lua...
    Just add actions to the Project OnStartup Script...
    Never know what life is gonna throw at you.
    (Based on a true story.)

  3. #3
    Join Date
    Dec 2004
    Location
    Texas
    Posts
    239
    Straight from the Help section:


    Add Password Protection
    There are many instances requiring the user to be prompted for information that must not be visible on the screen, such as a password. In AutoPlay Media Studio this is accomplished by using a Dialog.PasswordInput action.

    As an example, we will prompt the user for a password at the start of your program, and compare it to a stored value (thereby limiting access to your program to only those who know the password).

    To accomplish this:

    Insert the following script in your page's On Show event:

    Code:
    -- the 'correct' password
    real_password = "password";
    
    -- prompt the user to enter a password
    user_password = Dialog.PasswordInput("Password", "Please enter the password: ", MB_ICONQUESTION);
    
    -- compare the user's password to the 'correct' password.
    -- If the user supplies the wrong password, exit the program.
    if real_password ~= user_password then
        Application.Exit();
    end
    This script pops up a dialog box requesting the password. Whatever the user types in this dialog box appears as *******. If the correct password is entered, the program runs normally. If any other password is entered, the program will close.

  4. #4
    Join Date
    Feb 2007
    Posts
    107
    thank you very much

Similar Threads

  1. Adding Password Protection
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 10-03-2003, 03:25 PM
  2. Reoccurring password
    By Bruce in forum AutoPlay Media Studio 4.0
    Replies: 6
    Last Post: 06-04-2003, 04:09 PM
  3. HOWTO: Open a Version 3.0 Project in Version 4.0
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-30-2002, 02:09 PM
  4. HOWTO: Create a Project Template
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-28-2002, 01:49 PM
  5. HOWTO: Add Password Protection to Your Application
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-03-2002, 03:39 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts