Discuss Scratch

-PhoenixAnimates-
Scratcher
100+ posts

GIF's Not Loading Properly

My browser / operating system: Windows NT 10.0, Chrome 83.0.4103.116, No Flash version detected

Hello! I'd like to report a bug in scratch: When I upload a GIF via the costumes section, (uploading the GIF via the sprites section doesn't work for me for whatever reason) the costumes get mixed up:

For example, the 4th costume might switch with the 6th, and the 7th might switch with the first.

In other words, it's not getting the order of the frames correctly.

Is there a fix for this? Or will scratch have to upload gifs another way…

All your signature are belong to us

-Evil Kumquat Leader
qrcool
Scratcher
1000+ posts

GIF's Not Loading Properly

I do not know of a solution to prevent it from happening, but it should be fairly easy to put the costumes back in order. It may also be something to do with what site you got the GIF from, and where is is currently saved. I find using makeagif.com and saving it iCloud Drive(Or whatever that dreive that uploads to the cloud is called).

he/they/it/neos
-PhoenixAnimates-
Scratcher
100+ posts

GIF's Not Loading Properly

Bump

qrcool wrote:

I do not know of a solution to prevent it from happening, but it should be fairly easy to put the costumes back in order. It may also be something to do with what site you got the GIF from, and where is is currently saved. I find using makeagif.com and saving it iCloud Drive(Or whatever that dreive that uploads to the cloud is called).
The GIF file is fine. I already checked.

Last edited by -PhoenixAnimates- (July 13, 2020 19:40:37)


All your signature are belong to us

-Evil Kumquat Leader
Oumuamua
Scratcher
1000+ posts

GIF's Not Loading Properly

-PhoenixAnimates- wrote:

My browser / operating system: Windows NT 10.0, Chrome 83.0.4103.116, No Flash version detected

Hello! I'd like to report a bug in scratch: When I upload a GIF via the costumes section, (uploading the GIF via the sprites section doesn't work for me for whatever reason) the costumes get mixed up:

For example, the 4th costume might switch with the 6th, and the 7th might switch with the first.

In other words, it's not getting the order of the frames correctly.

Is there a fix for this? Or will scratch have to upload gifs another way…

Hi, from where you got it?
If it is in a web, could you give me a direct link to the GIF?


-PhoenixAnimates-
Scratcher
100+ posts

GIF's Not Loading Properly

No, I created the gif myself. It has a little over 1300 frames. I did compress it, but that didn't seem to fix anything.

Last edited by -PhoenixAnimates- (July 15, 2020 16:03:15)


All your signature are belong to us

-Evil Kumquat Leader
Flowermanvista
Scratcher
1000+ posts

GIF's Not Loading Properly

My browser / operating system: Windows NT 10.0, Firefox 83.0, Flash 32.0 (release 0)
Bump! This does seem to be happening for me also - but only on Scratch Desktop, and only when I import the GIF into an existing sprite. When I import the GIF into a new sprite, all frames are in the correct order.

Add a SPOOKY SKELETON to your project!

The Scratch 3 Project Save Troubleshooter - find out why your project won't save

ST, Please Add A Warning When A Size Limit Is Exceeded

My Dumb Creations - THE BEST ANIMATION | The Windows 98 Experience (made on Windows 98) | nobody cares about Me… | the2000 Reveals His New Profile Picture | Not Dumb Creations - Ten Years
Ctrl+Shift+Down for more…
Do evil kumquats keep eating your signature? Assert your dominance and eat the evil kumquats. Did you know that kumquats are only about the size of an olive?
xouzouris
Scratcher
100+ posts

GIF's Not Loading Properly

Flowermanvista wrote:

My browser / operating system: Windows NT 10.0, Firefox 83.0, Flash 32.0 (release 0)
Bump! This does seem to be happening for me also - but only on Scratch Desktop, and only when I import the GIF into an existing sprite. When I import the GIF into a new sprite, all frames are in the correct order.
The problem is that if the gif has too many images, importing it into a new sprite will (in my case) never load…

>> Head of Scratchedia <<

Scratchedia is the recreation of the
internet, on Scratch, that's safe!

Random Stuff:
My little cousin asked me why we can't make and run a nuclear reactor at home…

Don't forget to keep on Scratchin'
Oumuamua
Scratcher
1000+ posts

GIF's Not Loading Properly

xouzouris wrote:

Flowermanvista wrote:

My browser / operating system: Windows NT 10.0, Firefox 83.0, Flash 32.0 (release 0)
Bump! This does seem to be happening for me also - but only on Scratch Desktop, and only when I import the GIF into an existing sprite. When I import the GIF into a new sprite, all frames are in the correct order.
The problem is that if the gif has too many images, importing it into a new sprite will (in my case) never load…

Maybe you need a better device(more RAM memory), able to manage lots of data. It happens to me too.

Last edited by Oumuamua (Jan. 16, 2021 17:10:21)



EzriGamer26
Scratcher
100+ posts

GIF's Not Loading Properly

yea same happing to me

STAN SQUID SISTERS ❤️❤️❤️
Bruh Duuuuuuuuuuuuuuuude!
BRUH BABY uh…. whyyyy did i make this my signature?
EzriGamer26

MY EVIL KUMQUAT GUARDS!!!!!1!!!
Do NOT bump me or I will bump you!

