Jul 21, 2009

patch error: Assertion failed, hunk, file patch.c

When running patch.exe on windows error: Assertion failed, hunk, file patch.c

Add the --binary option when running patch.exe.

Jul 17, 2009

Flex Underline Links in a TextArea Component

import flash.text.StyleSheet;

private function init():void {
var ss:StyleSheet = new StyleSheet;

// Define an object for the "hover" state of the "a" tag.
var hoverStyles:Object = new Object;
hoverStyles.textDecoration = "underline";
hoverStyles.color = "#FF00CC";

// Define an object for the non-hover state of the "a" tag.
var linkStyles:Object = new Object;
linkStyles.color = "#FF00CC";

// Apply the newly defined styles.
ss.setStyle("a:hover", hoverStyles);
ss.setStyle("a", linkStyles);

// Apply the StyleSheet to the TextArea control.
myTA.styleSheet = ss;
}

Jul 12, 2009

Turn off Script Debugging in Internet Explorer

Description:
The following message pops up in Internet Explorer:
A Runtime Error has Occurred. Do you wish to Debug?

Solution:
Click on the "Tools" Menu in Internet Explorer
Select "Internet Options"
Under the "Browsing" section
Check the "Disable Script Debugging" Checkbox

Jul 1, 2009

mvn site commons.logging errror

Links related to the mvn site error message:

Invalid class loader hierarchy. You have more than one version of 'org.apache.commons.logging.Log' visible, which is not allowed.

http://jira.codehaus.org/browse/MOJO-1101
http://mojo.codehaus.org/dashboard-maven-plugin/faq.html#Maven_2.0.9_problem