Discuss Scratch

SimpleScratch
Scratcher
500+ posts

how to download old 1.4 projects as 1.4 projects

The Raspberry Pi only runs V1.4 projects - how can we download old 1.4 projects as .sb files and not as .sb2 please?

Simon
cheddargirl
Scratch Team
1000+ posts

how to download old 1.4 projects as 1.4 projects

When you click on “Share to” (found underneath the project stage), a window should pop up with a link to the 1.4 file download. However, the link will only appear if the project has a 1.4 file associated with it (projects that have been edited or made using Scratch 2.0 will not have the link in there).

Sadly, my forum signature was eaten by an evil kumquat.
SimpleScratch
Scratcher
500+ posts

how to download old 1.4 projects as 1.4 projects

Phew!

Thanks very much

Simon
michaelxy
Scratcher
3 posts

how to download old 1.4 projects as 1.4 projects

Hmm - I only can find share with twitter or facebook but no 1.4 download File.

Last edited by michaelxy (Sept. 15, 2013 09:18:03)

cheddargirl
Scratch Team
1000+ posts

how to download old 1.4 projects as 1.4 projects

michaelxy wrote:

Hmm - I only can find share with twitter or facebook but no 1.4 download File.
If there's no download file available, then it mean's that the project was made in Scratch 2.0 and doesn't have a file associated with older versions of Scratch.

Sadly, my forum signature was eaten by an evil kumquat.
blob8108
Scratcher
1000+ posts

how to download old 1.4 projects as 1.4 projects

http://kurt.herokuapp.com/20to14

tosh · slowly becoming a grown-up adult and very confused about it
vitarie
Scratcher
8 posts

how to download old 1.4 projects as 1.4 projects

When I click “Share To” a window does not pop up at all. How would I fix this situation?
turkey3
Scratcher
1000+ posts

how to download old 1.4 projects as 1.4 projects

vitarie wrote:

When I click “Share To” a window does not pop up at all. How would I fix this situation?
That means the project was made or edited in 2.0, which makes it a .sb2 file and cannot be edited or downloaded in 1.4.

vitarie
Scratcher
8 posts

how to download old 1.4 projects as 1.4 projects

turkey3 wrote:

vitarie wrote:

When I click “Share To” a window does not pop up at all. How would I fix this situation?
That means the project was made or edited in 2.0, which makes it a .sb2 file and cannot be edited or downloaded in 1.4.

Actually, this project was made completely in 1.4. So I don't know why it's not working. :T

I have tried it on multiple projects, but nothing pops up. Nothing happens when I click the “Share To” button.

Last edited by vitarie (Sept. 19, 2013 01:25:50)

blob8108
Scratcher
1000+ posts

how to download old 1.4 projects as 1.4 projects

If you can't download it as a 1.4 project, “See Inside” and download the 2.0 project to your computer, and then use the tool at http://kurt.herokuapp.com/20to14 to convert the 2.0 project to a 1.4 one.

tosh · slowly becoming a grown-up adult and very confused about it
cheddargirl
Scratch Team
1000+ posts

how to download old 1.4 projects as 1.4 projects

vitarie wrote:

turkey3 wrote:

vitarie wrote:

When I click “Share To” a window does not pop up at all. How would I fix this situation?
That means the project was made or edited in 2.0, which makes it a .sb2 file and cannot be edited or downloaded in 1.4.

Actually, this project was made completely in 1.4. So I don't know why it's not working. :T

I have tried it on multiple projects, but nothing pops up. Nothing happens when I click the “Share To” button.
The ST did a quick hotfix recently for a 1.4 file download bug that was introduced in the last update. Maybe you might need to clear your cache?

Sadly, my forum signature was eaten by an evil kumquat.
macadam
Scratcher
500+ posts

how to download old 1.4 projects as 1.4 projects

What is Raspberry Pi?

Macadam, Scratcher since october 2012. Started as a stupid immature kid - but trying to clean that painful rembering
vitarie
Scratcher
8 posts

how to download old 1.4 projects as 1.4 projects

blob8108 wrote:

