Hey guyz! ive seen many websites made by scratchers where they upload they projects, and they made it on www.webs.com (i think so
). could some1 tell me how to upload projects on it? (if you have ever seen that page)
Offline
There is an embed button on the project page. Copy the applet one and past the html code on your web page. There is another way but this one works fine. You could make a secret account if you only want people to see it on your site.
My site Offline
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. Thx
Offline
kennyshane wrote:
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. Thx
what-the wrote:
There is an embed button on the project page. Copy the applet one and past the html code on your web page. There is another way but this one works fine. You could make a secret account if you only want people to see it on your site.
Offline
Harakou wrote:
kennyshane wrote:
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. Thxwhat-the wrote:
There is an embed button on the project page. Copy the applet one and past the html code on your web page. There is another way but this one works fine. You could make a secret account if you only want people to see it on your site.
I don't think that is what she means.
She wants them to play as a Flash file.
I don't know how to do it automatically, but you can use Stencyl (when it is released) to re-make the project, then upload. Find it at http://www.stencyl.com/ .
Otherwise, I don't know.




Offline
lackofslackness wrote:
Harakou wrote:
kennyshane wrote:
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. Thxwhat-the wrote:
There is an embed button on the project page. Copy the applet one and past the html code on your web page. There is another way but this one works fine. You could make a secret account if you only want people to see it on your site.
I don't think that is what she means.
She wants them to play as a Flash file.
I don't know how to do it automatically, but you can use Stencyl (when it is released) to re-make the project, then upload. Find it at http://www.stencyl.com/ .
Otherwise, I don't know.
Doesn't this just means that you have an image of the game on the site and when it is clicked it brings you directly to the game on the scratch site? It would be cool if you could post it on a website and have people be able to play it directly on that website and not have to be brought back to any other. Then you could show off and trick everyone into thinking you know how to program flash games.
Offline
-GizzardGulp- wrote:
lackofslackness wrote:
Harakou wrote:
kennyshane wrote:
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. ThxI don't think that is what she means.
She wants them to play as a Flash file.
I don't know how to do it automatically, but you can use Stencyl (when it is released) to re-make the project, then upload. Find it at http://www.stencyl.com/ .
Otherwise, I don't know.Doesn't this just means that you have an image of the game on the site and when it is clicked it brings you directly to the game on the scratch site? It would be cool if you could post it on a website and have people be able to play it directly on that website and not have to be brought back to any other. Then you could show off and trick everyone into thinking you know how to program flash games.
![]()
I have a solution! Use the experimental flash player.
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://scratch.mit.edu/static/experimental/css/viewproject.css" />
<script type="text/javascript" src="http://scratch.mit.edu/static/experimental/js/jquery-1.4.2.js"></script>
<script type="text/javascript" src="http://scratch.mit.edu/static/experimental/js/viewproject.js"></script>
<script type="text/javascript" src="http://scratch.mit.edu/static/experimental/js/experimental.js"></script>
<script>
function getUrlVars()
{
var args = window.location.href.slice(window.location.href.indexOf('?') + 1);
var vars = [], hash;
var hashes = args.split('&');
for(var i = 0; i < hashes.length; i++){
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
var urlvars = getUrlVars();
var sb = urlvars['sb'];
var id = urlvars['id'];
</script>
</head>
<body>
<div class="header">
<div class="logo">
<img src="http://scratch.mit.edu/static/experimental/img/justscratch.png">Experimental Viewer
</div>
<div class="help">
<a href="#" onClick="showHelp()">Questions about this viewer?</a>
</div>
</div>
<div class="frame" id="div">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://macromedia.com/cabs/swflash.cab#version=6,0,40,0"
id=Scratch WIDTH="100%" HEIGHT="100%">
<PARAM NAME=movie VALUE="http://scratch.mit.edu/static/experimental/Scratch.swf?owner=HD123&projectname=1397802&userid=408726">
<PARAM NAME="bgcolor" VALUE="#000000">
<PARAM NAME=quality VALUE=medium>
<PARAM NAME="allowScriptAccess" VALUE="always">
<param NAME="wmode" VALUE="opaque">
<EMBED src="http://scratch.mit.edu/static/experimental/Scratch.swf?owner=HD123&projectname=1397802&userid=408726"
bgcolor="#000000"
WIDTH="100%" HEIGHT="100%"
allowScriptAccess="always"
wmode="opaque"
TYPE="application/x-shockwave-flash">
</EMBED>
</OBJECT>
<div class="popup"></div>
</html>
</div>
</body>
</html>All you have to do is change all the project numbers to the project you want to display, and change all the usernames to your username.
Offline
lackofslackness wrote:
Harakou wrote:
kennyshane wrote:
Hi ,
I'm a teacher and have had great success with scratch, we as a school would like to show that pupils work off on our website. Is there any way that we can upload the projects and they will just play like a flash file on a webpage ?? any help would be great. Thxwhat-the wrote:
There is an embed button on the project page. Copy the applet one and past the html code on your web page. There is another way but this one works fine. You could make a secret account if you only want people to see it on your site.
I don't think that is what she means.
She wants them to play as a Flash file.
I don't know how to do it automatically, but you can use Stencyl (when it is released) to re-make the project, then upload. Find it at http://www.stencyl.com/ .
Otherwise, I don't know.
Kennyshane is not necessarily a female... and also, you can use proper links with the [ url ] stencyl.bom [ /url ] or [ url = stencyl.bom ] Stencyl [ / url ] tags. And hello! I thought you said that you have no time for Scratch.
Last edited by 2l84zwamani (2010-11-12 04:59:09)
Offline