Discuss Scratch

GizzyGazzy360
Scratcher
87 posts

Sharp -- a 2.0 mod

You should also add export to .swf files, I don't know how you would do it though…

Check out some of my games, they kinda epic.
Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

WaffleCODEZ wrote:

Can you add JS extension support?
Maybe. I will need to figure out how ScratchX loads extension before I can add support for loading JS extensions to Sharp.

GizzyGazzy360 wrote:

You should also add export to .swf files, I don't know how you would do it though…
Maybe sometime. But I have no idea how to do that yet.

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod
donotforgetmycode
Scratcher
1000+ posts

Sharp -- a 2.0 mod

DrKat123 wrote:

Jonathan50 wrote:

What about unary operators?
A unary operator is an operator with one argument (like +, -, ~, not)

This text under the grey line is my signature. It's not part of my post, but it automatically shows up under all of my posts.

I recommend reading jvvg and Sliverus's essays.

She/her


















Stuff at the bottom of my signature:

for \({
set [i v] to [0]
}; <(i) < [10]>; {
change [i v] by (1)
}) \{{
think (i) for (1) secs
}} :: control
https://scratch.mit.edu/discuss/post/6785965/

Paddle2See wrote:

Would you recommend a confirmation dialog box on that action?
________________________________
| Really send missiles? (Y)es (N)o |
——————————————————

Please forgive my crude mock-up.

By the way - this is rejected for safety reasons.

An0therRand0mC0der wrote:

a bully with a big belly steals your moist cheesy beef
music origins
Be horizontal —
(thanks @thugatwoary and @Za-Chary)
Be high contrast
Generation -1: The first time you see this, copy and paste it on top of your signature in the Scratch forums, and decrease the generation by 1. Social experiment.
i ran out of characters
Kumquat lore
The Scratch Forums support bf +-<>[],.
_3thou_
It seems I can still use assets in my signature. test:
;
StarwarsTNT17
Scratcher
8 posts

Sharp -- a 2.0 mod

Cool!
Shouldn't
^
go with +, -, * and / at the top of operators?
FILENAME_3
Scratcher
17 posts

Sharp -- a 2.0 mod

GizzyGazzy360 wrote:

You should also add export to .swf files, I don't know how you would do it though…
oof - o o f - o o f - o o f
FILENAME_3
Scratcher
17 posts

Sharp -- a 2.0 mod

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
but how do you sign in to scratch and save?

Last edited by FILENAME_3 (Nov. 6, 2018 19:25:55)

Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

StarwarsTNT17 wrote:

Cool!
Shouldn't
^
go with +, -, * and / at the top of operators?
There are two ^ blocks, which look exactly the same. One of which is power of and the other is bitwise xor. The power of one is located at the top of the operators with +, -, * and /. The bitwise xor block is located with the other bitwise blocks like &, |, ~, << and >>. I should probably make them look a bit different.

FILENAME_3 wrote:

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
but how do you sign in to scratch and save?
Scratch mods can't save to the Scratch website. So the only way to save is to download the project.

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod
space_elephant
Scratcher
500+ posts

Sharp -- a 2.0 mod

Good but there is one problem: I can't tell the differance between the power block and the bitwise xor
((1)^(2)::operators)//1
((1)^(2)::operators)//3

red link
[url=redlink.com][color=red][u]red link[/u][/color][/url]
Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

space_elephant wrote:

Good but there is one problem: I can't tell the differance between the power block and the bitwise xor
((1)^(2)::operators)//1
((1)^(2)::operators)//3
I have changed the “to power of” block to:
(( ) to power of ( )::operators)

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod
PullJosh
Scratcher
1000+ posts

Sharp -- a 2.0 mod

Mrcomputer1 wrote:

space_elephant wrote:

Good but there is one problem: I can't tell the differance between the power block and the bitwise xor
((1)^(2)::operators)//1
((1)^(2)::operators)//3
I have changed the “to power of” block to:
(( ) to power of ( )::operators)

((1) ^ (2)::operators) // 1
((1) XOR (2)::operators) // 3

Maybe this makes more sense?
FILENAME_3
Scratcher
17 posts

Sharp -- a 2.0 mod

Mrcomputer1 wrote:

StarwarsTNT17 wrote:

