Discuss Scratch

-Mistyx
Scratcher
100+ posts

Some annoying glitch ((or wrong code problem))

There is this annoying size glitch that I can't fix:

Here is the code that I'm using:

when green flag clicked
set size to (100) %
hide

then

when I receive [message1 v]
show
repeat (100)
change size by (1)
end


when I do that, it changes to 74 size and then I can't add any more size but below 74. idk how to fix it, can someone help me?
PhiPhenomenon
Scratcher
500+ posts

Some annoying glitch ((or wrong code problem))

Scratch has a size limit that prevents sprites from ballooning up to ridiculous sizes. Fortunately, you can work around this by creating an empty costume, resizing that, and switching back to the original costume.

repeat (100)
switch costume to [Empty v]
change size by (1)
switch costume to [Normal v]
09878901234321
Scratcher
500+ posts

Some annoying glitch ((or wrong code problem))

Here's what you should do:

Have an empty costume so that you can set the size to whatever you want (this is just how scratch works) and then change the size, and switch the costume back.



then

when I receive [message1 v]
show
repeat (100)
switch costume to [blank costume v]
change size by (1)
switch costume to [whatever other costume v]
end
medians
Scratcher
1000+ posts

Some annoying glitch ((or wrong code problem))

Try this instead of the regular size block:

Spentine
Scratcher
1000+ posts

Some annoying glitch ((or wrong code problem))

medians wrote:

Try this instead of the regular size block:

Alternatively you could do this:

define size (n)
set [costume v] to (costume name)
if <(n) > (100)> then
switch costume to (small v)
else
switch costume to (large v)
end
set size to (n) %
switch costume to (costume)
CAVEMAN_BEK
Scratcher
4 posts

Some annoying glitch ((or wrong code problem))

make an emty acostuime and name it nothing then you cAn set the soxe to whateber and a yotheb can set cos tan sin

-Mistyx
Scratcher
100+ posts

Some annoying glitch ((or wrong code problem))

Thanks everyone
capdock4321
Scratcher
11 posts

Some annoying glitch ((or wrong code problem))

when green flag clicked
forever
[small]weeee[/small]
end
NamePending_
Scratcher
100+ posts

Some annoying glitch ((or wrong code problem))

capdock4321 wrote:

when green flag clicked
forever
[small]weeee[/small]
end
Please don't necropost.
-Mistyx
Scratcher
100+ posts

Some annoying glitch ((or wrong code problem))

How did ya’ll find this

Powered by DjangoBB