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

#1 2010-10-29 16:33:33

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

JeanTheFox's guide to BBCode

If you're reading this, you're probably a new user to the forums. Either that or you just clicked on the link to this topic because it was there.

But enjoy anyway  smile
_____________________________________

Chap1
Using tags.

You can use tags by attaching certain characters in brackets around your words.
So far I've been using the bold tag, which looks like this;

Code:

[b]bold[/b]

You can use i tags for italics.

Code:

[i]italics[/i]

And u tags for underlines.

Code:

[u]underline[/u]

Those are the three most simple BBCode tags.

Now that you're familiar with tags, let's try color tags.

Color tags are produced when you type in color= and then the name of your color.

Code:

[color=red]Red[/color]

Will produce Red text.
You can also use raw numbers so long as you know the color that will occur.

Code:

[color=#FF0000]Red[/color]

And you will still get Red text.

If you want your text to be invisible, try transparent or gainsboro colors.

Code:

Use [color=transparent]transparent[/color] or [color=gainsboro]gainsboro[/color] colors to make your text invisible.

Makes;

Use transparent or gainsboro colors to make your text invisible.

However, if you or someone else quotes your gainsboro text, it becomes visible.

Use transparent or gainsboro colors to make your text invisible.

But transparent text stays invisible.

To see invisible text, highlight the area you think or know it is in. Usually you can tell if someone is using invisible text if their post has an extra space at the bottom or if there is a sudden break in their text.

But remember, transparent tags only work on Internet Browsers other than Internet Explorer!

Those are all text-altering tags.

Chap2
Using links

I set the link above to go to my My Stuff page. Once you learn how to use links, you can create links to many many websites.

There are two types of links; and two ways to use those two types. That may be a little confusing now, but soon you'll be able to agree with that statement.

I'll start with the basic link.

http://scratch.mit.edu/users/JeanTheFox
This will give you the link to the site and show you the title as well.

Code:

[url]http://scratch.mit.edu/users/JeanTheFox[/url]

Is what I used.

Now, let's say you are typing a paragraph, and want to squeeze your link into it without ruining the whole thing with a big fat address. What you can do is use the same url tags, but changed a little bit.

Code:

[url=http://scratch.mit.edu/users/JeanTheFox]My Stuff Page[/url]

This will result in a link to my My Stuff Page.
But be careful; sometimes you may end up with this:

Code:

[url=]http://scratch.mit.edu/users/JeanTheFoxMy Stuff Page[/url]

Do you see how the bracket was moved next to the equal sign? This will cause a link that can't take you anywhere because it has no address!
http://scratch.mit.edu/users/JeanTheFoxMy Stuff Page
See?

Now to the second kind of link: an e-mail link.

The Scratch Team does not allow your e-mail to be shared on the site. It never ends well; so please don't put your e-mail out there. The Scratch Team or moderators will remove it, so you might as well not put it there in the first place; so if your going to use this, use the Scratch Team's Help e-mail.

E-mail tabs are the same as url tags;

Code:

[email]help@scratch.mit.edu[/email]

Gives you help@scratch.mit.edu.

And just like url tags, you can use an equal sign.

Code:

[email=help@scratch.mit.edu]Contact Us here![/email]

Makes: Contact Us here!

And just to sum this up, I will include img (image) tags. Using these will produce an image.

Code:

[img]http://www.punbb.org/img/small_logo.png[/img]

This will result in
http://www.punbb.org/img/small_logo.png
NOTE: You need to upload your photo to www.tinypic.com or www.photoshack.com before you can get the image address to put the tags on.

If you want to make an image that links to another page, use this;

Code:

[url=http://scratch.mit.edu/users/JeanTheFox][img]http://www.punbb.org/img/small_logo.png[/img][/url]

So you can make a click-able image, like this;

http://www.punbb.org/img/small_logo.png

Chap3
Quoting and code quoting.

Using quotes and using code quoting may look very similar, but are very different.

To use quotes, use quote tags.

Code:

[quote]This is a quote.[/quote]

Will give you:

This is a quote.

Although sometimes, you may want to list the name of the person who said the words you want to quote. In that case, add an equal sign;

Code:

[quote=JeanTheFox]This is a quote.[/quote]

That way, you get this;

JeanTheFox wrote:

This is a quote.

Another way you can get the 'equal sign' quote is to click the Quote at the bottom right of a post.

For a trick with quoting, say you want to make a list; like in the Requests Forum, when you want to make a waiting list, try this;

Waiting List
1. JeanTheFox
2.
3.

Code:

[quote][b]Waiting List[/b]
1. JeanTheFox
2.
3.[/quote]

Now on to code quoting. Code quoting is special, because it deactivates all BBCode used inside its tags. I've been using code tags to show you the BBCode for the subjects above.

Unlike quoting, when you use a simple tag with no equal sign, the word Code: will appear rather than a blank beveled section.

Use this to display what kind of BBCode you want.

It looks like ['code'], save the apostrophes.

Code:

This is a code.

Chap4
Using Smilies!

Smilies are a fun way to show emotions. They can be used by making text smilies.

I will put a space between the two text symbols to show you what it looks like.
: ) and = ) =  smile
: | and = | =  neutral
: ( and = ( =  sad
: o and : O =  yikes
: D and = D =  big_smile
; ) =  wink
: P =  tongue
: / =  hmm
: lol : =  lol
: cool : =  cool
: mad : =  mad
: rolleyes : =  roll

To turn off smilies, click the 'Turn off Smilies' box.

Chap5
Using blocks.

Blocks are, unfortunately, not of the best quality. While taking screenshots or saving images of scripts are much easier, I think it's still important to know this.

You can use block tags to display images of blocks to answer a question about programming and the like:

Code:

[blocks]Put blocks here[/blocks]

Although you can use block tags, you can also use the code of the block you wish to use.

Code:

<move( 6 )steps>

<move( 6 )steps>[/blocks]

Is the result. But be careful; if you don't put significant space between the blocks and your words, they may overlap.

The easiest way to use blocks is to click on the block types and blocks at the bottom of your post box.

And remember; if you don't put /blocks at the end of using blocks, even if you didn't put a blocks tag at the beginning, everything after those blocks will be bold-ed.  smile

Credits
Credit to BBCode in general; great help to forum users everywhere.
Credit to Scratch for having a great community and atmosphere.
And not to sound selfish, but credit to me, JeanTheFox, for making this guide  tongue

For additional help, visit the Scratch Forums BBCode Help.

Last edited by JeanTheFox (2010-11-02 11:30:35)


http://i51.tinypic.com/20gcn5j.png

Offline

 

#2 2010-10-29 18:10:21

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Nice!  smile


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

#3 2010-10-29 18:26:50

Telemachus
Scratcher
Registered: 2010-04-21
Posts: 500+

Re: JeanTheFox's guide to BBCode

Not the most comprehensive, but very concise and to the point :D
Great guide.
Nothing on transparent text though? :(

Last edited by Telemachus (2010-10-29 18:28:07)


http://i54.tinypic.com/10h0fnp.jpg

Offline

 

#4 2010-10-29 19:16:37

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Jonathanpb wrote:

Nice!  smile

Thanks!

Telemachus wrote:

Not the most comprehensive, but very concise and to the point  big_smile
Great guide.
Nothing on transparent text though?  sad

Sorry, I don't want beginners manipulating that, but maybe I'll throw something about it in there  tongue

All done.  big_smile

Last edited by JeanTheFox (2010-10-29 19:24:06)


http://i51.tinypic.com/20gcn5j.png

Offline

 

#5 2010-10-29 19:44:29

webgal15
Scratcher
Registered: 2009-06-17
Posts: 1000+

Re: JeanTheFox's guide to BBCode

I'm not new, but . . . this was nice! Very organized and informative.


Now only using this account to post in Miscellaneous, but when Miss_Webgal becomes a Scratcher I'm ditching this account.

Offline

 

#6 2010-10-29 19:48:47

fullmoon
Retired Community Moderator
Registered: 2007-06-04
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Remind me to sticky this in a few days  wink


http://i302.photobucket.com/albums/nn100/fullmoon32/wow.jpg

Offline

 

#7 2010-10-29 19:53:06

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: JeanTheFox's guide to BBCode

fullmoon wrote:

Remind me to sticky this in a few days  wink

Ah, but we already have a trio of sub-ITopic'd BBCode guides - I don't think we need more!

(in this topic)

Offline

 

#8 2010-10-29 20:20:42

fullmoon
Retired Community Moderator
Registered: 2007-06-04
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

fullmoon wrote:

Remind me to sticky this in a few days  wink

Ah, but we already have a trio of sub-ITopic'd BBCode guides - I don't think we need more!

(in this topic)

Oh, forgot about that! This is a good topic nonetheless.

Last edited by fullmoon (2010-10-29 20:21:24)


http://i302.photobucket.com/albums/nn100/fullmoon32/wow.jpg

Offline

 

#9 2010-10-29 20:51:03

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

fullmoon wrote:

Oh, forgot about that! This is a good topic nonetheless.

webgal15 wrote:

I'm not new, but . . . this was nice! Very organized and informative.

Thanks!  smile


http://i51.tinypic.com/20gcn5j.png

Offline

 

#10 2010-10-29 20:53:45

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

fullmoon wrote:

Remind me to sticky this in a few days  wink

Ah, but we already have a trio of sub-ITopic'd BBCode guides - I don't think we need more!

(in this topic)

Aw... Jean's one is nice too!  yikes  Couldn't we put it in also? I likez.  big_smile


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

#11 2010-10-29 20:58:06

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Jonathanpb wrote:

coolstuff wrote:

fullmoon wrote:

Remind me to sticky this in a few days  wink

Ah, but we already have a trio of sub-ITopic'd BBCode guides - I don't think we need more!

(in this topic)

Aw... Jean's one is nice too!  yikes  Couldn't we put it in also? I likez.  big_smile

Really? Thanks  big_smile


http://i51.tinypic.com/20gcn5j.png

Offline

 

#12 2010-10-29 21:21:52

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Yes, this is a wonderful guide! It is just that we really don't need four of these  wink

Offline

 

#13 2010-10-29 21:46:09

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

Yes, this is a wonderful guide! It is just that we really don't need four of these  wink

I understand, I don't expect to get famous from this  tongue


http://i51.tinypic.com/20gcn5j.png

Offline

 

#14 2010-10-29 23:52:15

XplodingEggs
Scratcher
Registered: 2009-12-09
Posts: 100+

Re: JeanTheFox's guide to BBCode

Great guide! So you mean for the transparent text, like thistongue  Just joking, I kind of already knew about that.  lol
And yes, like coolstuff said, this is about the fourth guide like this.  tongue

Last edited by XplodingEggs (2010-10-29 23:53:03)


http://i54.tinypic.com/102kqr7.jpg

Offline

 

#15 2010-10-30 01:24:13

Chrischb
Scratcher
Registered: 2008-07-24
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

Yes, this is a wonderful guide! It is just that we really don't need four of these  wink

There are already three... and variety is cool.  tongue
[/persistence]


I fall: It's a tragedy. You fall: It's comedy.
Hmph enjoy your fall - I get a lovely spring... without pans of new leaves.

Offline

 

#16 2010-10-30 01:37:40

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

Yes, this is a wonderful guide! It is just that we really don't need four of these  wink

Ooh ooh ooh! But one of them is the official BBCode help page - that isn't something written by Scratchers and doesn't really count... we could replace it with this!  big_smile

(Sorry if I'm bothering you by my persistence... ^_^ :3)


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

#17 2010-10-30 09:21:43

RocksAndFire
Scratcher
Registered: 2010-04-17
Posts: 1000+

Re: JeanTheFox's guide to BBCode

I don't think your even allowed to share your e-mail on scratch...

Offline

 

#18 2010-10-30 09:24:13

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: JeanTheFox's guide to BBCode

RocksAndFire wrote:

I don't think your even allowed to share your e-mail on scratch...

You're not, but we still have the "email" tag for whatever reason...  tongue  Maybe it would be useful to mention that you shouldn't share your email? That might clear up loads of confusion.

Offline

 

#19 2010-10-30 09:42:28

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

coolstuff wrote:

RocksAndFire wrote:

I don't think your even allowed to share your e-mail on scratch...

You're not, but we still have the "email" tag for whatever reason...  tongue  Maybe it would be useful to mention that you shouldn't share your email? That might clear up loads of confusion.

Okay, will do  smile


http://i51.tinypic.com/20gcn5j.png

Offline

 

#20 2010-10-30 09:44:41

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: JeanTheFox's guide to BBCode

JeanTheFox wrote:

coolstuff wrote:

RocksAndFire wrote:

I don't think your even allowed to share your e-mail on scratch...

You're not, but we still have the "email" tag for whatever reason...  tongue  Maybe it would be useful to mention that you shouldn't share your email? That might clear up loads of confusion.

Okay, will do  smile

Thanks! Maybe it's just me, but the way you mentioned it seems a bit forceful. Perhaps something a little less threatening like "if you put your email on the forums, it will get removed, so shy away from it" would be more prudent. You really don't get in huge trouble for putting your email on the website - the email just gets removed and if you're persistent then maybe you'll get a notification about it.

Offline

 

#21 2010-10-30 09:47:25

mathematics
Scratcher
Registered: 2009-03-01
Posts: 1000+

Re: JeanTheFox's guide to BBCode

That's mentioned in the Terms of Use.

Offline

 

#22 2010-10-30 13:51:00

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

mathematics wrote:

That's mentioned in the Terms of Use.

Yes, I just read that.

And bump  smile


http://i51.tinypic.com/20gcn5j.png

Offline

 

#23 2010-11-01 20:48:42

JeanTheFox
Scratcher
Registered: 2010-06-14
Posts: 1000+

Re: JeanTheFox's guide to BBCode

BUMP  big_smile 


http://i51.tinypic.com/20gcn5j.png

Offline

 

#24 2010-11-02 02:45:38

mathematics
Scratcher
Registered: 2009-03-01
Posts: 1000+

Re: JeanTheFox's guide to BBCode

Well, I think you should mention that [color=transparent] text is not invisible in Internet Explorer.

Offline

 

#25 2010-11-02 02:54:29

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: JeanTheFox's guide to BBCode

mathematics wrote:

Well, I think you should mention that [color=transparent] text is not invisible in Internet Explorer.

It shows up as black color text there.  tongue

*spots advertising idea*

CHECK OUT MY BBCODE GUIDE AND LOOK AT THE INVISIBLE TEXT AREA  big_smile   big_smile   big_smile

tongue

Last edited by Jonathanpb (2010-11-02 02:55:12)


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

Board footer