forked from Outworldz/Scriptastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 69d8fb6
Showing
33 changed files
with
3,378 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
========================================== | ||
GET STARTED | ||
========================================== | ||
* Put this directory in your root web directory (or a sub directory) so that it is accessable from a web URL | ||
* Place a link on your page that leads back to our labs at http://labs.greenbush.us or our Scriptastic project | ||
* ENJOY ! | ||
|
||
========================================== | ||
NOTES | ||
========================================== | ||
* Scriptastic is based on the Waterbear project - http://waterbearlang.com | ||
* index.html - contains the main interface | ||
* scripts/raphael_demo.js - contains the Block Definition & Syntax | ||
* stylesheets/blocks.css - contains the Block shapes | ||
* stylesheets/raphael_demo.css - contains the Block & Boarder colors |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>ScripTastic</title> | ||
<link href="stylesheets/workspace.css" rel="stylesheet" /> | ||
<link href="stylesheets/blocks.css" rel="stylesheet" /> | ||
<link href="stylesheets/raphael_demo.css" rel="stylesheet" /> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
|
||
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png"> | ||
<link rel="shortcut icon" type="image/x-ico" href="/favicon.ico" /> | ||
|
||
<meta name="viewport" content="height=device-height, initial-scale=1.0" /> | ||
|
||
<style type="text/css"> | ||
.style1 { | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 3; | ||
} | ||
</style> | ||
|
||
|
||
<!-- Jquery --> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | ||
|
||
|
||
<!-- Google analytics --> | ||
<script type="text/javascript"> | ||
|
||
var _gaq = _gaq || []; | ||
_gaq.push(['_setAccount', 'UA-219246-7']); | ||
_gaq.push(['_trackPageview']); | ||
|
||
(function() { | ||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | ||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | ||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | ||
})(); | ||
|
||
</script> | ||
|
||
|
||
|
||
</head> | ||
<body> | ||
|
||
<div class="spinner"></div> | ||
<br> | ||
<div class="content"> | ||
<div class="block_menu"> | ||
<section class="submenu"> | ||
<a href="/"><img alt="Scriptastic" src="images/Logo.jpg" width="281" height="64"> Home</a> | ||
|
||
|
||
</section> | ||
<section class="submenu"> | ||
<h3 class="select selected"><span class="style1">About</span></h3> | ||
<div class="option"> | ||
|
||
<font color=Blue><b>ScripTastic</b></font> lets you do "interesting | ||
things" with no scripting knowledge. I've modified it to control my | ||
<a href="/Secondlife/posts/prim-compiler/"> | ||
Prim Animator // Open sourceCompiler</a>, | ||
and it now has dozens more events, commands and controls for Second Life™ and OpenSim. ~ Ferd | ||
<ul style="margin-left: 20px;"> | ||
|
||
<li>Here are some <a href="examples.htm">examples</a> of Prim animation, a Tip Jar, playing sounds and other uses. | ||
<li >For a quick video tour by Rich White <a href=http://www.youtube.com/watch?v=mHWNYiovgyU target=_blank> | ||
watch this</a>. | ||
</ul> | ||
Credits: Scriptastic was originally created by <a href="http://www.greenbushlabs.com/LabsBlog/?page_id=907">Rich White</a> of <a href="http://labs.greenbush.us">Greenbush Labs</a> and generously contributed to the Open Source community. | ||
ScripTastic is similar to <a href="http://web.mit.edu/~eric_r/Public/S4SL/">Scratch for Second Life</a> but requires no download. | ||
</div> | ||
|
||
|
||
</section> | ||
</div> | ||
<div class="tab_bar"> | ||
<div class="scripts_workspace_tab chrome_tab selected">Blocks</div> | ||
<div class="scripts_text_view_tab chrome_tab">LSL Script</div> | ||
<button class="check_scripts">Check Script</button> | ||
<button class="clear_scripts">Clear script</button> | ||
</div> | ||
<div class="workspace"> | ||
<div class="scripts_workspace"></div> | ||
<div class="scripts_text_view"></div> | ||
</div> | ||
</div> | ||
|
||
|
||
<script src="lib/jquery-1.5.1.min.js"></script> | ||
<script src="lib/jquery.hotkeys.js"></script> | ||
<script src="lib/raphael-1.3.1-min.js"></script> | ||
<script src="lib/raphael-path.js"></script> | ||
<script src="lib/jquery.bpopup-0.5.1.min.js"></script> | ||
<script src="lib/sketchy.js"></script> | ||
<script src="lib/colorwheel.js"></script> | ||
<script src="lib/json2.js"></script> | ||
<script src="scripts/drag.js"></script> | ||
<script src="scripts/blocks.js"></script> | ||
<script src="scripts/runtime.js"></script> | ||
<script src="scripts/workspace.js"></script> | ||
<script src="scripts/raphael_demo.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> | ||
|
||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> | ||
<meta name="keywords" content="ScriptasTic Examples" /> | ||
<meta name="description" content="ScriptasTic Examples" /> | ||
<title>ScriptasTic Examples</title> | ||
|
||
<!--#include virtual="/cgi/scripts.plx?ID=liquidscript" --> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
<!--#include virtual="/cgi/scripts.plx?ID=liquidmenu" --> | ||
|
||
<h1 class="videotitle">ScripTastic Examples</h1> | ||
|
||
<p>Here are a few examples of how ScriptTastic can be used in virtual worlds.</p> | ||
<p class="videotitle">Tip Jar</p> | ||
<p><img alt="Tip Jar script" src="images/tipjar.jpg" /> </p> | ||
<p class="videotitle">Prim Animation when touched</p> | ||
<p><img alt="Touched" src="images/primanimate.jpg" /></p> | ||
|
||
|
||
<p class="videotitle">A timer that plays a Prim Animation every 10 seconds</p> | ||
<p><img alt="Animation player" src="images/img61.jpg" /></p> | ||
|
||
<p>A prim that appears from 'nowhere', jumps up and down 10 times when | ||
someone comes near, then turns invisible again.</p> | ||
<p><img alt="Sensor" src="images/sensor.jpg" /></p> | ||
|
||
<p class="videotitle">Play a sound when text is chatted</p> | ||
<p><img alt="yay" src="images/img7C.jpg" /></p> | ||
<p>Make a cloud of smoke when you teleport in.</p> | ||
<p>The column on the left goes into an attachment along with a prim named "CloudofSmoke". | ||
The "CloudofSmoke" prim is a prim that makes smoke with a particle script, plus | ||
the script from the column on the right. </p> | ||
<p><img alt="CloudofSmoke" src="images/img81.jpg" /></p> | ||
|
||
|
||
<!--#include virtual="/cgi/scripts.plx?ID=liquidfooter" --> | ||
<p> </p> | ||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.