(>=D)
THE EVIL KUMQUAT IS HERE!!!!
Flowermanvista
Scratcher
1000+ posts

GIF's Not Loading Properly

Bumping this because of a new potential workaround that I never thought of before:

CatsUnited wrote:

I've experienced this and I used an alternative way to fix the ordering - to use scripts to fix the ordering
When you import a gif (e.g funny-gif), all the frames come out as funny-gif, then funny-gif2, then funny-gif3 etc. Even if they are out of order, you can play the sequence in order by requesting the exact costume name rather than using “next costume”, like this:

switch costume to [funny-gif v]
set [frame v] to [1]
repeat (length of gif:: #969696)
wait (0) secs
change [frame v] by (1)
switch costume to (join [funny-gif] (frame))
end

Now the gif should be playing with every frame in the correct part of the sequence.

Add a SPOOKY SKELETON to your project!

The Scratch 3 Project Save Troubleshooter - find out why your project won't save

ST, Please Add A Warning When A Size Limit Is Exceeded

My Dumb Creations - THE BEST ANIMATION | The Windows 98 Experience (made on Windows 98) | nobody cares about Me… | the2000 Reveals His New Profile Picture | Not Dumb Creations - Ten Years
Ctrl+Shift+Down for more…
Do evil kumquats keep eating your signature? Assert your dominance and eat the evil kumquats. Did you know that kumquats are only about the size of an olive?
-PhoenixAnimates-
Scratcher
100+ posts

GIF's Not Loading Properly

Flowermanvista wrote:

Bumping this because of a new potential workaround that I never thought of before:

CatsUnited wrote:

I've experienced this and I used an alternative way to fix the ordering - to use scripts to fix the ordering
When you import a gif (e.g funny-gif), all the frames come out as funny-gif, then funny-gif2, then funny-gif3 etc. Even if they are out of order, you can play the sequence in order by requesting the exact costume name rather than using “next costume”, like this:

switch costume to [funny-gif v]
set [frame v] to [1]
repeat (length of gif:: #969696)
wait (0) secs
change [frame v] by (1)
switch costume to (join [funny-gif] (frame))
end

Now the gif should be playing with every frame in the correct part of the sequence.
This works, thanks!

All your signature are belong to us

-Evil Kumquat Leader
Tunde123
Scratcher
1000+ posts

GIF's Not Loading Properly

AnelDUROEMIL wrote:

when green flag clicked
(we just need * gifs!)
(scratch:) + (nope))]
define ok
say [very amogus]
Please do not blockspam.

This is a SIGNATURE. This is seperate from a normal post ^
Forum Posts: 2600+/3000
Highlight + Shift + Down Arrow = To see whole signature.




Want to friend me on Roblox? My username is BaconvsRoblox121314 if you want to friend me!

–v More Information v–
New Scratchers - Introduce yourself here!

Questions about Scratch - Ask questions related to scratch here!

Help with Scripts - get/provide help here!

Suggestions - Suggest blocks, features, and more here!

Bugs and Glitches - Report bugs/glitches here!

Last edited by Tunde123 (May 17th, 2022 10:18 AM EST)
-Refreshed
Scratcher
1 post

GIF's Not Loading Properly

When I insert GIFS, only one frame shows. I think that it's a bug in scratch 3.0.
——————————————————————————————————–
Also, for tutorials, go to my studio ! ——> Click here for my tutorials!

Last edited by -Refreshed (June 20, 2022 12:50:26)

sk171044
Scratcher
20 posts

GIF's Not Loading Properly

-PhoenixAnimates- wrote:

My browser / operating system: Windows NT 10.0, Chrome 83.0.4103.116, No Flash version detected

Hello! I'd like to report a bug in scratch: When I upload a GIF via the costumes section, (uploading the GIF via the sprites section doesn't work for me for whatever reason) the costumes get mixed up:

For example, the 4th costume might switch with the 6th, and the 7th might switch with the first.

In other words, it's not getting the order of the frames correctly.

Is there a fix for this? Or will scratch have to upload gifs another way…

same, this makes me making projects with animations much harder (I have to fix ever single frames!)

Last edited by sk171044 (Dec. 31, 2022 09:28:32)

xz-Blaze
Scratcher
1000+ posts

GIF's Not Loading Properly

sk171044 wrote:

-PhoenixAnimates- wrote:

My browser / operating system: Windows NT 10.0, Chrome 83.0.4103.116, No Flash version detected

Hello! I'd like to report a bug in scratch: When I upload a GIF via the costumes section, (uploading the GIF via the sprites section doesn't work for me for whatever reason) the costumes get mixed up:

For example, the 4th costume might switch with the 6th, and the 7th might switch with the first.

In other words, it's not getting the order of the frames correctly.

Is there a fix for this? Or will scratch have to upload gifs another way…

same, this makes me making projects with animations much harder (I have to fix ever single frames!)
please dont necropost. necroposting is posting on an old, abandoned topic.

if one more person comments "Blaze" on my profile... | water
i ate an evil kumquat before it ate me!!!
DO NOT attempt to eat my- CHOMP CHOMP CHOMP!!!
you'll never take me alive, evil thing! credit to cheddargirl.
the 2016 Sing topic
;
dripPC
Scratcher
1 post

GIF's Not Loading Properly

EzriGamer26 wrote:

yea same happing to me
the same is also happening to me

Powered by DjangoBB