Limit access until given password

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default Limit access until given password

    Hello,

    I am creating a training CD in Director. I want the user to have to complete
    each section of the training CD in order but after they have completed it they
    are given a password which will then allow them to look at any parts of the
    training they training they like in any order.

    Can anyone help?

    Katherine

    Katherinep Guest

  2. Similar Questions and Discussions

    1. 16 character password limit; need work-around
      Looks like CF7 has a documented 16 character limit on datasource passwords. Our production server password is 18 characters. I brought this up on...
    2. limit dir access
      Is there a way to limit or exclude access to a subfolder for Contribute user or group? The user needs access to the main web, but I'd like to limit...
    3. how to time limit folder access?
      Hello I would like to be able to time limit user access to a folder ... any ideas on how to do this? can .htaccess etc be used? Cheers Geoff
    4. Limit Access to Webservice's Method
      Hi How can I make some of the method of my webservice available to only within my org and other method to public?
    5. Limit on access to shared folder
      You have reached the limit for Windows XP Pro. Windows XP Home is hardwired to a limit of 5. Windows XP Pro is hardwired to a limit of 10....
  3. #2

    Default Re: Limit access until given password

    There's a password entry behavior in the Library window, you could have
    hidden button (perhaps requiring a shift-click on a logo) on the initial
    page that goes to the password entry frame.


    You probably need to add a special case test to all your navigation
    button.


    global allAccess

    if allAccess then
    -- go to destination
    else
    -- normal previous accomplished test
    JB Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139