Say () for () seconds: Difference between revisions

From PenguinMod Wiki
Say () for () seconds
Jump to navigation Jump to search
Content added Content deleted
m (Added see also)
No edit summary
 
Line 1: Line 1:
{{Needs Images}}
{{Infobox Block
{{Infobox Block
|block_type = Stack Block
|block_type = Stack Block
|category = [[Looks]]
|category = [[Looks]]
|title = say () for () seconds
|title = say () for () seconds
|block_name = say () for () seconds
}}
}}
The '''say () for () seconds''' (shortened to secs before Scratch 3.0) block is a stack block in the [[Looks]] category that originates from [[Scratch]]. It says the entered text for the specified amount of time before the speech bubble disappears, and functions like the [[say ()]] block. The default text is "Hello!", just like the say () block, while the default number is 2.
The '''say () for () seconds''' (shortened to secs before Scratch 3.0) block is a stack block in the [[Looks]] category that originates from [[Scratch]]. It says the entered text for the specified amount of time before the speech bubble disappears, and functions like the [[say ()]] block. The default text is "Hello!", just like the say () block, while the default number is 2.
==Workaround==
==Workaround==
This block can be worked around by using a [[say ()]] block with the text, and using a [[wait () seconds]] block followed by a [[stop speaking]] block to wait for the specified time to elapse. Alternatively, the workaround for the stop speaking block can be used.
This block can be worked around by using a [[say ()]] block with the text, and using a [[wait () seconds]] block followed by a [[stop speaking]] block to wait for the specified time to elapse. Alternatively, the workaround for the stop speaking block can be used.
<scratchblocks>
say [Hello!]
wait (2) seconds
stop speaking::looks
</scratchblocks>
==See also==
==See also==
*[[say ()]]
*[[say ()]]
*[[think ()]]
*[[think () for () seconds]]
*[[think () for () seconds]]
{{DISPLAYTITLE:say () for () seconds}}
{{DISPLAYTITLE:say () for () seconds}}

Latest revision as of 15:44, 30 June 2024

say () for () seconds
say () for () seconds
Caption
Block Type Stack Block
Category / Extension Looks
Status Who tf uses status

The say () for () seconds (shortened to secs before Scratch 3.0) block is a stack block in the Looks category that originates from Scratch. It says the entered text for the specified amount of time before the speech bubble disappears, and functions like the say () block. The default text is "Hello!", just like the say () block, while the default number is 2.

Workaround

This block can be worked around by using a say () block with the text, and using a wait () seconds block followed by a stop speaking block to wait for the specified time to elapse. Alternatively, the workaround for the stop speaking block can be used.

say [Hello!]
wait (2) seconds
stop speaking::looks

See also