Tag Archive for 'plugin'

WordPress FlashVideoPlayer Plugin

Testing the FlashVideoPlayer plugin by mac-dev.net.

Get the Flash Player to see this player.

Well that video brings back some good memories. Before moving to Nashville, I volunteered regularly at a church in Cincinnati called Four Corners. Of course I was on the a/v team.

WordPress Code & Syntax Highlighter Plugins

Current: I am now using the IG:Syntax Highlighter plugin. This plugin has many features that the others mentioned do not. The plugin is used by wrapping code in the post editor in [language]code here[/language] tags.

Previously: I was using the WP-Syntax plugin for displaying code. This plugin is used by wrapping code in the post editor in <pre lang="language">code here</pre> tags.

Let's see some ActionScript 3.0:

Actionscript:
  1. package {
  2.     class HelloWorld extends HelloUniverse implements ISay {
  3.         /**
  4.          * Constructor
  5.          */
  6.         public function HelloWorld()
  7.         {
  8.             trace("Hello World!");
  9.         }
  10.     }
  11. }

The IG:Syntax Highlighter is available here

The WP-Syntax plugin is available here.