This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#51 2011-05-27 22:57:58

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

Ok, So Now when you press cancel or get it wrong it will say Cheat...?  In the options menu, then if you click it it will end the instance...  I was wonderring if we could make it so that it then sets a variable that will then add passwords to everything that can show you the password, and disable viewing blockspecs?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#52 2011-05-28 05:25:21

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

Hey xIIv, WHEN WILL 1.4 be out?  I want to edit for 1.5


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#53 2011-05-28 05:35:55

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

Soon. Some of the blocks I'm making are having errors.


Helping helps others to help you.  wink

Offline

 

#54 2011-05-28 05:50:38

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

Soon. Some of the blocks I'm making are having errors.

Which ones?  I could help if i knew what was happening  tongue


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#55 2011-05-28 07:12:26

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

ssss wrote:

xIIV wrote:

Soon. Some of the blocks I'm making are having errors.

Which ones?  I could help if i knew what was happening  tongue

Well, on of them was a if boolean. Let me find the code....


Helping helps others to help you.  wink

Offline

 

#56 2011-05-28 07:25:43

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

ssss wrote:

xIIV wrote:

Soon. Some of the blocks I'm making are having errors.

Which ones?  I could help if i knew what was happening  tongue

Well, on of them was a if boolean. Let me find the code....

kkk


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#57 2011-05-28 07:30:01

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Rocket (RKT) Mod

Can I help out with any problems in the code?


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#58 2011-05-28 07:45:25

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

ifReport: t1 true: t2 false: t3
    t1 = true ifTrue: [^ t2] ifFalse: [^ t3].


