A aloof Member Licensed User Longtime User Nov 10, 2012 #1 Hi guys I'm looking at doing random effects on a loaded picture how would i go about doing this? rnd? Thanks in advanced
Hi guys I'm looking at doing random effects on a loaded picture how would i go about doing this? rnd? Thanks in advanced
klaus Expert Licensed User Longtime User Nov 10, 2012 #2 What exactly are you missing ? B4X: RandomInteger = Rnd(0, 1000) returns a random integer between 0 and 999. Best regards. Upvote 0
What exactly are you missing ? B4X: RandomInteger = Rnd(0, 1000) returns a random integer between 0 and 999. Best regards.
A aloof Member Licensed User Longtime User Nov 10, 2012 #3 Hi im not much more than a beginner here the only way i can think of doing it is n = rnd (1 to 10) if n = 1 then do effect but thats alot of if and else statements thanx Klaus Last edited: Nov 10, 2012 Upvote 0
Hi im not much more than a beginner here the only way i can think of doing it is n = rnd (1 to 10) if n = 1 then do effect but thats alot of if and else statements thanx Klaus
klaus Expert Licensed User Longtime User Nov 10, 2012 #4 You can also use: B4X: n = Rnd (1 to 10) Select n Case 1 Case 2 Case 3 . . . Case 9 End Select Best regards. Last edited: Nov 11, 2012 Upvote 0
You can also use: B4X: n = Rnd (1 to 10) Select n Case 1 Case 2 Case 3 . . . Case 9 End Select Best regards.
A aloof Member Licensed User Longtime User Nov 10, 2012 #5 Thanks Klaus love youR work Last edited: Nov 10, 2012 Upvote 0