Message: 17 Date: Thu, 27 Jan 2005 15:21:09 -0700 From: Dar Scott <[EMAIL PROTECTED]> Subject: Re: Random #'s To: How to use Revolution <use-revolution@lists.runrev.com> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=US-ASCII; format=flowed


On Jan 27, 2005, at 2:31 AM, D.Rothe wrote:

How can I include only unique numbers?

Here is an interesting variation:

on mouseUp
   put rlist()
end mouseUp

function rlist
   put "1,2,3,4,5,6,7,8,9,10" into x
   sort items of x by random(10000)
   return item 1 to 6 of x
end rlist

Dar

I confess, I never understood this.

And I can't imagine how Dwayne will choose among the multitude of solutions proposed. Maybe:

put "all solutions" into x
sort items of "all ten solutions" by random(10000)
return item 1 of x


Jim _______________________________________________ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to