Discuss Scratch

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

how
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Uhm:

Click the orange category, and then click “Make a List”?

Last edited by medians (April 4, 2023 15:26:00)

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

no i mean like make a list that has working typing with like letters and stuff
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

medians wrote:

Uhm:

Click the orange category, and then click “Make a List”?
no i mean like make a list that has working typing with like letters and stuff
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

no i mean like make a list that has working typing with like letters and stuff
I found this: https://scratch.mit.edu/projects/19204741/
However, it appears to be duplicating the lowercase and capital letters now, and some keys don't work anymore because 3.0 made them impossible to detect without modification. It works fine in 2.0 though.
You could use some sort of typing script, and add the items.

Last edited by medians (April 4, 2023 15:46:07)

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

no i mean no through variables i mean through lists or something
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

no i mean no through variables i mean through lists or something
You could apply the same thing to a list, and use a key like the left arrow one for deleting the previous character. Just add the letters to another list and detect which one is being pressed by iterating over it.

Last edited by medians (April 4, 2023 15:52:36)

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

you see the typing bar in the bottom of the screen i want that link:https://scratch.mit.edu/projects/20680163/
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

medians wrote:

Whopper_Dog wrote:

no i mean no through variables i mean through lists or something
You could apply the same thing to a list, and use a key like the left arrow one for deleting the previous character. Just add the letters to another list and detect which one is being pressed by iterating over it.
you see the typing bar in the bottom of the screen i want that. link:https://scratch.mit.edu/projects/20680163/
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

you see the typing bar in the bottom of the screen i want that link:https://scratch.mit.edu/projects/20680163/
Like this?
https://scratch.mit.edu/projects/830984104/
You can add a wait between everything.
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

no i said in the project i sent you look at the bottom of the screen of that project you can type in that thing i want that type of typing thing
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

medians wrote:

Whopper_Dog wrote:

you see the typing bar in the bottom of the screen i want that link:https://scratch.mit.edu/projects/20680163/
Like this?
https://scratch.mit.edu/projects/830984104/
You can add a wait between everything.
no i said in the project i sent you look at the bottom of the screen of that project you can type in that thing i want that type of typing thing
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

medians wrote:

Whopper_Dog wrote:

you see the typing bar in the bottom of the screen i want that link:https://scratch.mit.edu/projects/20680163/
Like this?
https://scratch.mit.edu/projects/830984104/
You can add a wait between everything.
no i said in the project i sent you look at the bottom of the screen of that project you can type in that thing i want that type of typing thing
OHH, you can do this:

Those are blocks in the Sensing category.

Last edited by medians (April 4, 2023 16:57:53)

deck26
Scratcher
1000+ posts

how do i make a type list in scratch?

The input is just an ask block. A script then takes that input and processes it to produce the list showing how the text builds one character at a time. That's all fairly straightforward and that project shows you how to do it so what is your question?
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

medians wrote:

Whopper_Dog wrote:

medians wrote:

Whopper_Dog wrote:

you see the typing bar in the bottom of the screen i want that link:https://scratch.mit.edu/projects/20680163/
Like this?
https://scratch.mit.edu/projects/830984104/
You can add a wait between everything.
no i said in the project i sent you look at the bottom of the screen of that project you can type in that thing i want that type of typing thing
OHH, you can do this:

Those are blocks in the Sensing category.
how do i get type block tho?
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

how do i get type block tho?
…Uhm, there are 2 projects linked with the custom block and the code.
https://scratch.mit.edu/projects/830984104/
You can backpack the script and give credit. It's a custom block (More Blocks).

Last edited by medians (April 4, 2023 18:43:26)

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

what do i define type by ?

medians wrote:

Whopper_Dog wrote:

how do i get type block tho?
…Uhm, there are 2 projects linked with the custom block and the code.
https://scratch.mit.edu/projects/830984104/
You can backpack the script and give credit. It's a custom block (More Blocks).
Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

define 
medians
Scratcher
1000+ posts

how do i make a type list in scratch?

Whopper_Dog wrote:

what do i define type by ?

medians wrote:

Whopper_Dog wrote:

how do i get type block tho?
…Uhm, there are 2 projects linked with the custom block and the code.
https://scratch.mit.edu/projects/830984104/
You can backpack the script and give credit. It's a custom block (More Blocks).
You click “Options”, and you can select different inputs. In this case, click string/text. You can drag the reporters to use them in the definition, and use the code provided in the link.

Last edited by medians (April 4, 2023 19:40:45)

Whopper_Dog
Scratcher
80 posts

how do i make a type list in scratch?

medians wrote:

Whopper_Dog wrote:

what do i define type by ?

medians wrote:

Whopper_Dog wrote:

how do i get type block tho?
…Uhm, there are 2 projects linked with the custom block and the code.
https://scratch.mit.edu/projects/830984104/
You can backpack the script and give credit. It's a custom block (More Blocks).
You click “Options”, and you can select different inputs. In this case, click string/text. You can drag the reporters to use them in the definition, and use the code provided in the link.
can you just use the code block things to describe this cuz i didnt get a thing u said

Powered by DjangoBB