Discuss Scratch

50_scratch_tabs
Scratcher
1000+ posts

copy to clipboard/copy block

Bump, I made a duplicate.

Also king of the page
spraypaintdev
Scratcher
500+ posts

copy to clipboard/copy block

Support. I like the Idea! Sometimes, using lists sometimes won't work because the text is too long and any potential misuse of this feature, if there can be reported!
jmdzti_0-0
Scratcher
1000+ posts

copy to clipboard/copy block

-Accio- wrote:

Weak Support

While this could be useful in the circumstance you said, that circumstance is pretty specific, and there aren't many other times when this would be useful. Also, this could have the (although small) possibility for private messaging, using something like the script below.

when green flag clicked
if <(username) = [-Accio-]> then
copy [Private Message] to clipboard::control
end
Still would be able to insepect the project. Also,
8to16
Scratcher
1000+ posts

copy to clipboard/copy block

if anyone wants, you can try this out here

all we have to do is to modify the extension to work in vanilla scratch, and then put it into the editor, then the suggestion would basically be implemented!

Last edited by 8to16 (Nov. 10, 2024 15:03:36)

ScratchUser139
Scratcher
100+ posts

copy to clipboard/copy block

Can I say it's a duplicate of this?: https://scratch.mit.edu/discuss/topic/45524/
everwinner64
Scratcher
1000+ posts

copy to clipboard/copy block

ScratchUser139 wrote:

Can I say it's a duplicate of this?: https://scratch.mit.edu/discuss/topic/45524/
As this topic is younger than the one in the link, I think that yes…
seriouslyscratchy1
Scratcher
100+ posts

copy to clipboard/copy block

There is a workaround but I like your suggestion.
AHypnoman
Scratcher
1000+ posts

copy to clipboard/copy block

seriouslyscratchy1 wrote:

There is a workaround but I like your suggestion.
Not one that doesn't require the user to follow a series of steps that differ from device to device.

Last edited by AHypnoman (Jan. 1, 2025 16:16:09)

50_scratch_tabs
Scratcher
1000+ posts

copy to clipboard/copy block

seriouslyscratchy1 wrote:

(#107)
There is a workaround but I like your suggestion.
The workaround doesn't work on mobile unless the text to copy is smaller than the length of the screen.
jmdzti_0-0
Scratcher
1000+ posts

copy to clipboard/copy block

moved to the original topic

Last edited by jmdzti_0-0 (Jan. 1, 2025 19:24:32)

Asheryo
Scratcher
20 posts

copy to clipboard/copy block

when green flag clicked
set to
set to
set to
set to
go to x: (-100) y: (0)

forever
// Charge jump when holding space
if <key pressed> then
set to
if <(jumpPower) < 20> then
change by (1)
end
else
// When space released, jump!
if <isCharging = true> then
set to (jumpPower)
set to
set to
end
end

// Gravity
change y by (ySpeed)
change by (-1)

// Platform collision
if <touching > and <(ySpeed) < 0> then
set to
change by (1)
end

// Reset if fall
if <(y position) < -200> then
go to x: (-100) y: (0)
set to
set to
end

// Charging visual effect
if <isCharging = true> then
set size to (100 + (jumpPower * 2))
else
set size to (100)
end
end

Powered by DjangoBB