I just discovered a way to get Snap! (aka BYOB) 4 on your desktop. I don't know if it wors offline, but it's in its own window and is a whole new app.
NOTE: You can only use this method for Google Chrome.
1. Go to the Snap! 4 Alpha page (click the image to go).
2. Click the little star at the edge of the address bar to add Snap as a bookmark.
3. Open the new tab page by clicking the new tab button.

4. Drag the bookmark you made onto the apps page.
5. Right-click the new app and choose Create Shortcut.
6. Select just "Desktop", click Create and the app will be sitting on your desktop. You can rename it to "Snap!" if you don't like the web address.
Done! If you double-click the app, you'll get something that looks a bit like this:
I hope you like this method!
Note: all screenshots were taken with my Chrome theme on. If you like it, you can download in my sig vvvvv
Last edited by whizzer (2012-05-27 12:45:22)
Offline
I found out how to change the icon! Make sure you've installed BYOB 3.1, then:
Right click the desktop icon, choose Properties, then Change Icon. On the drop-down that currently says "Icon Files", change it to "Programs". Then, hunt down where you saved/installed BYOB3 and pick the BYOB program. It will come up with three lovely Alonzo icons for you to choose from.
Offline
I found out how to get it on IE!
1) Open up the link to the alpha - on main post
2) Open up the menu bar and click tools. Then press "Add site to start menu"
3) go to start menu and press "All programs" - The site should be on your Start menu - then right click it and press "Send to" --> "Desktop (Create Shortcut)"
You now have the link on your desktop!
And yes, this is online only since it goes to the BYOB site.
Offline
Or, just press Command-S on Mac, or Ctrl-S on Windows
Works for me
Offline
Here's how to change it's icon to their Gobo thingy.
1. Right click it on your desktop
2. Choose properties at the very bottom
3. Click change icon in the window that pops up.
4. In the text box behind Browse... put %SystemDrive%\BYOB\2\BYOB.exe
5. Press Ok, then Apply on the 1st window.
6. VOILA!

Offline
On iOS: Share icon => Add to home screen...
To change the favicon on mac: right-click the icon => get info... => paste the icon in the icon viewer in the top-left of the popup.
Offline
Hmm.. I got all of the files required for the offline version.. it just doesn't work.. I'll give you guys the errors it makes.
SCRIPT5009: 'VariableFrame' is undefined store.js, line 1722 character 1 SCRIPT5009: 'IDE_Morph' is undefined snap.html, line 18 character 5
Last edited by DigiTechs (2012-05-28 10:45:47)
Offline
funelephant wrote:
Here's how to change it's icon to their Gobo thingy.
1. Right click it on your desktop
2. Choose properties at the very bottom
3. Click change icon in the window that pops up.
4. In the text box behind Browse... put %SystemDrive%\BYOB\2\BYOB.exe
5. Press Ok, then Apply on the 1st window.
6. VOILA!
That doesn't work on my PC since the link is a .website (Windows 7 x64 with IE9)
Offline
jji7skyline wrote:
Or, just press Command-S on Mac, or Ctrl-S on Windows
![]()
Works for me![]()
When I try that, when opening it comes up with "Your browser does not support Canvas" -- but when trying the online version it works fine???
Offline
DigiTechs wrote:
jji7skyline wrote:
Or, just press Command-S on Mac, or Ctrl-S on Windows
![]()
Works for me![]()
When I try that, when opening it comes up with "Your browser does not support Canvas" -- but when trying the online version it works fine???
You're using Chrome/Chromium?
Offline
Well, i don't know how to get it to be an actual application, but here's another method for Windows:
Right click on the desktop.
Choose the New submenu.
Choose Shortcut.
Type or paste the Snap! URL.
Name the shortcut. (Snap!)
Press OK.
???
Profit!
Offline
jji7skyline wrote:
DigiTechs wrote:
jji7skyline wrote:
Or, just press Command-S on Mac, or Ctrl-S on Windows
![]()
Works for me![]()
When I try that, when opening it comes up with "Your browser does not support Canvas" -- but when trying the online version it works fine???
You're using Chrome/Chromium?
I'm using IE 9 - It works fine on the online.. mabye I need to host it on a localhost server...
Offline
DigiTechs wrote:
jji7skyline wrote:
DigiTechs wrote:
When I try that, when opening it comes up with "Your browser does not support Canvas" -- but when trying the online version it works fine???You're using Chrome/Chromium?
I'm using IE 9 - It works fine on the online.. mabye I need to host it on a localhost server...
I wonder what files would be required to download for Snap! so we could run a local server. You might not even need a local server because it is just JavaScript.
Offline
nathanprocks wrote:
DigiTechs wrote:
jji7skyline wrote:
You're using Chrome/Chromium?
I'm using IE 9 - It works fine on the online.. mabye I need to host it on a localhost server...
I wonder what files would be required to download for Snap! so we could run a local server. You might not even need a local server because it is just JavaScript.
You don't need a server. You need the following files:
snap.html (the content is
<!DOCTYPE html>
<html>
<head>
<title>Snap! Build Your Own Blocks. Alpha</title>
<script type="text/javascript" src="morphic.js"></script>
<script type="text/javascript" src="widgets.js"></script>
<script type="text/javascript" src="blocks.js"></script>
<script type="text/javascript" src="threads.js"></script>
<script type="text/javascript" src="objects.js"></script>
<script type="text/javascript" src="gui.js"></script>
<script type="text/javascript" src="lists.js"></script>
<script type="text/javascript" src="byob.js"></script>
<script type="text/javascript" src="store.js"></script>
<script type="text/javascript">
var world;
window.onload = function () {
world = new WorldMorph(document.getElementById('world'));
new IDE_Morph().openIn(world);
setInterval(loop, 1);
};
function loop() {
world.doOneCycle();
}
</script>
</head>
<body style="background-color: #282828; margin: 0;">
<canvas id="world" tabindex="1" width="800" height="600" style="position: absolute;">
<p>Your browser doesn't support canvas.</p>
</canvas>
</body>
</html>morphic.js
widgets.js
blocks.js
threads.js
objects.js
gui.js
lists.js
byob.js
store.js
snap_logo_sm.gif
scriptsPaneTexture.gif
Don't rename any of these. Put them all into the same folder.
Last edited by scimonster (2012-05-30 07:40:07)
Offline
funelephant wrote:
Here's how to change it's icon to their Gobo thingy.
1. Right click it on your desktop
2. Choose properties at the very bottom
3. Click change icon in the window that pops up.
4. In the text box behind Browse... put %SystemDrive%\BYOB\2\BYOB.exe
5. Press Ok, then Apply on the 1st window.
6. VOILA!
whizzer wrote:
I found out how to change the icon! Make sure you've installed BYOB 3.1, then:
Right click the desktop icon, choose Properties, then Change Icon. On the drop-down that currently says "Icon Files", change it to "Programs". Then, hunt down where you saved/installed BYOB3 and pick the BYOB program. It will come up with three lovely Alonzo icons for you to choose from.
Offline
Yeah, that would be awesome. :3
Offline
whizzer wrote:
Anyone think I should submit Snap! as an app for the Chrome store?
No, please don't. We are providing an alpha test Snap! online so that you guys, who are experienced Scratchers and have a special interest in the project, can play with it and help us catch bugs. But it's nowhere near the point where we want to issue it to the world. We'll keep this idea in mind for the finl official release.
Offline