If you can't download it as a 1.4 project, “See Inside” and download the 2.0 project to your computer, and then use the tool at http://kurt.herokuapp.com/20to14 to convert the 2.0 project to a 1.4 one.

This is a very helpful file, thanks! How would I select a project from the website to convert? Please get back to me as soon as possible, thanks. You've all been so patient and kind.
blob8108
Scratcher
1000+ posts

how to download old 1.4 projects as 1.4 projects

vitarie wrote:

How would I select a project from the website to convert?
Find the project on the website -> Click “See Inside” -> File -> “Download to your computer”

Then on http://kurt.herokuapp.com/20to14, click “Choose File”, and select the file you just downloaded.

tosh · slowly becoming a grown-up adult and very confused about it
mobluse
Scratcher
100+ posts

how to download old 1.4 projects as 1.4 projects

You may also download and do the conversion of a Scratch 2-projects using only Raspberry Pi, see http://scratch.mit.edu/studios/244489/ . <– Here are Scratch 1.4 projects that have been tested on Raspberry Pi Model A. In many cases they were automatically converted from portable Scratch 2-projects in this studio: http://scratch.mit.edu/studios/259231/ . They were converted to Scratch 1.4 using Bash- and Python-scripts in Raspbian, see http://www.raspberrypi.org/phpBB3/viewtopic.php?f=77&t=44525 . The originals are here: http://scratch.mit.edu/studios/259778/ . If you can, please use the originals since some bugs might have been introduced when converting. The originals also have vector graphics which looks better.

You can download Scartch 1.4 projects from the Bash-command-line in Rasbian using cURL and replace the project-number proj and username user:
proj=12766255;curl -Lo $proj.sb http://projects.scratch.mit.edu/internalapi/project/$proj/get/

Alternative for old projects:
user=swampfox; proj=86075; curl -Lo $proj.sb https://scratch.mit.edu/static/projects/$user/$proj.sb

You can also download all using (everything should be on one Bash command-line):
studio=244489; curl -L http://scratch.mit.edu/site-api/projects/in/$studio/1/ 2> /dev/null | sed -n -e 's|.*data-id=\"\([0-9]*\)\".*|\1|p' -e 's|.*/users/\(.*\)/".*|\1|p' | while read proj; do read user; curl -Lo b-$user-$proj.sb http://scratch.mit.edu/services/download/$proj/; curl -Lo a-$user-$proj.sb https://scratch.mit.edu/static/projects/$user/$proj.sb; file a-$user-$proj.sb b-$user-$proj.sb | sed -n '/:.*data/! {s/:.*//p}' | xargs rm; done

If you have Java in your web-browser you can run some of these online from http://scratch.orbin.se/j/ or if you have JDK (built-in into Raspbian) start them from the command-line:
appletviewer http://scratch.orbin.se/j/

These codes probably also work on any Linux and Mac OS X.

My browser / operating system: Linux, Chrome 22.0.1229.94, Flash 12.0 (release 0)

Last edited by mobluse (May 28, 2015 13:29:52)


anu456
New to Scratch
1 post

how to download old 1.4 projects as 1.4 projects

I NEVER GOT IT DOWNLOADED
mariomarioluigi554
Scratcher
17 posts

how to download old 1.4 projects as 1.4 projects

Can you download a project made in 2.0 but no new stuff (like vector) to 1.4?
cheddargirl
Scratch Team
1000+ posts

how to download old 1.4 projects as 1.4 projects

mariomarioluigi554 wrote:

Can you download a project made in 2.0 but no new stuff (like vector) to 1.4?
Unfortunately, no. There are some users who created conversion programs, though. There's a link to one of them in the previous posts in this thread.

Sadly, my forum signature was eaten by an evil kumquat.
SimpleScratch
Scratcher
500+ posts

how to download old 1.4 projects as 1.4 projects

Updated info
You need to click on the Embed button before the option to download a 1.4 file as 1.4 appears on the right

Simon
CatsUnited
Scratcher
1000+ posts

how to download old 1.4 projects as 1.4 projects

macadam wrote:

What is Raspberry Pi?
This is a Raspberry Pi

It's a type of computer that can run Scratch 1.4

bottom text

Powered by DjangoBB