This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-12-03 20:44:41

MichaelKenyon
New Scratcher
Registered: 2012-10-18
Posts: 2

Asking a question in a list

I set up a list with 5 questions and I want to ask a question with the text from one of the entries in my list. How can I set this up?

Offline

 

#2 2012-12-03 20:52:36

scratchyrocks
Scratcher
Registered: 2012-09-29
Posts: 19

Re: Asking a question in a list

when i receive [ask now v]
ask (item (any v) of [list v]) and wait
does this help?

Offline

 

#3 2012-12-04 17:15:18

bubby3
Scratcher
Registered: 2012-11-19
Posts: 44

Re: Asking a question in a list

How to ask all questions:

when I receive [ask al v]
repeat (length of [list v])
  ask (item (number) of list)
  change [number v] by (1)
end

Offline

 

#4 2012-12-05 07:45:30

jontmy00
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: Asking a question in a list

bubby3 wrote:

How to ask all questions:

when gf clicked
set [counter v] to [0]
repeat (length of [list v])
change [counter v] by (1)
ask (item (counter) of [questions v]) and wait
wait <whatever amount you want> secs
end


FOR ALL THE NEWS ON UPDATES FOR SIMPLISTICRAFT, CLICK HERE.

Offline

 

Board footer