('if %b true: %s false: %s' #b #ifReport:true:false:)


Helping helps others to help you.  wink

Offline

 

#59 2011-05-28 07:52:40

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

ifReport: t1 true: t2 false: t3
    t1 = true ifTrue: [^ t2] ifFalse: [^ t3].


('if %b true: %s false: %s' #b #ifReport:true:false:)

I think I know what the problem is. Can I help (if it's okay)?


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#60 2011-05-28 07:53:12

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

xIIV wrote:

ifReport: t1 true: t2 false: t3
    t1 = true ifTrue: [^ t2] ifFalse: [^ t3].


('if %b true: %s false: %s' #b #ifReport:true:false:)

I think I know what the problem is. Can I help (if it's okay)?

Yeah, sure.


Helping helps others to help you.  wink

Offline

 

#61 2011-05-28 07:58:10

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

scratcher7_13 wrote:

xIIV wrote:

ifReport: t1 true: t2 false: t3
    t1 = true ifTrue: [^ t2] ifFalse: [^ t3].


('if %b true: %s false: %s' #b #ifReport:true:false:)

I think I know what the problem is. Can I help (if it's okay)?

Yeah, sure.

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#62 2011-05-28 08:00:51

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

xIIV wrote:

scratcher7_13 wrote:


I think I know what the problem is. Can I help (if it's okay)?

Yeah, sure.

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

Oh okay. Because if it is true, it will report it and then break out of the method. So if it isn't, it will report t3. Thanks! Aren't you developing a mod?  big_smile
And is it true that you're andresmh's brother?


Helping helps others to help you.  wink

Offline

 

#63 2011-05-28 08:05:44

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

scratcher7_13 wrote:

xIIV wrote:


Yeah, sure.

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

Oh okay. Because if it is true, it will report it and then break out of the method. So if it isn't, it will report t3. Thanks! Aren't you developing a mod?  big_smile
And is it true that you're andresmh's brother?

Yes and no. I am developing a mod (Sizzle  big_smile ), and I am not andresmh's brother.


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#64 2011-05-28 08:07:43

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

xIIV wrote:

scratcher7_13 wrote:

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

Oh okay. Because if it is true, it will report it and then break out of the method. So if it isn't, it will report t3. Thanks! Aren't you developing a mod?  big_smile
And is it true that you're andresmh's brother?

Yes and no. I am developing a mod (Sizzle  big_smile ), and I am not andresmh's brother.

Cool.  big_smile 
Oh okay. I wasn't sure...  tongue


Helping helps others to help you.  wink

Offline

 

#65 2011-05-28 10:27:55

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: Rocket (RKT) Mod

S4, if you can get me the direct source code for the weebly webiste (which I don't think you can  tongue ) then I can host it on my website, escratch.org.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#66 2011-05-28 20:06:19

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

gbear605 wrote:

S4, if you can get me the direct source code for the weebly webiste (which I don't think you can  tongue ) then I can host it on my website, escratch.org.

I prefer .weebly.com
but anyway:

Homepage

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='X-UA-Compatible' content='IE=EmulateIE7' />
<title>RocketProgramming - Home</title>
<meta name='description' content='Block Programming Based on Scratch' />
<meta name='keywords' content='Block, Programming, Scratch, MIT, Young Students, Young Programmers, Programmers, Squeak, Smalltalk' />
<meta property='og:site_name' content='RocketProgramming' />
<meta property='og:title' content='RocketProgramming' />
<meta property='og:description' content='Block Programming Based on Scratch' />
<meta property='og:image' content='http://www.cyberkidscountry.com/rocket/Rlogo3.gif' />
<meta property='og:url' content='http://rocketprogramming.weebly.com/' />

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<link rel='stylesheet' href='http://cdn1.weebly.com/editor/images/common/common.css?9' type='text/css' />

<link rel='stylesheet' type='text/css' href='/files/main_style.css?1306553671' title='wsite-theme-css' />
<style type='text/css'>
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-description, .blog-sidebar div.paragraph, .blog-sidebar p{}
#wsite-content h2, #wsite-content .product-title, .blog-sidebar h2{}
#wsite-title{}
</style>
<script type='text/javascript'><!--
var STATIC_BASE = 'http://cdn1.weebly.com/';
var STYLE_PREFIX = 'wsite';
//-->
</script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/prototype/1.7-custom/prototype.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/scriptaculous/1.9.0-custom/effects.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/utilities.js?2'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/lightbox202.js?9'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/libraries/flyout_menus.js?13'></script>
<script type='text/javascript'><!--
function initFlyouts(){initPublishedFlyoutMenus([{"id":"182010444960338988","title":"Home","url":"index.html"},{"id":"436084229986423509","title":"Blog","url":"blog.html"},{"id":"100517140599462637","title":"Forums","url":"forums.html"},{"id":"525330037812500670","title":"Contact Us!","url":"contact-us.html"}],'182010444960338988',"<li class='wsite-nav-more'><a href='#'>more...<\/a><\/li>",'active',false)}
if (Prototype.Browser.IE) window.onload=initFlyouts; else document.observe('dom:loaded', initFlyouts);
//-->
</script>

</head>
<body class='wsite-page-index'>
<div id="wrapper">
        <div id="container">
            <div id="leftcolumn"><ul><li id='active'><a href='/index.html'>Home</a></li><li id='pg436084229986423509'><a href='/blog.html'>Blog</a></li><li id='pg100517140599462637'><a href='/forums.html'>Forums</a></li><li id='pg525330037812500670'><a href='/contact-us.html'>Contact Us!</a></li></ul></div>
            <div id="rightcolumn">
              <div id="header"><div id="sitename"><img src="http://www.cyberkidscountry.com/rocket/Rlogo3.gif" alt="Rocket Programming" /></div></div>
                <div id="content"><div id='wsite-content'><h2  style=" text-align: left; ">Rocket - Based on Scratch From MIT<br></h2>

<div  class="paragraph editable-text" style=" text-align: left; display: block; ">Rocket is a mod of Scratch, designed for complex projects that don't take away from the functionality of Scratch, however add more complex functions!&nbsp; Rocket Programmers are all around 12-14 years old, thus we are a non-profit organisation!&nbsp; We do our work for the fun of it, not the money (And this experience gains us a bigger chance of being involved with Programming when we are older!).&nbsp; Originally run by SSSS (me)&nbsp; the rights of Rocket have been transferred over to Pecola1, when I no longer felt that I was the best to run Rocket.&nbsp; I am still a developer, just no longer organise all the hard stuff (I do run the website though!)<br></div>

</div></div>
                <div id="footer">

<style type='text/css'>
<!--

.weebly-footer {
    position: relative !important;
    }
    
.weebly-footer a {
    position: relative !important;
    z-index: 2 !important;
    cursor: pointer;
    }
    
.weebly-footer-dynamic {
    position: relative !important;
    display: inline-block !important;
    width: 72px !important;
    height: 1px !important;
    vertical-align: middle !important;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat -9999px 0; /* preload */
    text-decoration: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    }
    
.weebly-footer-button {
    position: absolute;
    top: -14px;
    left: 0;
    display: block;
    _display: inline-block;
    width: 72px;
    height: 29px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer.png', sizingMethod='crop');
    }
    
.weebly-footer-hover .weebly-footer-button {
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-active.png', sizingMethod='crop');
    }
    
.weebly-footer-button-text {
    display: none;
    }
    
.weebly-footer-message {
    display: none;
    position: absolute;
    top: -86px;
    left: 1px;
    width: 395px;
    height: 98px;
    _background: url(data:image/gif;base64,AAAA);
    }
    
.weebly-footer-dynamic-hover .weebly-footer-message {
    display: block;
    }
    
.weebly-footer-right .weebly-footer-message {
    left: -310px;
    }
    
.weebly-footer-message-content {
    position: relative;
    display: block;
    width: 100%;
    height: 59px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-content.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-content.png', sizingMethod='crop');
    }
    
.weebly-footer-message-carrot {
    position: relative;
    left: 55px;
    float: left;
    display: block;
    width: 12px;
    height: 7px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-carrot.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-carrot.png', sizingMethod='crop');
    }
    
.weebly-footer-right .weebly-footer-message-carrot {
    left: 367px;
    }
    
-->
</style>

<script type='text/javascript'>
<!--

function positionWeeblyFooter() {
    var e = $('weebly-footer-mark');
    if (e.cumulativeOffset().left > document.viewport.getWidth()/2) {
        e.up().addClassName('weebly-footer-right');
    }else{
        e.up().removeClassName('weebly-footer-right');
    }
}

//-->
</script>

<span class='weebly-footer'
 onmouseover="$(this).addClassName('weebly-footer-hover')"
 onmouseout="$(this).removeClassName('weebly-footer-hover')">
    Create a <a target="_blank" href="http://www.weebly.com/">free website</a> with
    <span id='weebly-footer-mark'></span>
    <a class='weebly-footer-dynamic' target="_blank" href="http://www.weebly.com/?footer"
     onmouseover="$(this).addClassName('weebly-footer-dynamic-hover');positionWeeblyFooter()"
     onmouseout="$(this).removeClassName('weebly-footer-dynamic-hover')">
        <span class='weebly-footer-button'>

            <span class='weebly-footer-button-text'>Weebly</span>
        </span>
        <span class='weebly-footer-message'>
            <span class='weebly-footer-message-content'></span>
            <span class='weebly-footer-message-carrot'></span>
        </span>
    </a>
</span>

<script type='text/javascript'>
<!--

if (document.cookie.match(/(^|;)\s*is_mobile=1/)) {
    document.write(
        "&nbsp;&nbsp;&nbsp;&nbsp;" +
        "<a href='?mobile'>Mobile Site</a>"
    );
}

//-->
</script>

</div>
            </div>
          <div class="clear"></div>  
        </div>
    </div> 


<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-7870337-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _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>

<!-- Start Quantcast tag -->
<script type="text/javascript">
  _qoptions={
    qacct:"p-0dYLvhSGGqUWo"
  };
</script>

<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<img src="http://pixel.quantserve.com/pixel/p-0dYLvhSGGqUWo.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
</noscript>
<!-- End Quantcast tag -->


</body>
</html>

Blog

Code:

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv='X-UA-Compatible' content='IE=EmulateIE7' />
<title>RocketProgramming - Blog</title>
<meta property='og:site_name' content='RocketProgramming' />
<meta property='og:title' content='Blog' />
<meta property='og:description' content='let's face it, we've all gone - We need a break!  When we know we can go on for a lot longer, we just want to see if we can get away with it?  This is so true to me...  Yet, Why is it children get...' />
<meta property='og:image' content='http://www.cyberkidscountry.com/rocket/Rlogo3.gif' />
<meta property='og:url' content='http://rocketprogramming.weebly.com/blog.html' />
<meta http-equiv='cache-control' content='no-cache' />
<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='http://rocketprogramming.weebly.com/1/feed' />

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<link rel='stylesheet' href='http://cdn1.weebly.com/editor/images/common/common.css?9' type='text/css' />

<link rel='stylesheet' type='text/css' href='/files/main_style.css?1306553671' title='wsite-theme-css' />
<style type='text/css'>
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-description, .blog-sidebar div.paragraph, .blog-sidebar p{}
#wsite-content h2, #wsite-content .product-title, .blog-sidebar h2{}
#wsite-title{}
</style>
<script type='text/javascript'><!--
var STATIC_BASE = 'http://cdn1.weebly.com/';
var STYLE_PREFIX = 'wsite';
//-->
</script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/prototype/1.7-custom/prototype.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/scriptaculous/1.9.0-custom/effects.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/utilities.js?2'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/lightbox202.js?9'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/libraries/flyout_menus.js?13'></script>
<script type='text/javascript'><!--
function initFlyouts(){initPublishedFlyoutMenus([{"id":"182010444960338988","title":"Home","url":"index.html"},{"id":"436084229986423509","title":"Blog","url":"blog.html"},{"id":"100517140599462637","title":"Forums","url":"forums.html"},{"id":"525330037812500670","title":"Contact Us!","url":"contact-us.html"}],'436084229986423509',"<li class='wsite-nav-more'><a href='#'>more...<\/a><\/li>",'active',false)}
if (Prototype.Browser.IE) window.onload=initFlyouts; else document.observe('dom:loaded', initFlyouts);
//-->
</script>

</head>
<body class='wsite-page-blog'>
<div id="wrapper">
        <div id="container">
            <div id="leftcolumn"><ul><li id='pg182010444960338988'><a href='/index.html'>Home</a></li><li id='active'><a href='/blog.html'>Blog</a></li><li id='pg100517140599462637'><a href='/forums.html'>Forums</a></li><li id='pg525330037812500670'><a href='/contact-us.html'>Contact Us!</a></li></ul></div>
            <div id="rightcolumn">
              <div id="header"><div id="sitename"><img src="http://www.cyberkidscountry.com/rocket/Rlogo3.gif" alt="Rocket Programming" /></div></div>
                <div id="content"><table style='border: 0; width: 100%;'><tr><td valign='top'><div id='436084229986423509-blog' class='blog-body' style='float: left;'>

<div id='wsite-content'><div id='blog-title'><a href='/1/post/2011/05/sometimes-people-actually-need-a-break.html' id='blog-title-link' class='blog-link'>Sometimes, people actually need a break!</a> <font id='blog-date'>05/27/2011</font></div><!-- 795935269189724094 -->
<div id='blog-comments'><a href='/1/post/2011/05/sometimes-people-actually-need-a-break.html#comments' class='blog-link'>0 Comments</a></div><div id='blog-separator'> &nbsp; </div><div id='blog-author'> <b></b></div><div id='blog-content'><div  class="paragraph editable-text" style=" text-align: left; ">let's face it, we've all gone - We need a break!&nbsp; When we know we can go on for a lot longer, we just want to see if we can get away with it?&nbsp; This is so true to me...&nbsp; Yet, Why is it children get away with it more than adults?&nbsp; Shouldn't we be the ones that have to do MORE work?&nbsp; We are the ones being trained for the future, yet all they do is give us excuses to go on holidays, then we aren't prepared for University/College!&nbsp; But, sometimes people do need a break, When they get stressed out or just can't handle anymore work.&nbsp; That's what our teamwork is about.&nbsp; If one of us seriously can not get it done (for example, Exams - Which i have next week) Our other team-mates will help comp<br></div>  </div><div class='blog-social'><div class='blog-social-item'><a class='twitter-share-button' href='http://twitter.com/share?url=http%3A%2F%2Frocketprogramming.weebly.com%2F1%2Fpost%2F2011%2F05%2Fsometimes-people-actually-need-a-break.html' data-count='horizontal'></a></div><div class='blog-social-item fb-like'><fb:like href='http://rocketprogramming.weebly.com/1/post/2011/05/sometimes-people-actually-need-a-break.html' show_faces='false' layout='button_count' width='90'></fb:like></div><div style='clear:both'></div></div>

<div class='blog-comments-bottom'><a href='/1/post/2011/05/sometimes-people-actually-need-a-break.html#comments' class='blog-link'>Add Comment</a></div><div id='blog-post-separator'>&nbsp;</div>

<div id='blog-title'><a href='/1/post/2011/05/pecola1-the-new-head-developer.html' id='blog-title-link' class='blog-link'>Pecola1 - The new head Developer:</a> <font id='blog-date'>05/27/2011</font></div><!-- 764018315340510607 -->
<div id='blog-comments'><a href='/1/post/2011/05/pecola1-the-new-head-developer.html#comments' class='blog-link'>3 Comments</a></div><div id='blog-separator'> &nbsp; </div><div id='blog-author'> <b></b></div><div id='blog-content'><div  class="paragraph editable-text" style=" text-align: left; ">Hi, I am SSSS, I used to be the main Developer of Rocket!&nbsp; I used to run it, think of ideas, try and keep it running, and even though I am no longer the Main developer, I still help do these things!&nbsp; Leadership - The ability to get many people to work together as a team...&nbsp; I could do that, Yes i could, but do I have the motivation?&nbsp; This is the question which made me consider to resign from my head role of Rocket...&nbsp;&nbsp; I resigned, giving the lead role to Pecola1, who was my first choice of leadership.&nbsp; Pecola1 always got working on it, even when I didn't give specific instructions.&nbsp; He literally put my thoughts onto Rocket, even when I didn't do anything!&nbsp;&nbsp; My inactivity on Rocket made me decide to resign from my head role, Thus left Pecola1 In charge.&nbsp; I simply am a Dev, and work on the website!<br></div>  </div><div class='blog-social'><div class='blog-social-item'><a class='twitter-share-button' href='http://twitter.com/share?url=http%3A%2F%2Frocketprogramming.weebly.com%2F1%2Fpost%2F2011%2F05%2Fpecola1-the-new-head-developer.html' data-count='horizontal'></a></div><div class='blog-social-item fb-like'><fb:like href='http://rocketprogramming.weebly.com/1/post/2011/05/pecola1-the-new-head-developer.html' show_faces='false' layout='button_count' width='90'></fb:like></div><div style='clear:both'></div></div>

<div class='blog-comments-bottom'><a href='/1/post/2011/05/pecola1-the-new-head-developer.html#comments' class='blog-link'>3 Comments</a></div><div id='blog-post-separator'>&nbsp;</div>

<!-- bid: 854126009901193915 --></div>
</div>
</td><td class='blog-sidebar' valign='top'><div id='436084229986423509-sidebar' class='column-blog'><div class='blog-sidebar-separator'><ul id='436084229986423509-sidebar-list' class='columnlist-blog' style='margin:0; padding: 0;'> <h2  style=" text-align: left; ">ssss<br></h2>
<p  style=" text-align: left; ">Founder &amp; Dev of Rocket.&nbsp; No longer Main Developer.<br></p>

<h2  style=" text-align: left; ">Archives</h2>

<p><a href='/1/archives/05-2011/1.html' class='blog-link'>May 2011</a><br />
</p>
<h2  style=" text-align: left; ">Categories</h2>
<p><a href='/1/category/all/1.html' class='blog-link'>All</a><br />
</p>
<p style='margin-top: 10px;'><a href='/1/feed'><img src='http://images.weebly.com/weebly/images/common/bg_feed.gif' style='border: 0;' /> RSS Feed</a></p>
 </ul></div></div></td></tr></table><hr style='visibility: hidden; clear: both;' /></div>
                <div id="footer">

<style type='text/css'>
<!--

.weebly-footer {
    position: relative !important;
    }
    
.weebly-footer a {
    position: relative !important;
    z-index: 2 !important;
    cursor: pointer;
    }
    
.weebly-footer-dynamic {
    position: relative !important;
    display: inline-block !important;
    width: 72px !important;
    height: 1px !important;
    vertical-align: middle !important;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat -9999px 0; /* preload */
    text-decoration: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    }
    
.weebly-footer-button {
    position: absolute;
    top: -14px;
    left: 0;
    display: block;
    _display: inline-block;
    width: 72px;
    height: 29px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer.png', sizingMethod='crop');
    }
    
.weebly-footer-hover .weebly-footer-button {
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-active.png', sizingMethod='crop');
    }
    
.weebly-footer-button-text {
    display: none;
    }
    
.weebly-footer-message {
    display: none;
    position: absolute;
    top: -86px;
    left: 1px;
    width: 395px;
    height: 98px;
    _background: url(data:image/gif;base64,AAAA);
    }
    
.weebly-footer-dynamic-hover .weebly-footer-message {
    display: block;
    }
    
.weebly-footer-right .weebly-footer-message {
    left: -310px;
    }
    
.weebly-footer-message-content {
    position: relative;
    display: block;
    width: 100%;
    height: 59px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-content.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-content.png', sizingMethod='crop');
    }
    
.weebly-footer-message-carrot {
    position: relative;
    left: 55px;
    float: left;
    display: block;
    width: 12px;
    height: 7px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-carrot.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-carrot.png', sizingMethod='crop');
    }
    
.weebly-footer-right .weebly-footer-message-carrot {
    left: 367px;
    }
    
-->

</style>

<script type='text/javascript'>
<!--

function positionWeeblyFooter() {
    var e = $('weebly-footer-mark');
    if (e.cumulativeOffset().left > document.viewport.getWidth()/2) {
        e.up().addClassName('weebly-footer-right');
    }else{
        e.up().removeClassName('weebly-footer-right');
    }
}

//-->
</script>

<span class='weebly-footer'
 onmouseover="$(this).addClassName('weebly-footer-hover')"
 onmouseout="$(this).removeClassName('weebly-footer-hover')">
    Create a <a target="_blank" href="http://www.weebly.com/">free website</a> with
    <span id='weebly-footer-mark'></span>
    <a class='weebly-footer-dynamic' target="_blank" href="http://www.weebly.com/?footer"
     onmouseover="$(this).addClassName('weebly-footer-dynamic-hover');positionWeeblyFooter()"
     onmouseout="$(this).removeClassName('weebly-footer-dynamic-hover')">
        <span class='weebly-footer-button'>
            <span class='weebly-footer-button-text'>Weebly</span>

        </span>
        <span class='weebly-footer-message'>
            <span class='weebly-footer-message-content'></span>
            <span class='weebly-footer-message-carrot'></span>
        </span>
    </a>
</span>

<script type='text/javascript'>
<!--

if (document.cookie.match(/(^|;)\s*is_mobile=1/)) {
    document.write(
        "&nbsp;&nbsp;&nbsp;&nbsp;" +
        "<a href='?mobile'>Mobile Site</a>"
    );
}

//-->
</script>

</div>
            </div>
          <div class="clear"></div>  
        </div>
    </div> 


<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-7870337-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _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>

<!-- Start Quantcast tag -->
<script type="text/javascript">
  _qoptions={
    qacct:"p-0dYLvhSGGqUWo"
  };
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<img src="http://pixel.quantserve.com/pixel/p-0dYLvhSGGqUWo.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>

</noscript>
<!-- End Quantcast tag -->


<div id='fb-root'></div><script type='text/javascript'>(function() {function j(src, root) {var s = document.createElement('script');s.type = 'text/javascript';s.async = true;s.src = src;(root || document.getElementsByTagName('head')[0]).appendChild(s);}j('http://connect.face'+'book.net/en_US/all.js#xfbml=1', document.getElementById('fb-root'));j('http://platform.twi'+'tter.com/widgets.js');})()</script>
</body>
</html>

Forum:

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='X-UA-Compatible' content='IE=EmulateIE7' />
<title>Forums - RocketProgramming</title>
<meta property='og:site_name' content='RocketProgramming' />
<meta property='og:title' content='Forums' />
<meta property='og:description' content='RocketProgramming' />
<meta property='og:image' content='http://www.cyberkidscountry.com/rocket/Rlogo3.gif' />
<meta property='og:url' content='http://rocketprogramming.weebly.com/forums.html' />

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<link rel='stylesheet' href='http://cdn1.weebly.com/editor/images/common/common.css?9' type='text/css' />
<link rel='stylesheet' type='text/css' href='/files/main_style.css?1306553671' title='wsite-theme-css' />
<style type='text/css'>
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-description, .blog-sidebar div.paragraph, .blog-sidebar p{}
#wsite-content h2, #wsite-content .product-title, .blog-sidebar h2{}
#wsite-title{}

</style>
<script type='text/javascript'><!--
var STATIC_BASE = 'http://cdn1.weebly.com/';
var STYLE_PREFIX = 'wsite';
//-->
</script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/prototype/1.7-custom/prototype.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/scriptaculous/1.9.0-custom/effects.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/utilities.js?2'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/lightbox202.js?9'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/libraries/flyout_menus.js?13'></script>
<script type='text/javascript'><!--
function initFlyouts(){initPublishedFlyoutMenus([{"id":"182010444960338988","title":"Home","url":"index.html"},{"id":"436084229986423509","title":"Blog","url":"blog.html"},{"id":"100517140599462637","title":"Forums","url":"forums.html"},{"id":"525330037812500670","title":"Contact Us!","url":"contact-us.html"}],'100517140599462637',"<li class='wsite-nav-more'><a href='#'>more...<\/a><\/li>",'active',false)}
if (Prototype.Browser.IE) window.onload=initFlyouts; else document.observe('dom:loaded', initFlyouts);
//-->
</script>
</head>
<body class='wsite-page-forums'>

<div id="wrapper">
        <div id="container">
            <div id="leftcolumn"><ul><li id='pg182010444960338988'><a href='/index.html'>Home</a></li><li id='pg436084229986423509'><a href='/blog.html'>Blog</a></li><li id='active'><a href='/forums.html'>Forums</a></li><li id='pg525330037812500670'><a href='/contact-us.html'>Contact Us!</a></li></ul></div>
            <div id="rightcolumn">
              <div id="header"><div id="sitename"><img src="http://www.cyberkidscountry.com/rocket/Rlogo3.gif" alt="Rocket Programming" /></div></div>
                <div id="content"><div id='wsite-content'><div >

<script src="http://www.weebly.com/weebly/apps/generateForum.php?service=talki&elementid=177831995923189623&ineditor=0&user_id=7632948"></script>

<div id="scriptInclude177831995923189623-coverbox" style="display: none;"></div></div>

</div></div>
                <div id="footer">

<style type='text/css'>
<!--

.weebly-footer {
    position: relative !important;
    }
    
.weebly-footer a {
    position: relative !important;
    z-index: 2 !important;
    cursor: pointer;
    }
    
.weebly-footer-dynamic {
    position: relative !important;
    display: inline-block !important;
    width: 72px !important;
    height: 1px !important;
    vertical-align: middle !important;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat -9999px 0; /* preload */
    text-decoration: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    }
    
.weebly-footer-button {
    position: absolute;
    top: -14px;
    left: 0;
    display: block;
    _display: inline-block;
    width: 72px;
    height: 29px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer.png', sizingMethod='crop');
    }
    
.weebly-footer-hover .weebly-footer-button {
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-active.png', sizingMethod='crop');
    }
    
.weebly-footer-button-text {
    display: none;
    }
    
.weebly-footer-message {
    display: none;
    position: absolute;
    top: -86px;
    left: 1px;
    width: 395px;
    height: 98px;
    _background: url(data:image/gif;base64,AAAA);
    }
    
.weebly-footer-dynamic-hover .weebly-footer-message {
    display: block;
    }
    
.weebly-footer-right .weebly-footer-message {
    left: -310px;
    }
    
.weebly-footer-message-content {
    position: relative;
    display: block;
    width: 100%;
    height: 59px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-content.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-content.png', sizingMethod='crop');
    }
    
.weebly-footer-message-carrot {
    position: relative;
    left: 55px;
    float: left;
    display: block;
    width: 12px;
    height: 7px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-carrot.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-carrot.png', sizingMethod='crop');
    }
    
.weebly-footer-right .weebly-footer-message-carrot {
    left: 367px;
    }
    
-->
</style>

<script type='text/javascript'>
<!--

function positionWeeblyFooter() {
    var e = $('weebly-footer-mark');
    if (e.cumulativeOffset().left > document.viewport.getWidth()/2) {
        e.up().addClassName('weebly-footer-right');
    }else{
        e.up().removeClassName('weebly-footer-right');
    }
}

//-->
</script>

<span class='weebly-footer'
 onmouseover="$(this).addClassName('weebly-footer-hover')"
 onmouseout="$(this).removeClassName('weebly-footer-hover')">
    Create a <a target="_blank" href="http://www.weebly.com/">free website</a> with
    <span id='weebly-footer-mark'></span>

    <a class='weebly-footer-dynamic' target="_blank" href="http://www.weebly.com/?footer"
     onmouseover="$(this).addClassName('weebly-footer-dynamic-hover');positionWeeblyFooter()"
     onmouseout="$(this).removeClassName('weebly-footer-dynamic-hover')">
        <span class='weebly-footer-button'>
            <span class='weebly-footer-button-text'>Weebly</span>
        </span>
        <span class='weebly-footer-message'>
            <span class='weebly-footer-message-content'></span>
            <span class='weebly-footer-message-carrot'></span>
        </span>

    </a>
</span>

<script type='text/javascript'>
<!--

if (document.cookie.match(/(^|;)\s*is_mobile=1/)) {
    document.write(
        "&nbsp;&nbsp;&nbsp;&nbsp;" +
        "<a href='?mobile'>Mobile Site</a>"
    );
}

//-->
</script>

</div>
            </div>
          <div class="clear"></div>  
        </div>
    </div> 


<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-7870337-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _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>

<!-- Start Quantcast tag -->
<script type="text/javascript">
  _qoptions={
    qacct:"p-0dYLvhSGGqUWo"
  };
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<img src="http://pixel.quantserve.com/pixel/p-0dYLvhSGGqUWo.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
</noscript>
<!-- End Quantcast tag -->

contact us

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='X-UA-Compatible' content='IE=EmulateIE7' />
<title>Contact Us! - RocketProgramming</title>
<meta property='og:site_name' content='RocketProgramming' />
<meta property='og:title' content='Contact Us!' />
<meta property='og:description' content='Need to get in touch privately?  This is the place to go!  Want to access the Developers password?  Contact us to get it!' />
<meta property='og:image' content='http://www.cyberkidscountry.com/rocket/Rlogo3.gif' />
<meta property='og:url' content='http://rocketprogramming.weebly.com/contact-us.html' />

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<link rel='stylesheet' href='http://cdn1.weebly.com/editor/images/common/common.css?9' type='text/css' />
<link rel='stylesheet' type='text/css' href='/files/main_style.css?1306553671' title='wsite-theme-css' />
<style type='text/css'>
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-description, .blog-sidebar div.paragraph, .blog-sidebar p{}
#wsite-content h2, #wsite-content .product-title, .blog-sidebar h2{}
#wsite-title{}

</style>
<script type='text/javascript'><!--
var STATIC_BASE = 'http://cdn1.weebly.com/';
var STYLE_PREFIX = 'wsite';
//-->
</script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/prototype/1.7-custom/prototype.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/libraries/scriptaculous/1.9.0-custom/effects.min.js'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/utilities.js?2'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/images/common/lightbox202.js?9'></script>
<script type='text/javascript' src='http://cdn1.weebly.com/editor/libraries/flyout_menus.js?13'></script>
<script type='text/javascript'><!--
function initFlyouts(){initPublishedFlyoutMenus([{"id":"182010444960338988","title":"Home","url":"index.html"},{"id":"436084229986423509","title":"Blog","url":"blog.html"},{"id":"100517140599462637","title":"Forums","url":"forums.html"},{"id":"525330037812500670","title":"Contact Us!","url":"contact-us.html"}],'525330037812500670',"<li class='wsite-nav-more'><a href='#'>more...<\/a><\/li>",'active',false)}
if (Prototype.Browser.IE) window.onload=initFlyouts; else document.observe('dom:loaded', initFlyouts);
//-->
</script>
</head>
<body class='wsite-page-contact-us'>

<div id="wrapper">
        <div id="container">
            <div id="leftcolumn"><ul><li id='pg182010444960338988'><a href='/index.html'>Home</a></li><li id='pg436084229986423509'><a href='/blog.html'>Blog</a></li><li id='pg100517140599462637'><a href='/forums.html'>Forums</a></li><li id='active'><a href='/contact-us.html'>Contact Us!</a></li></ul></div>
            <div id="rightcolumn">
              <div id="header"><div id="sitename"><img src="http://www.cyberkidscountry.com/rocket/Rlogo3.gif" alt="Rocket Programming" /></div></div>
                <div id="content"><div id='wsite-content'><h2  style=" text-align: left; ">Contacting us?<br></h2>
<div  class="paragraph editable-text" style=" text-align: left; display: block; ">Need to get in touch privately?&nbsp; This is the place to go!&nbsp; Want to access the Developers password?&nbsp; Contact us to get it!<br></div>

<div >
<form enctype="multipart/form-data" action="http://www.weebly.com/weebly/apps/formSubmit.php" method="POST" id="form-670946323442743600">
<div id="670946323442743600-form-parent" class="wsite-form-container" style="margin-top:10px;">
  <ul class="formlist" id="670946323442743600-form-list">
    <h2  style=" text-align: left; ">Contact the Rocket Team!<br></h2>

<div ><div class="wsite-form-field" style="margin:5px 0px 5px 0px; width:380px;">
  <label class="wsite-form-label" for="input-139212481653416384">Name <span class="form-required">*</span></label>
  <div style="clear:both;"></div>

  <div class="wsite-form-input-container wsite-form-left">
    <input id="input-139212481653416384" class="wsite-form-input" type="text" name="_u139212481653416384[first]" style="width:138px;" />
    <label class="wsite-form-sublabel" for="input-139212481653416384">First</label>
  </div>
  <div class="wsite-form-input-container wsite-form-right">
    <input id="input-139212481653416384-1" class="wsite-form-input" type="text" name="_u139212481653416384[last]" style="width:205px;" />
    <label class="wsite-form-sublabel" for="input-139212481653416384-1">Last</label>
  </div>

  <div id="instructions-139212481653416384" class="wsite-form-instructions" style="display:none;"></div>
</div>
<div style="clear:both;"></div>

</div>

<div ><div class="wsite-form-field" style="margin:5px 0px 5px 0px;">
  <label class="wsite-form-label" for="input-550380729844833814">Email <span class="form-required">*</span></label>
  <div class="wsite-form-input-container">
    <input id="input-550380729844833814" class="wsite-form-input" type="text" name="_u550380729844833814" style="width:370px;" />
  </div>

  <div id="instructions-550380729844833814" class="wsite-form-instructions" style="display:none;"></div>
</div></div>

<div ><div class="wsite-form-field" style="margin:5px 0px 5px 0px;">
  <label class="wsite-form-label" for="input-124838798371776965">Comment <span class="form-required">*</span></label>
  <div class="wsite-form-input-container">
    <textarea id="input-124838798371776965" class="wsite-form-input" name="_u124838798371776965" style="width:370px; height: 200px"></textarea>
  </div>
  <div id="instructions-124838798371776965" class="wsite-form-instructions" style="display:none;"></div>

</div></div>


  </ul>
</div>
<div style="display:none; visibility:hidden;">
  <input type="text" name="wsite_subject" />
</div>
<div style="text-align:left; margin-top:10px; margin-bottom:10px;">
  <input type="hidden" name="form_version" value="2" />
  <input type="hidden" name="wsite_approved" id="wsite-approved" value="approved" />
  <input type="hidden" name="ucfid" value="670946323442743600" />

  <input type="submit" name="submit" value="Submit" />
</div>
</form>


</div>

</div></div>
                <div id="footer">

<style type='text/css'>
<!--

.weebly-footer {
    position: relative !important;
    }
    
.weebly-footer a {
    position: relative !important;
    z-index: 2 !important;
    cursor: pointer;
    }
    
.weebly-footer-dynamic {
    position: relative !important;
    display: inline-block !important;
    width: 72px !important;
    height: 1px !important;
    vertical-align: middle !important;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat -9999px 0; /* preload */
    text-decoration: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    }
    
.weebly-footer-button {
    position: absolute;
    top: -14px;
    left: 0;
    display: block;
    _display: inline-block;
    width: 72px;
    height: 29px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer.png', sizingMethod='crop');
    }
    
.weebly-footer-hover .weebly-footer-button {
    background: url("http://static-cdn.weebly.com/images/weebly-footer-active.png") no-repeat;
    _background: url(data:image/gif;base64,AAAA);
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-active.png', sizingMethod='crop');
    }
    
.weebly-footer-button-text {
    display: none;
    }
    
.weebly-footer-message {
    display: none;
    position: absolute;
    top: -86px;
    left: 1px;
    width: 395px;
    height: 98px;
    _background: url(data:image/gif;base64,AAAA);
    }
    
.weebly-footer-dynamic-hover .weebly-footer-message {
    display: block;
    }
    
.weebly-footer-right .weebly-footer-message {
    left: -310px;
    }
    
.weebly-footer-message-content {
    position: relative;
    display: block;
    width: 100%;
    height: 59px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-content.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-content.png', sizingMethod='crop');
    }
    
.weebly-footer-message-carrot {
    position: relative;
    left: 55px;
    float: left;
    display: block;
    width: 12px;
    height: 7px;
    background: url("http://static-cdn.weebly.com/images/weebly-footer-carrot.png") no-repeat;
    _background: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static-cdn.weebly.com/images/weebly-footer-carrot.png', sizingMethod='crop');
    }
    
.weebly-footer-right .weebly-footer-message-carrot {
    left: 367px;
    }
    
-->
</style>

<script type='text/javascript'>
<!--

function positionWeeblyFooter() {
    var e = $('weebly-footer-mark');
    if (e.cumulativeOffset().left > document.viewport.getWidth()/2) {
        e.up().addClassName('weebly-footer-right');
    }else{
        e.up().removeClassName('weebly-footer-right');
    }
}

//-->
</script>

<span class='weebly-footer'
 onmouseover="$(this).addClassName('weebly-footer-hover')"
 onmouseout="$(this).removeClassName('weebly-footer-hover')">
    Create a <a target="_blank" href="http://www.weebly.com/">free website</a> with
    <span id='weebly-footer-mark'></span>
    <a class='weebly-footer-dynamic' target="_blank" href="http://www.weebly.com/?footer"
     onmouseover="$(this).addClassName('weebly-footer-dynamic-hover');positionWeeblyFooter()"
     onmouseout="$(this).removeClassName('weebly-footer-dynamic-hover')">
        <span class='weebly-footer-button'>
            <span class='weebly-footer-button-text'>Weebly</span>
        </span>

        <span class='weebly-footer-message'>
            <span class='weebly-footer-message-content'></span>
            <span class='weebly-footer-message-carrot'></span>
        </span>
    </a>
</span>

<script type='text/javascript'>
<!--

if (document.cookie.match(/(^|;)\s*is_mobile=1/)) {
    document.write(
        "&nbsp;&nbsp;&nbsp;&nbsp;" +
        "<a href='?mobile'>Mobile Site</a>"
    );
}

//-->
</script>

</div>
            </div>

          <div class="clear"></div>  
        </div>
    </div> 


<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-7870337-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _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>

<!-- Start Quantcast tag -->
<script type="text/javascript">
  _qoptions={
    qacct:"p-0dYLvhSGGqUWo"
  };
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<img src="http://pixel.quantserve.com/pixel/p-0dYLvhSGGqUWo.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
</noscript>
<!-- End Quantcast tag -->

</body>
</html>

Style (css)

Code:

ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,div.paragraph,blockquote,fieldset,input{ margin:0; padding:0; }
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{ margin:0; padding:0; }
 ul{ list-style:none; }
 fieldset{ border:0; }
 a img{ border:0; }
 .clear{ clear:both; }
 body { background-color:#666666; background: url(theme/bodybg.jpg?250402) center repeat-y; font-family:"Georgia", arial, sans-serif; font-size:12px; color:#666666; margin:0; padding:0; }
 div.paragraph { line-height: 170%; color: #e7e7e7; font-size: 14px; margin: 5px 0px 5px 0px; }
 p { line-height: 170%; color: #e7e7e7; font-size: 14px; margin: 5px 0px 5px 0px; }
 h1 { color: #cccccc; font-size: 30px; font-style: italic; margin: 0px 0px 10px 0px; }
 h2 { font-size:24px; font-weight:normal; font-family:"Georgia", arial, sans-serif; color:#ffffff; line-height:1.5; margin: 10px 0px 7px 0px; }
 #wrapper { width:960px; margin:0pt auto; }
 #container{ width: 960px; }
 #content{ width: 717px; min-height: 500px; _height: 500px; padding: 10px 0px 15px 0px; }
 #content a{ color: #d37d1a; font-size: 14px; text-decoration: none; }
 #leftcolumn{ float: left; width: 204px; padding: 104px 15px 0px 0px; }
 #leftcolumn ul{ float: right; }
 #leftcolumn ul li{ margin: 5px 0px 0px 0px; }
 #leftcolumn ul li a{ color: #ffffff; width: 187px; height: 33px; display: block; font-size: 20px; font-style: italic; text-align: right; text-decoration: none; padding: 3px 17px 0px 0px; }
 #leftcolumn ul li#active a, #leftcolumn ul li a:hover{ background: url(theme/navbg.png?250402) no-repeat; _background: none; _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='files/theme/navbg.png?250402', sizingMethod='crop'); }
 #rightcolumn{ float: left; width: 717px; padding: 0px 0px 0px 24px; }
 #header{ width: 717px; padding: 34px 0px 0px 0px; }
 #sitename{ width: 717px; color: #cccccc; font-size: 30px; font-style: italic; padding: 0px 0px 20px 0px; border-bottom: 1px #666666 dotted; }
 #footer{ visibilty:hidden; width: 717px; color: #000000; font-size:0px; text-align: right; padding: 0px 0px 0px 0px; border-top: 1px dotted #000000; }
 #footer a{ visibility:hidden; color: #d37d1a; text-decoration: none; }
 #footer .weebly-footer a{ visibility:hidden; color: #000000; }

div.paragraph ul, div.paragraph ol { padding-left: 25px !important; margin: 5px 0 !important; overflow:hidden; }
div.paragraph li { padding-left: 5px !important; margin: 3px 0 0 !important; }
div.paragraph ul, div.paragraph ul li { list-style: disc outside !important; }
div.paragraph ol, div.paragraph ol li { list-style: decimal outside !important; }

Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#67 2011-05-28 20:27:42

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

Can I become a developer? This Is the most advanced mod that I've seen!

[edit]Can I try to make an edited version of the Scratch Applet for it?

I think so!  smile  I don't think anyone is doing that, welcome!


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#68 2011-05-28 20:30:59

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

xIIV wrote:

scratcher7_13 wrote:


I think I know what the problem is. Can I help (if it's okay)?

Yeah, sure.

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

It usually changes it to that automatically I think.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#69 2011-05-28 20:37:10

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

Pecola1 wrote:

scratcher7_13 wrote:

xIIV wrote:


Yeah, sure.

I think it should be this:

Code:

ifReport: t1 true t2 false: t3
        t1 = true ifTrue: [^ t2].
        ^ t3

It usually changes it to that automatically I think.

Might - forgot to check  tongue


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#70 2011-05-28 20:48:10

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Rocket (RKT) Mod

Pecola1 wrote:

scratcher7_13 wrote:

Can I become a developer? This Is the most advanced mod that I've seen!

[edit]Can I try to make an edited version of the Scratch Applet for it?

I think so!  smile  I don't think anyone is doing that, welcome!

Thanks! It will help improve my Java skills.


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#71 2011-05-28 20:51:09

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

scratcher7_13 wrote:

Pecola1 wrote:

scratcher7_13 wrote:

Can I become a developer? This Is the most advanced mod that I've seen!

[edit]Can I try to make an edited version of the Scratch Applet for it?

I think so!  smile  I don't think anyone is doing that, welcome!

Thanks! It will help improve my Java skills.

Lol - anyone else want to do a flash viewer?  Lol, jk - after we finish with Rocket, maybe  tongue


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#72 2011-05-29 09:47:04

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Rocket (RKT) Mod

ssss wrote:

scratcher7_13 wrote:

Pecola1 wrote:


I think so!  smile  I don't think anyone is doing that, welcome!

Thanks! It will help improve my Java skills.

Lol - anyone else want to do a flash viewer?  Lol, jk - after we finish with Rocket, maybe  tongue

Yes of course.  tongue  After It is finished.
I want to just show you what has happened to the name:
RKT
Pypatch
RKT
Rocket

I think we should change the name to Rainbow. Anyone else think so? JK XD LOL


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#73 2011-05-29 09:48:52

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Rocket (RKT) Mod

In the current stable version, if you get the password wrong, it gets an error.

Last edited by Pecola1 (2011-05-29 09:53:39)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#74 2011-05-29 15:58:17

xIIV
New Scratcher
Registered: 2010-12-04
Posts: 72

Re: Rocket (RKT) Mod

Pecola1 wrote:

In the current stable version, if you get the password wrong, it gets an error.

Yes, I think we should change this to our own popup error.
Thats actually really easy. :I


Helping helps others to help you.  wink

Offline

 

#75 2011-05-30 02:28:18

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Rocket (RKT) Mod

xIIV wrote:

Pecola1 wrote:

In the current stable version, if you get the password wrong, it gets an error.

Yes, I think we should change this to our own popup error.
Thats actually really easy. :I

Have you almost finished?

@Pecola1:  That's how I found out the password again!


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

Board footer