Replace line tab characters with new line characters on paste
diff --git a/textLayout/src/flashx/textLayout/edit/TextClipboard.as b/textLayout/src/flashx/textLayout/edit/TextClipboard.as
index 405de63..28b4acd 100644
--- a/textLayout/src/flashx/textLayout/edit/TextClipboard.as
+++ b/textLayout/src/flashx/textLayout/edit/TextClipboard.as
@@ -102,7 +102,10 @@
 				var descriptor:FormatDescriptor = TextConverter.getFormatDescriptorAt(i);
 				textOnClipboard = importFunctor(descriptor.clipboardFormat);
 				if (textOnClipboard && (textOnClipboard != ""))
+				{
+					textOnClipboard = textOnClipboard.replace(/\u000B/g,"\u2028");
 					textScrap = importToScrap(textOnClipboard, descriptor.format);
+				}
 			}
 			return textScrap;
 		}