Project

General

Profile

Formatting text » History » Revision 57

Revision 56 (Per Amundsen, 08/09/2015 05:41 AM) → Revision 57/83 (Per Amundsen, 05/31/2016 12:30 AM)

{{>toc}} 

 h1. Formatting text 

 AdiIRC supports control codes for formatting text. 

 All control codes can be combined to format the same block. 

 Most IRC clients supports these control codes, so they can used to send formatted text to others as well as formatting incoming [[Scripting_Events|text events]] using the [[/echo]] command. 

 h1. Colorchar 

 Colors blocks of text. 

 "ASCII":http://www.asciitable.com/ character [[$chr]](3) 

 Ctrl + K can be used in editbox to type this character. 

 The character can be followed by 1-2 digits that represent the color number. 

 By specifying a comma after the digits, you can add a 1-2 digit background color as well. 

 The default colors can be changed in [[Options_Dialog|Options]] -> [[Colors_Options|Colors]] -> [[Colors_Options#mIRC-Colors|mIRC Colors]]. 

 A second color character can be used to stop the coloring and revert to default line color. 

 *Example* 
 <pre> 
 ; Prints the text 'Hello World' with color 4 which is red by default. 
 //echo -ag $chr(3) $+ 3 Hello world 
 </pre> 

 Result: %{color:#FF0000}Hello World% 

 <pre> 
 ; Prints the text 'Hello' with color 4 which is red by default and 'world' is the default line color. 
 //echo -ag $chr(3) $+ 3 Hello $+ $chr(3) world 
 </pre> 

 Result: %{color:#FF0000}Hello% world 

 <pre> 
 ; Prints the text 'Hello World' with color 4 which is red by default and background color 12 which is blue by default. 
 //echo -ag $chr(3) $+ 3,12 Hello world 
 </pre> 

 Result: %{background:#0000CC;color:#FF0000}Hello world% 

 h1. Boldchar  

 Makes the block use a *bold* font. 

 "ASCII":http://www.asciitable.com/ character [[$chr]](2) 

 Ctrl + B can be used in editbox to type this character. 

 *Example* 
 <pre> 
 //echo -ag $chr(2) this text is bold $chr(2) this text is not 
 </pre> 

 Result: *this text is bold* this text is not 

 h1. Italicchar  

 Makes the block use a _italic_ font. 

 "ASCII":http://www.asciitable.com/ character [[$chr]](29) 

 Ctrl + I can be used in editbox to type this character. 

 *Example* 
 <pre> 
 //echo -ag $chr(29) this text is italic $chr(29) this text is not 
 </pre> 

 Result: _this text is italic_ this text is not 

 h1. Underlinechar  

 Makes the block use a +underline+ font. 

 "ASCII":http://www.asciitable.com/ character [[$chr]](31) 

 Ctrl + U can be used in editbox to type this character. 

 *Example* 
 <pre> 
 //echo -ag $chr(31) this text is underline $chr(31) this text is not 
 </pre> 

 Result: +this text is underline+ this text is not 

 h1. Stopchar  

 Stops all color and font formatting. 

 "ASCII":http://www.asciitable.com/ character [[$chr]](15) 

 Ctrl + O can be used in editbox to type this character. 

 *Example* 

 <pre> 
 //echo -ag $chr(3) $+ 4 $+ $chr(2) this text is bold and colored $chr(15) this text is not 
 </pre> 

 Result: *%{color:#FF0000}this text is bold and colored%* this text is not 

 h1. Alternative colorchar  

 AdiIRC has an alterinative color character as of 1.9.7, this is AdiIRC only. 

 _As of 2.4 [[$chr]](4) can be used for the same purpose._ 

 Unicode character [[$chr]](61442) 

 Works the same as colorchar, except it takes a hexcolor format RRGGBB same as html colors. 

 By specifying a comma after the hexcolor, you can add a second hexolor for setting the background color as well. 

 A normal color character can be used to stop the coloring and revert to default line color. 

 *Example* 
 <pre> 
 ; Prints the text 'Hello World' with hex color FF0000 which is red. 
 //echo -ag $chr(61442) $+ FF0000 Hello world 
 </pre> 

 Result: %{color:#FF0000}Hello World% 

 <pre> 
 ; Prints the text 'Hello' with hex color FF0000 which is red and 'world' is the default line color. 
 //echo -ag $chr(61442) $+ FF0000 Hello $+ $chr(3) world 
 </pre> 

 Result: %{color:#FF0000}Hello% world 

 <pre> 
 ; Prints the text 'Hello World' with hex color FF0000 which is red and hex background color 0000CC which is blue. 
 //echo -ag $chr(61442) $+ FF0000,0000CC Hello world 
 </pre> 

 Result: %{background:#0000CC;color:#FF0000}Hello world% 

 h1. In Options 

 The control codes can also be used in many options such as [[Options_Dialog|Options]]    -> [[Message_Options|Messages]]    -> [[Message_Options#Timestamp|Timestamp]] / [[Message_Options#Message-Prefix|Message prefix]].