If it equals?

Josh Dye Zzyzx at Relia.Net
Thu Aug 22 14:04:01 EDT 2002


Thanks a lot! Now I have two more things I want to add! :-)

1. There are certain levels of Access that the User can have. It is the same
as the Rating for Games. Everyone, Teen, and Mature. What I was thinking of
just having it be the Third Item, as just 'E', 'T', or 'M'. I don't know how
to get the script to recognize what it is, and made the adjustments
according to their User Level. Any ideas on how to do this?

2. This one is easy. But I'm not sure what exact thing to do. I just want to
add new Users to the User Database Text File. What is the code to go to the
last line of the Text File?

Thanks!

 - Josh Dye


----- Original Message -----
From: "Klaus Major" <k_major at os.surf2000.de>
To: <use-revolution at lists.runrev.com>
Sent: Thursday, August 22, 2002 12:32 PM
Subject: Re: If it equals?


> Hi Josh,
>
> you terminate the "repeat"-loop at the wrong place if your script is
> what you are using.
>
> > Hello,
> >     I can't quite get it to work. Here is the script that I have so far.
> >
> > local the_user
> > local the_password
>    ## declaring these vars as local is not really necessary
>    ## a var is valid (and thus usable) in a complete handler.
>    ## in this case from "on mouseup" until "end mouseup"
> >
> > on mouseup
> >   set the itemdel to TAB
>       ### i recommend this
>       put URL "file:\\ZZYZX\INTERFACE\Names.txt" into the_file
> >   ask "Who the hell are YOU ???"
> >   if it is empty then exit mouseup
> >   put it into the_user
> >   repeat for each line l in the_file
> >     if item 1 of l is the_user then
> >       put item 2 of l into the_password
> >       exit repeat
> >     else
> >       answer "heavy complaining..."
> >       exit mouseup
> >     end if
>       end repeat ## !!! here is the right place to end that loop ;-)
> >     ask "Please enter more money ehmm your password"
> >     if it is the_password then
> >       answer "do_the_right_thing"
> >     else
> >       answer "heavy complaining... again"
> >     end if
> > ### end repeat
>     ## !!!
> > end mouseup
> >
> > The text file reads this so far...
> >
> > Dr.Zzyzx TAB jOU~f1b.
> > Kolok
> >
> > I can't get it to work. So any problems?
> >
> >  - Josh Dye
>
> Hope this helps...
>
> Best
>
>
> Klaus Major
> k_major at os.surf2000.de
>
> _______________________________________________
> use-revolution mailing list
> use-revolution at lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution




More information about the use-livecode mailing list