Search

Well, it was fairly easy to setup with two minor complications. First, the installation instructions said extract the zip file into the wp-content/plugins directory, upload, and wallah. However, extracted folder is called "iG-Syntax Hiliter" which contains the folder "ig_syntax hiliter plugin." It is actually this second folder that needs to reside in the plugins folder in order to work. The second hiccup was that when I tried to activate the plugin, it was looking for the "ig_syntax_hilite" folder in the plugins directory as well. Unfortunately this folder was in the plugins/"ig_syntax hiliter plugin" folder so I had to copy it over.

After these changes, everything worked fine. It was easy to use and configure from the wp-admin-->Options screen. Here's what the code looks like:

Actionscript:
  1. package
  2. {
  3.     import flash.display.Sprite;
  4.  
  5.     /**
  6.      * Test class
  7.      *
  8.      * @author Nate Chatellier
  9.      */
  10.     public class MyTestClass extends Sprite
  11.     {
  12.        
  13.         protected var _bMyVariable:Boolean;
  14.        
  15.         /**
  16.          * Constructs the MyTestClass object.
  17.          *
  18.          * @param   bMyVariable    This is MY variable!
  19.          */
  20.         public function MyTestClass(bMyVariable:Boolean)
  21.         {
  22.            
  23.             _bMyVariable = bMyVariable;
  24.  
  25.         } // END CONSTRUCTOR
  26.        
  27.     } // END CLASS MyTestClass
  28. } // END PACKAGE

I'm not the biggest fan with the default look. I may try to play with the settings or I may evaluate different highlighter options depending on whether I feel it's needed. More soon...

This work, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 3.0 United States License.

Something to say?

You must be logged in to post a comment.