********** > Date: Wed, 19 Feb 2003 13:07:35 -0700 > Subject: Indirection question > From: Barry Levine <[EMAIL PROTECTED]>
> on mouseUp > if currentLetter = "W" then put "theW" into theList > (etc) > answer theList > end mouseUp > > Now, if I do this, the answer dialog shows "theW" instead of the > contents of the var named theW. Obviously, I'm not referring to the > variable in the appropriate manner. ---------- Remove the quotes: if currentLetter = "W" then put theW into theList ...theList will then have the same content as theW Too easy? Ken N. _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
