ssss wrote:
www.cyberkidscountry.com/rocket/Rocket.zip
unbanned
edit: I can't open it
Last edited by gbear605 (2011-05-14 19:33:23)
Offline
gbear605 wrote:
ssss wrote:
gbear605 wrote:
WELL whatever website, and I'll set the sprite etc.
You'll have to change the title to Rocket (Alpha) 0.2 for your update
Yeah, just zip it up already
![]()
22.4% uploaded to the link above
29.8%
Last edited by ssss (2011-05-14 19:33:00)
Offline
ssss wrote:
gbear605 wrote:
ssss wrote:
You'll have to change the title to Rocket (Alpha) 0.2 for your updateYeah, just zip it up already
![]()
22.4% uploaded to the link above
![]()
29.8%
ah lol
Offline
ssss wrote:
www.cyberkidscountry.com/rocket/Rocket.zip
YAY! Lets see what this baby can DO!
EDIT: My computer says the file is invalid or corrupt.
Do you know why? Can you put one with just the image?
Last edited by Pecola1 (2011-05-14 19:40:26)
Offline
Pecola1 wrote:
ssss wrote:
www.cyberkidscountry.com/rocket/Rocket.zip
YAY! Lets see what this baby can DO!
EDIT: My computer says the file is invalid or corrupt.Do you know why? Can you put one with just the image?
not done uploading yet.
AND I'm editing first.
This version isn't a complete version, but I got impatient
Last edited by gbear605 (2011-05-14 19:45:34)
Offline
gbear605 wrote:
Pecola1 wrote:
ssss wrote:
www.cyberkidscountry.com/rocket/Rocket.zip
YAY! Lets see what this baby can DO!
EDIT: My computer says the file is invalid or corrupt.Do you know why? Can you put one with just the image?
not done uploading yet.
AND I'm editing first.
This version isn't a complete version, but I got impatient![]()
change Rocket.zip to Rocket.image
It should work
Offline
gbear605 wrote:
Pecola1 wrote:
ssss wrote:
www.cyberkidscountry.com/rocket/Rocket.zip
YAY! Lets see what this baby can DO!
EDIT: My computer says the file is invalid or corrupt.Do you know why? Can you put one with just the image?
not done uploading yet.
AND I'm editing first.
This version isn't a complete version, but I got impatient![]()
I know I know, I just 1. Wanted to see the new logo. and 2. I know how to create a patch, so i could just give you a patch after making it, then you can file it in. (I would tell you how If you needed)
Offline
http://www.cyberkidscountry.com/rocket/Rocket.image
Last edited by gbear605 (2011-05-14 19:51:16)
Offline
ssss wrote:
gbear605 wrote:
Pecola1 wrote:
YAY! Lets see what this baby can DO!
EDIT: My computer says the file is invalid or corrupt.Do you know why? Can you put one with just the image?
not done uploading yet.
AND I'm editing first.
This version isn't a complete version, but I got impatient![]()
change Rocket.zip to Rocket.image
It should work
How and why?
Offline
gbear605 wrote:
Thanks.
Offline
SWEET LOGO! BTW, the first thing I see is making share capitalized (or should we make it Mesh, or something like that?), second, can i make the R shift-clickable? I know how to without moving the image.
Last edited by Pecola1 (2011-05-14 19:57:34)
Offline
@gbear605 I have two patches, If you don't know how to file in I can teach you.
For the capitalization in the share:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'!
!ScratchFrameMorph methodsFor: 'initialization'!
createMenuPanel
| t1 t2 |
menuPanel _ AlignmentMorph new color: Color transparent;
centering: #center;
inset: 0;
height: 0.
self addShortcutButtonsTo: menuPanel.
t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) ).
t1 do:
[:t3 |
t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized;
target: self selector: (t3 at: 2).
menuPanel addMorphBack: t2.
#helpMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent;
extent: 12 @ 5)]].
topPane addMorph: menuPanel! !For the shift clicking the R:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'!
!ScratchFrameMorph methodsFor: 'event handling'!
mouseDown: t1
| t2 |
t1 hand toolType: nil.
t2 _ self position + (ScratchFrameMorph isXO
ifTrue: [92 @ 26]
ifFalse: [58 @ 10]).
(((t2 extent: 15 @ 15)
containsPoint: t1 cursorPoint)
and: [t1 shiftPressed])
ifTrue: [^ self developersMenu].
t1 cursorPoint y - self top < topPane height
ifTrue: [fillScreenFlag ifFalse: [t1 hand grabMorph: self]]! !You can still shift click the file menu. I can make it so you can't if you want.
Offline
Pecola1 wrote:
@gbear605 I have two patches, If you don't know how to file in I can teach you.
For the capitalization in the share:Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'initialization'! createMenuPanel | t1 t2 | menuPanel _ AlignmentMorph new color: Color transparent; centering: #center; inset: 0; height: 0. self addShortcutButtonsTo: menuPanel. t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) ). t1 do: [:t3 | t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized; target: self selector: (t3 at: 2). menuPanel addMorphBack: t2. #helpMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent; extent: 12 @ 5)]]. topPane addMorph: menuPanel! !For the shift clicking the R:
Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'event handling'! mouseDown: t1 | t2 | t1 hand toolType: nil. t2 _ self position + (ScratchFrameMorph isXO ifTrue: [92 @ 26] ifFalse: [58 @ 10]). (((t2 extent: 15 @ 15) containsPoint: t1 cursorPoint) and: [t1 shiftPressed]) ifTrue: [^ self developersMenu]. t1 cursorPoint y - self top < topPane height ifTrue: [fillScreenFlag ifFalse: [t1 hand grabMorph: self]]! !You can still shift click the file menu. I can make it so you can't if you want.
I fixed both, I'm having a developer menu (with password protect), and I already fixed the share menu making it capitalized.
EDIT:
THE PASSWORD WILL BE 'creeper' for now.
Last edited by gbear605 (2011-05-14 21:02:36)
Offline
gbear605 wrote:
Pecola1 wrote:
@gbear605 I have two patches, If you don't know how to file in I can teach you.
For the capitalization in the share:Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'initialization'! createMenuPanel | t1 t2 | menuPanel _ AlignmentMorph new color: Color transparent; centering: #center; inset: 0; height: 0. self addShortcutButtonsTo: menuPanel. t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) ). t1 do: [:t3 | t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized; target: self selector: (t3 at: 2). menuPanel addMorphBack: t2. #helpMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent; extent: 12 @ 5)]]. topPane addMorph: menuPanel! !For the shift clicking the R:
Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'event handling'! mouseDown: t1 | t2 | t1 hand toolType: nil. t2 _ self position + (ScratchFrameMorph isXO ifTrue: [92 @ 26] ifFalse: [58 @ 10]). (((t2 extent: 15 @ 15) containsPoint: t1 cursorPoint) and: [t1 shiftPressed]) ifTrue: [^ self developersMenu]. t1 cursorPoint y - self top < topPane height ifTrue: [fillScreenFlag ifFalse: [t1 hand grabMorph: self]]! !You can still shift click the file menu. I can make it so you can't if you want.
I fixed both, I'm having a developer menu (with password protect), and I already fixed the share menu making it capitalized.
EDIT:
THE PASSWORD WILL BE 'creeper' for now.
Cool! When will you upload your edit? What are you currently adding? The default sprite should be the logo!
Offline
ssss wrote:
thebuilderdd wrote:
ssss wrote:
Try and look at the share menu of Scratch normalPlace in the System Browser? I think I will have just a random "Share" Menu you have to shift click.
Scratch-UI-Panes -> Menu/Buttons -> ShareMenu:
I think![]()
Scratch-UI-Panes » ScratchFrameMorph » menu/button actions » shareMenu:
I think.
Offline
scimonster wrote:
ssss wrote:
thebuilderdd wrote:
Place in the System Browser? I think I will have just a random "Share" Menu you have to shift click.Scratch-UI-Panes -> Menu/Buttons -> ShareMenu:
I think![]()
Scratch-UI-Panes » ScratchFrameMorph » menu/button actions » shareMenu:
I think.![]()
Lol. That
Offline
Uploaded as http://www.escratch.org/Rocket0.2.zip
As I don't have a windows, I (THINK) I have included the nessacery parts for the .exe, but I have no idea.
I HAVE included a working .app, it just has the Scraft logo (we need a square logo).
Pecola gets it next, BTW QUBO IS COOLIO
Offline
gbear605 wrote:
Pecola1 wrote:
@gbear605 I have two patches, If you don't know how to file in I can teach you.
For the capitalization in the share:Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'initialization'! createMenuPanel | t1 t2 | menuPanel _ AlignmentMorph new color: Color transparent; centering: #center; inset: 0; height: 0. self addShortcutButtonsTo: menuPanel. t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) ). t1 do: [:t3 | t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized; target: self selector: (t3 at: 2). menuPanel addMorphBack: t2. #helpMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent; extent: 12 @ 5)]]. topPane addMorph: menuPanel! !For the shift clicking the R:
Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'event handling'! mouseDown: t1 | t2 | t1 hand toolType: nil. t2 _ self position + (ScratchFrameMorph isXO ifTrue: [92 @ 26] ifFalse: [58 @ 10]). (((t2 extent: 15 @ 15) containsPoint: t1 cursorPoint) and: [t1 shiftPressed]) ifTrue: [^ self developersMenu]. t1 cursorPoint y - self top < topPane height ifTrue: [fillScreenFlag ifFalse: [t1 hand grabMorph: self]]! !You can still shift click the file menu. I can make it so you can't if you want.
I fixed both, I'm having a developer menu (with password protect), and I already fixed the share menu making it capitalized.
EDIT:
THE PASSWORD WILL BE 'creeper' for now.
First, that password is... used. Second, I think we should have it somewhat open source, some people just open it and hack to get the blocks. So we would make it so the development menu, changes a txt file by one every-time you open it on a new day. (we would make the file first save the number then make a newline then it would put the date.) I just thought of this idea and it is unused, no one has ever put a time limit on their developers menu before! Of course we should try to hide the txt. otherwise someone could simply change it. So we should put it somewhere tricky, like in documents(/libraries)/music. ANYBODY WITH ME?
Offline
gbear605 wrote:
Uploaded as http://www.escratch.org/Rocket0.2.zip
As I don't have a windows, I (THINK) I have included the nessacery parts for the .exe, but I have no idea.
I HAVE included a working .app, it just has the Scraft logo (we need a square logo).
Pecola gets it next, BTW QUBO IS COOLIO
Why did you put a panther exe in there? QUBO? Do you mean the chanel? Can we be more specific with Mathwiz's credit? It sounds like it's just cuz you are his friend.
Last edited by Pecola1 (2011-05-15 08:27:37)
Offline
Pecola1 wrote:
gbear605 wrote:
Pecola1 wrote:
@gbear605 I have two patches, If you don't know how to file in I can teach you.
For the capitalization in the share:Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'initialization'! createMenuPanel | t1 t2 | menuPanel _ AlignmentMorph new color: Color transparent; centering: #center; inset: 0; height: 0. self addShortcutButtonsTo: menuPanel. t1 _ #((#File #fileMenu:) (#Edit #editMenu:) (#Share #shareMenu:) (#Help #helpMenu:) ). t1 do: [:t3 | t2 _ ScratchMenuTitleMorph new contents: (t3 at: 1) localized; target: self selector: (t3 at: 2). menuPanel addMorphBack: t2. #helpMenu: = (t3 at: 2) ifFalse: [menuPanel addMorphBack: (Morph new color: Color transparent; extent: 12 @ 5)]]. topPane addMorph: menuPanel! !For the shift clicking the R:
Code:
'From Pecola1 [No updates present.] on May 14, 2011 for a Scratch Modification Named Rocket'! !ScratchFrameMorph methodsFor: 'event handling'! mouseDown: t1 | t2 | t1 hand toolType: nil. t2 _ self position + (ScratchFrameMorph isXO ifTrue: [92 @ 26] ifFalse: [58 @ 10]). (((t2 extent: 15 @ 15) containsPoint: t1 cursorPoint) and: [t1 shiftPressed]) ifTrue: [^ self developersMenu]. t1 cursorPoint y - self top < topPane height ifTrue: [fillScreenFlag ifFalse: [t1 hand grabMorph: self]]! !You can still shift click the file menu. I can make it so you can't if you want.
I fixed both, I'm having a developer menu (with password protect), and I already fixed the share menu making it capitalized.
EDIT:
THE PASSWORD WILL BE 'creeper' for now.First, that password is... used. Second, I think we should have it somewhat open source, some people just open it and hack to get the blocks. So we would make it so the development menu, changes a txt file by one every-time you open it on a new day. (we would make the file first save the number then make a newline then it would put the date.) I just thought of this idea and it is unused, no one has ever put a time limit on their developers menu before! Of course we should try to hide the txt. otherwise someone could simply change it. So we should put it somewhere tricky, like in documents(/libraries)/music. ANYBODY WITH ME?
Better yet, if you put it in C:/Program Files/Rocket/Files/Memory/Menu.txt.
Offline
scimonster wrote:
Pecola1 wrote:
First, that password is... used. Second, I think we should have it somewhat open source, some people just open it and hack to get the blocks. So we would make it so the development menu, changes a txt file by one every-time you open it on a new day. (we would make the file first save the number then make a newline then it would put the date.) I just thought of this idea and it is unused, no one has ever put a time limit on their developers menu before! Of course we should try to hide the txt. otherwise someone could simply change it. So we should put it somewhere tricky, like in documents(/libraries)/music. ANYBODY WITH ME?
Better yet, if you put it in C:/Program Files/Rocket/Files/Memory/Menu.txt.
Yes, that may work, but it wont be very hidden, and it wont work if someone wants the img only.
Offline
Pecola1 wrote:
scimonster wrote:
Pecola1 wrote:
First, that password is... used. Second, I think we should have it somewhat open source, some people just open it and hack to get the blocks. So we would make it so the development menu, changes a txt file by one every-time you open it on a new day. (we would make the file first save the number then make a newline then it would put the date.) I just thought of this idea and it is unused, no one has ever put a time limit on their developers menu before! Of course we should try to hide the txt. otherwise someone could simply change it. So we should put it somewhere tricky, like in documents(/libraries)/music. ANYBODY WITH ME?
Better yet, if you put it in C:/Program Files/Rocket/Files/Memory/Menu.txt.
Yes, that may work, but it wont be very hidden, and it wont work if someone wants the img only.
But then it won't download that file either.
My reasoning is- you can edit stuff in C:/Users/You, but not in Program Files, at least not without giving permission. ^^
Offline
scimonster wrote:
Pecola1 wrote:
scimonster wrote:
Better yet, if you put it in C:/Program Files/Rocket/Files/Memory/Menu.txt.Yes, that may work, but it wont be very hidden, and it wont work if someone wants the img only.
But then it won't download that file either.
My reasoning is- you can edit stuff in C:/Users/You, but not in Program Files, at least not without giving permission. ^^
You CAN edit in program files, I have done it. Just it is harder, you have to copy and paste. I do think thats a better place though.
Offline
Should the length for the dev menu be a week?
Offline