User:Decoup
A lot of the information on this page is just to help me remember how to do certain CS and wiki related things.
Enlarging the script editor font[edit | edit source]
I use these two methods to change the font in the script editor. Enlarging the font can make it much easier to read.
Method 1
1 Open the script you want to enlarge
2 Press CTRL A to select all
3 Press and hold CTRL SHIFT
4 Press > 6 times
5 Release CTRL SHIFT
6 The font size will increase
Note: The increase to each font size seems to be fairly random.
<BR>Size Next Total <BR>1. - - <BR>2. 6x > 6 <BR>3. 5x > 11 <BR>4. 2x > 13 <BR>5. 1x > 14 <BR>6. 1x > 15
Method 2
- Open word
- set the font and size you want
- Type a random letter and copy it
- Paste it into the script editor and it stays as that font
- Continue typing as you want.
NOTE:These changes are only temporary. Because of this method2 might not be worth the time it takes to do. I only use it sometimes because method1 font is blocky when resized.
Add an article to a category[edit | edit source]
Add the following text to the end of the tutorial.
Tutorials), add
[[Category: <category's name>]]
Example:
[[Category:Tutorials]]
Making a table[edit | edit source]
This is the code to make a simple table for the wiki. I have left some fields blank to demonstrate the effect.
{|border="1" cellpadding="5" cellspacing="0" |- ! style="background:#efefef;" | Item Name ! style="background:#efefef;" | Information ! style="background:#efefef;" | Description |- |<B>Item1</B> |Info1 |Desc1 |- |<B>Item2</B> | |Desc2 |- |<B>Item3</B> |Info3 |Desc3 |- |<B>Item4</B> | | |- |<B>Item5</B> |Info5 |Desc5 |- |-}
Item Name | Information | Description |
---|---|---|
Item1 | Info1 | Desc1 |
Item2 | Desc2 | |
Item3 | Info3 | Desc3 |
Item4 | ||
Item5 | Info5 | Desc5 |