Cool!
Shouldn't
^
go with +, -, * and / at the top of operators?
There are two ^ blocks, which look exactly the same. One of which is power of and the other is bitwise xor. The power of one is located at the top of the operators with +, -, * and /. The bitwise xor block is located with the other bitwise blocks like &, |, ~, << and >>. I should probably make them look a bit different.

FILENAME_3 wrote:

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
but how do you sign in to scratch and save?
Scratch mods can't save to the Scratch website. So the only way to save is to download the project.
can you uploed the mods
FILENAME_3
Scratcher
17 posts

Sharp -- a 2.0 mod

Mrcomputer1 wrote:

space_elephant wrote:

Good but there is one problem: I can't tell the differance between the power block and the bitwise xor
((1)^(2)::operators)//1
((1)^(2)::operators)//3
I have changed the “to power of” block to:
(( ) to power of ( )::operators)
My browser / operating system: Windows NT 10.0, Chrome 70.0.3538.77, Flash 31.0 (release 0)
Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

PullJosh wrote:

Mrcomputer1 wrote:

space_elephant wrote:

Good but there is one problem: I can't tell the differance between the power block and the bitwise xor
((1)^(2)::operators)//1
((1)^(2)::operators)//3
I have changed the “to power of” block to:
(( ) to power of ( )::operators)

((1) ^ (2)::operators) // 1
((1) XOR (2)::operators) // 3

Maybe this makes more sense?
I changed it to that.

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod
Scratch_FootballStar
Scratcher
9 posts

Sharp -- a 2.0 mod

I have a problem, evrything is in uppercase and not exact. Can you help me please!
Thanks

Developing my new project
https://scratch.mit.edu/projects/229651851/
if <you look at my project> then 
say [I will be encouraged]
say [I will continue]

else
say [I will be sad]
say [I will stop]

end
ScratchedSack
Scratcher
14 posts

Sharp -- a 2.0 mod

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
That's really cool
papperboy3498
Scratcher
18 posts

Sharp -- a 2.0 mod

use another plugin like HTML5. flash will lose support in 12/31/2020.

@ProgramingBeginner Signature Chain:
Level: 1
When you see this, put this at the top of your signature, and increase the level by 1! (Also, comment on @ProgramingBeginner's profile saying that you contributed to the signature chain!)
if you give me an internet, it would be gladly appreciated! give an internet
ScratchedSack
Scratcher
14 posts

Sharp -- a 2.0 mod

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute

Add a
<showing> 
{scratchblocks]
block

Last edited by ScratchedSack (April 4, 2019 00:59:32)

Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

papperboy3498 wrote:

use another plugin like HTML5. flash will lose support in 12/31/2020.
I plan to make a 3.0 based version eventually.

ScratchedSack wrote:

DrKat123 wrote:


Add a
<showing> 
block
I will add that sometime.

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod
Executec
Scratcher
100+ posts

Sharp -- a 2.0 mod

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
But all it does is say:
[/quote}
Sharp is loading…
Please wait…

Mrcomputer1
Scratcher
500+ posts

Sharp -- a 2.0 mod

Executec wrote:

DrKat123 wrote:

I've made a Scratch mod with @mrcomputer1, it's called “Sharp” don't ask why I picked that name, it was supposed to have some of Snap!'s block
You can get the source code here
Report issues here

Tasks:
  • Add a
    (()^()::reporter operators) 
    block – complete
  • Add a custom reporter system – will work on it later
  • Add first-class-citizens – will work on it later
  • and more…

You can check the live version of the mod here: at SharpScratchMod.github.io
(not done yet )

Feel free to contribute
But all it does is say:
[/quote}
Sharp is loading…
Please wait…

Do you have Flash Player installed? Sharp is a Scratch 2.0 mod and requires Flash to run. If it isn't installed, you can install it at https://get.adobe.com/flashplayer/ (make sure to turn off its unnecessary “optional offers” ) and it should work then. If it is already installed, what is the browser you are using (press the globe button to automatically insert it into your post) and what happens if you go to https://sharpscratchmod.github.io/Sharp.swf?

My Profile / My User Page / My Talk Page
——————–
Progress bar to 1000+ Posts - Image might not be up to date

——————–
My browser / operating system: Windows NT 10.0 (Windows 11 - 22H2), Firefox 122.0b4
——————–
My ScratchX Extensions——–If you like this post, give me an internet!——–Sharp Scratch Mod

Powered by DjangoBB