Snapblocks have been added to the forum

Snapblocks have now been added to the forum (thanks Michael)!

You can add snapblocks by clicking on the gear, and then "snapblocks"
image

Or you can put it in [snapblocks], [scratchblocks], or [sb] bbcode tags.

[snapblocks]
move (10) steps
[/snapblocks]
move (10) steps

You can use [sb] to add snapblocks inline with text.

Use the [sb] move (10) steps [/sb] to move 10 steps.

Use the move (10) steps to move 10 steps.

You can change the block style by doing

[snapblocks="snap-flat"]
if <[] = []> {
  forever {
    run ({say []} @addInput) with inputs [Hello world] @delInput @verticalEllipsis @addInput
  }
}
[/snapblocks]
if <[] = []> {
  forever {
    run ({say []} @addInput) with inputs [Hello world] @delInput @verticalEllipsis @addInput
  }
}

There are also more options you can use.

[snapblocks blockStyle="scratch2" zebra="false" wrap="true" wrapSize=100 showSpaces="false"]
if <[] = []> {
  forever {
    run ({say []} @addInput) with inputs [Hello world] @delInput @verticalEllipsis @addInput
  }
}
[/snapblocks]
if <[] = []> {
  forever {
    run ({say []} @addInput) with inputs [Hello world] @delInput @verticalEllipsis @addInput
  }
}

All the options are on (true) by default, although the only option anyone would probably ever use is blockStyle.

This plugin also fixes many issues with the precious scratchblocks plugin. First of all, this works in all forum themes. Second, you don't need to do funky stuff in order to get icons to render properly.

If you want to know everything you can do in snapblocks, you can go here.

Nice. Now we can finally do a silly block:: #241fa4 script and maybe a few stupid jokes! :D
{and better rings too!}@addInput::ring
I also wish there was a zoomed blocks if there isn't already? Maybe like

[sb]
{zoom}:: #2196f3 120%
[/sb]

I will not be adding a way to zoom in blocks in snapblocks itself (it would result in different blocks in the same script being different sizes, and that's not good). However, the admin can change the block scale (which I can ask them to do).

Oh, so it's only an admin settings?

Yeah, because that would make block sizes consistent.

Not for me...

My theme is "Snap! Style."

Try clearing your cache. The plugin is properly made to not be theme specific. Also, I'm also using the snap style theme, and it works.

finally!! :: control

Duh. Thank you.

Now that I can see them, I agree with @tethrarxitet that the pictures are rather small. You say we can adjust that?

Yeah, you can adjust the block scale if you go to the plugin settings, which can be found here (only admins can view the page, for everyone else, it will say that the page doesn't exist).

https://forum.snap.berkeley.edu/admin/plugins

Scroll down to the snapblocks plugin, click on the settings button on the right, then change the block scale from 1.0 to 1.2 (or at least, that's what I've tested that looks good).

when I receive [snapblocks added to forum V] @addInput
launch ({forever {
set y to (([abs V] of ([sin V] of ((timer) × (180)))) × (50))}} @addInput) @addInput
say [yay!] for (2) seconds
say [i can use snapblocks here now!]

Done!

Oh, and thank you for building this!

You're welcome! I honestly starred work on snapblocks because people have talked about it for years (the earliest mention I found on the forum was in 2016 from @tjvr), yet no one had done anything to create it. Heck, even I talked about it years ago (back when I was still new to snap). I basically said, "screw it, no one has done anything, so I'm gonna do it". Since then, I have had so much fun working on snapblocks, even though I rewrote the block parts positioning 3 or 4 times (and adding all the icons sometimes felt like a chore).

From the start, I was working on snapblocks for the snap community, and I'm actually honored that one of my projects is being used on a forum and wiki that has lots of users. I have had one other program that many people use, but not at the same scale as snapblocks.

My next project might be converting snapblocks to snap xml, which will take a while, and I'm not even sure when I will start doing it, but I have some ideas on how I could do it (although I would need to heavily consult the snap xml format in order to make things work). If I do eventually do it, I'll add an option to the discourse plugin to render as png images with the embedded scripts, so people can import them into snap (and just saying, it wouldn't take up more storage space, because the images would be generated client side).

It's late, and my mind just decided to ramble here

when gf clicked
script variables ((msg)) $addInput
set [msg V] to [This is super cool!!]
do in parallel {
forever {
say (msg)
}
} {
script variables ((yV)) $addInput
forever {
if <(y position) ≤ (0)> {
set [yV V] to [15]
do in parallel {
script variables ((prev)) $addInput
set [prev V] to (msg)
set [msg V] to [bounce...]
wait (0.5) secs
set [msg V] to (prev)
} $delInput $verticalEllipsis $addInput :: control
}
change y by (yV)
change [yV V] by [-1] /* the gravitational */
}
} $delInput $verticalEllipsis $addInput \n and wait :: control

wait, if the scratchblocks tag works, why aren’t old scratchblocks converted?

when flag clicked
move (10)  steps
say [Hello]
say [Finally snapblocks works!]
explode

YEEEEEEEEEEES FINALLY!

when gf clicked move (10) steps say [Hello] say [Finally snapblocks works!] explode $flash-4-255-192-00::#fe8708
I styled your cute little red explode block :)

when flag clicked
move (10) steps
say [Hello]
say[Finally snapblocks works!]
explode

How did you style that?

[sb]
explode $flash-4-255-192-00::#fe8708
block::#hexclr blocktype
[/sb]

when flag clicked move (10) steps say [Hello] say [Snapblocks finally works!] explode $flash-4-255-192-00::#fe8708
like that?