If it's all within the same session, use a list, named something like 
gUserList, and when they sign up, add them to the list.

You'd also need a variable, like gCurrentUser to indicate which user (1..n) 
is currently active.  Then you could reference gUserList[gCurrentUser] to 
get the name of the current user.

Init list in very beginning:
   gUserList =[]
   gCurrentUser =0

Then, get the name.

Then, add to list:
   add(gUserList, thisUsersName)
   gCurrentUser =gCurrentUser + 1

Then, at any time, switch gCurrentUser to be whatever user you want.  Refer to:

   gUserList[gCurrentUser]

to get the current name.

To store between sessions, look at SetPref and GetPref functions.

- Tab


At 01:48 PM 12/13/00 +0000, LYNN L. wrote:

>Greetings,
>
>I have a question which I hope someone here can give me some much needed 
>direction on.
>
>I know that if you 'lock' your projector/ movie you can have multiple
>users use the same movie. But is there a way to trace those multiple users 
>for other purposes?
>
>Ex: when you open the main movie, you have to enter a user name. That
>name is then placed into a global variable. Then the movie uses the 
>variable to customize the movie to the individual user
>i.e."Greetings, 'user's name' How are you today?"
>
>So, I need to reference multiple users, in multiple movies, sometimes in 
>the same movie. Then at various points throughout the presentation I need 
>to be able to identify the individual user for customization of the 
>presentation.
>Is this possible?
>If so, how?
>
>Any and all suggestions or reading material on this matter would be
>greatly appreciated.
>
>I thank you beforehand.
>Sincerely,
>six_shadow9
>___________________________________________________________________________ 
>__________
>Get more from the Web.  FREE MSN Explorer download : http://explorer.msn.com
>
>
>[To remove yourself from this list, or to change to digest mode, go to
>http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
>email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
>Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to