This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.
  • Index
  •  » Advanced Topics
  •  » ITopic: Are there ways to share your creation other than the website?

#151 2009-07-03 09:04:58

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

Thank you for sharing this, as I have used it in my forum now...

Offline

 

#152 2009-07-03 09:16:27

juststickman
Scratcher
Registered: 2009-05-31
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

nick wrote:

Hi!

There's actually a way to share scratch projects on your website or in a folder on a CD or computer without posting them to scratch.mit.edu first. To do it, you need to download the following files to the directory on your website (or a folder on your computer):

1. http://scratch.mit.edu/static/misc/ScratchApplet.jar
2. http://scratch.mit.edu/static/misc/soundbank.gm

(for soundbank.gm, if you're using firefox, right-click and select "Save Link As..." to download)

After copying these to a folder on your computer, put the .sb file in the same folder. Then, create a .htm file with the following contents:

Code:

<html>
<body>
<applet id="ProjectApplet" style="display:block" code="ScratchApplet" codebase="./" archive="ScratchApplet.jar" height="387" width="482">
<param name="project" value="testproject.sb">
</applet>
</body>
</html>

replacing testproject.sb with the name of the project you want to view. This will allow you to either view scratch projects offline (in a folder) or online (on a webserver).

You can view an example of this in action here:
http://web.media.mit.edu/~nbushak/test.html

Additional methods of embedding Scratch projects are detailed here:
http://scratch.wik.is/Publishing_your_S … r_websites

Also, we release new versions of ScratchApplet.jar occasionally for bug fixes. If you're using this a lot, it may be a good idea to stay updated by periodically downloading new versions of ScratchApplet.jar from the website.

Nick

With that, can you post projects over 10MB on your own site?


http://is.gd/iBQi2 Add grob to your sig and help with world dominiation!http://is.gd/iBQ9Q                                                             Hey guys, we're seriously naming our team bob?

Offline

 

#153 2009-07-03 12:37:13

onedudeuk
Scratcher
Registered: 2009-01-11
Posts: 100+

Re: ITopic: Are there ways to share your creation other than the website?

Yes, but they will be so slow to download...


http://i.imgur.com/1FaX3.gif
http://i.imgur.com/yu0s1.gif

Offline

 

#154 2009-07-08 12:17:33

BWOG
Scratcher
Registered: 2008-09-19
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

Is it possible to put a Scratch project on another site without uploading it here besides making the .sb file downloadable?

Offline

 

#155 2009-07-08 17:18:16

FoxDur
Scratcher
Registered: 2008-07-07
Posts: 87

Re: ITopic: Are there ways to share your creation other than the website?

ah, nevermind what I was talking about back there with markdown. I use html now. Wow, I thought I could do that with markdown before. just, wow...  tongue


Do you want an icon? Check out here. Bored? Do you want to animate something? Look here.

Offline

 

#156 2009-07-25 12:19:39

TinycTim
Scratcher
Registered: 2009-07-24
Posts: 2

Re: ITopic: Are there ways to share your creation other than the website?

I continue to have errors like that discussed above. I want to post my Scratch ap on my own server, not on scratch.mit.edu. I put .sb, .gm, .jar and .html on my server, launch .html. It loads then hangs. Here's the URL that does not work. (Note: fixed! see below)

http://primepuzzle.com/blog/labomba.html

I see the following error message in my Java Console:

Problem reading project from URL: "http://primepuzzle.com/blog/LA BOMBA! - Scratch.sb in openurl"

(Note: I should have realized what was wrong based on this error message! See below!)

Any help on this would be greatly appreciated! If I can get past this problem, I'll be in business!

Update July 26, 2009!

I have solved my problem! I am sooooo happy. Using spaces in .sb file names is *not* recommended. Things work OK locally when you do this, but not remotely. So ... all I needed to do was change LA BOMBA! - Scratch.sb to labomba.sb and it worked. If you really want spaces in your .sb names, in the .html file use %20 everywhere you want a space. For example

<applet id="ProjectApplet" style="display:block" code="ScratchApplet" archive="ScratchApplet.jar" height="387" width="482">
<param name="project" value=LA%20BOMBA!%20-%20Scratch.sb>
</applet>

Last edited by TinycTim (2009-07-26 06:31:47)

Offline

 

#157 2009-07-26 19:12:27

Lightnin
Scratch Team
Registered: 2008-11-03
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

Glad you fixed it, TinycTim! And thanks for posting all this helpful information so that others can benefit from your experience.  smile


Help Scratchers make the leap to 2.0!
http://img818.imageshack.us/img818/6844/transitionteam.jpg

Offline

 

#158 2009-07-26 22:02:55

TinycTim
Scratcher
Registered: 2009-07-24
Posts: 2

Re: ITopic: Are there ways to share your creation other than the website?

Dear Lightnin -

Thanks back to you! It's always nice to get feedback like this, especially from a Scratch Team person. I'm a total newbie to Scratch, but already fascinated. I am actually a veteran computer programmer but this Scratch language is, what can I say, something else! I've just managed to write two embarrassingly minimal Scratch programs and it took me quite a while to get them to work. I still don't know how I managed to get an ask and a say block into a script for my sprite but I did.

http://primepuzzle.com/blog/say.html

Offline

 

#159 2009-08-01 04:22:24

Jennaroni
Scratcher
Registered: 2009-05-16
Posts: 8

Re: ITopic: Are there ways to share your creation other than the website?

Hi Nick
This worked well, but I wanted my .sb file to be centered on the web page. I've just found the solution:

<p align="center"><applet id="ProjectApplet" style="display: block;"
code="ScratchApplet" codebase="./" archive="ScratchApplet.jar"
height="387" width="482"><param name="project" value="testproject.sb">
</applet></p>
Jen

Last edited by Jennaroni (2009-08-01 07:15:18)

Offline

 

#160 2009-08-10 19:22:39

Wickimen
Scratcher
Registered: 2009-08-02
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

it says FATAL EXCEPTION OCCURED =/


xDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD

Offline

 

#161 2009-08-18 15:34:17

faceme
Scratcher
Registered: 2009-04-13
Posts: 10

Re: ITopic: Are there ways to share your creation other than the website?

loopylew456 wrote:

Is there anyway I can convert Scratch projects to exe files?

Not with scratch alone.
Chirp can.

Offline

 

#162 2009-08-26 03:18:07

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

yes you can show me where it is and i will give the exe to you

Last edited by TRocket (2009-08-26 03:18:39)


http://i.imgur.com/1QqnHxQ.png

Offline

 

#163 2009-09-26 07:00:03

johnswhite
Scratcher
Registered: 2009-09-26
Posts: 3

Re: ITopic: Are there ways to share your creation other than the website?

There are no longer separate pages for your images and your album. ... Other than that, the only thing that's required is a valid e-mail address. ..... They help you organize your creations and work basically the same way as folders. ..... I don't want people to be able to share my creations on other websites

Offline

 

#164 2009-09-26 15:59:13

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

Does this work for Macs?

Offline

 

#165 2009-09-26 16:05:25

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

The-Whiz wrote:

Does this work for Macs?

Yep! It should work for any operating system as long as Java is installed.

Offline

 

#166 2009-09-28 12:28:46

nikkiperson2
Scratcher
Registered: 2007-12-08
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

http://scratch.mit.edu/forums/viewtopic.php?id=248
This will tell you how to Embed your project  smile


http://i.imgur.com/h9L7Ktb.pnghttp://i.imgur.com/Hz1Cg2s.png

Offline

 

#167 2009-09-28 17:52:35

techblob
Scratcher
Registered: 2009-09-28
Posts: 1

Re: ITopic: Are there ways to share your creation other than the website?

is there any way to make the .sb file larger when displaying on a web page with this method?  ie - when you set the width over the movie size, it's just white space - it doesn't "stretch" the movie like it might do a .swf file.  i'm imagining this is set in the .jar file - is the .jar code open source?

any thoughts on enlarging the output movie would be great - i'd also like to hide the top controls but that's perhaps another issue...

thanks!

Offline

 

#168 2009-10-03 06:17:51

dav09
Scratcher
Registered: 2009-03-25
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

http://dav09.webs.com/h1.htm im not sure what 2 do?

Last edited by dav09 (2009-10-03 06:18:07)

Offline

 

#169 2009-10-20 08:48:25

wiliamsmith01
Scratcher
Registered: 2009-10-20
Posts: 1

Re: ITopic: Are there ways to share your creation other than the website?

indefinite number of ways, but the web is most easy in both outreach and audience. A creators ultimate objective is visibility by maximum viewers. But most essentially, to reach the right audience forums are the most appropriate tools.

Offline

 

#170 2009-10-20 09:13:38

jacool
Scratcher
Registered: 2008-01-25
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

techblob wrote:

is there any way to make the .sb file larger when displaying on a web page with this method?  ie - when you set the width over the movie size, it's just white space - it doesn't "stretch" the movie like it might do a .swf file.  i'm imagining this is set in the .jar file - is the .jar code open source?

any thoughts on enlarging the output movie would be great - i'd also like to hide the top controls but that's perhaps another issue...

thanks!

If you have an embedded project on another website you can edit the HTML code to change the width and Height, have a look at this code:

Code:

 <applet id='ProjectApplet' style='display:block' code='ScratchApplet' codebase='http://scratch.mit.edu/static/misc' archive='ScratchApplet.jar' height='387']width='482'><param name='project' value='../../static/projects/jacool/702268.sb'></applet> <a href='http://scratch.mit.edu/projects/jacool/702268'>Learn more about this project</a>

