Autoit syntax highlighter for wordpress

Step 1: Install plugin SyntaxHighlighter Evolved http://wordpress.org/extend/plugins/syntaxhighlighter/
Step 2: Download Autoit brush

[do action=”adfly_download” href=”http://adf.ly/JjZpq” title=”autoit brush”/]

Step 3: Upload it to folder: /public_html/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3

Step 4: Edit file: /public_html/wp-content/plugins/syntaxhighlighter/syntaxhighlighter.php

+ Find code (line 104 + 105):

[php]
// Register brush scripts
wp_register_script( ‘syntaxhighlighter-core’, plugins_url(‘syntaxhighlighter/’ . $this->shfolder . ‘/scripts/shCore.js’), array(), $this->agshver );
[/php]

add this code after:

[php]
wp_register_script( ‘syntaxhighlighter-brush-autoit’, plugins_url(‘syntaxhighlighter/’ . $this->shfolder . ‘/scripts/shBrushAutoIt.js’), array(‘syntaxhighlighter-core’), $this->agshver );
[/php]

+ Find code (line 149 + 150)

[php]
$this->brushes = (array) apply_filters( ‘syntaxhighlighter_brushes’, array(
‘as3’ => ‘as3’,
[/php]

add this code after:

[php]
‘au3’ => ‘autoit’,
[/php]

Use short code

{au3}your autoit script code{/au3} (replace {} = [])

in your post. End!