Last edited by jacool (2009-10-20 09:14:04)


http://i571.photobucket.com/albums/ss159/JacobKar/svensktiger-1.png

Offline

 

#171 2009-10-22 07:12:43

williamkford23
Scratcher
Registered: 2009-10-22
Posts: 3

Re: ITopic: Are there ways to share your creation other than the website?

You may try TV if you are looking for other than web. :-)

Offline

 

#172 2009-10-24 12:34:53

javagal
Scratcher
Registered: 2009-10-24
Posts: 1

Re: ITopic: Are there ways to share your creation other than the website?

May have been answered in the last 7 pages, but can't find it.  I need a simple way to put a Scratch project in a folder or on CD so that someone without Scratch can see it.
Also, can these made into files that can be inserted into PowerPoint or Keynote?  Thanks.

Offline

 

#173 2009-10-24 13:37:42

dav09
Scratcher
Registered: 2009-03-25
Posts: 1000+

Re: ITopic: Are there ways to share your creation other than the website?

http://dav09.webs.com/Emailed/a.htm what will i do here? i have them all saved to my site and in the same folder(im using webs)

Last edited by dav09 (2009-10-24 13:38:27)

Offline

 

#174 2009-10-26 13:00:59

TURKEYPROPERTY
Scratcher
Registered: 2009-10-26
Posts: 1

Re: ITopic: Are there ways to share your creation other than the website?

I really like this great form and can get lots of good idea about my html knowledge
[link removed by moderator]

Last edited by cheddargirl (2009-10-27 01:29:48)

Offline

 

#175 2009-11-09 20:39:32

Commico
Scratcher
Registered: 2009-10-31
Posts: 4

Re: ITopic: Are there ways to share your creation other than the website?

There is a way to turn scratch to a exe!!! here is the address:

http://chirp.scratchr.org/dl/ChirpCompiler-setup.exe
or
http://www.chirp.scratchr.org/blog/?page_id=5
smile

Last edited by Commico (2009-11-09 20:49:02)

Offline

 
  • Index
  •  » Advanced Topics
  •  » ITopic: Are there ways to share your creation other than the website?

Board footer