Flaxbin.com

Flash Media Server Apps

Follow me on TwitterRSS Feeds

  • Home
  • Apps
  • Tutorials
  • About

Remove Carriage Returns and New Lines (AS3)

Jul 9th

Posted by Admin in ActionScript

No comments


function removeCarriageReturnsAndNewLines($myString:String):String {
var newString:String;
var findCarriageReturnRegExp:RegExp = new RegExp("\r", "gi");
newString = $myString.replace(findCarriageReturnRegExp, "");
var findNewLineRegExp:RegExp = new RegExp("\n", "gi");
newString = newString.replace(findNewLineRegExp, "");
return newString;
}

actionscript, adobe, applet, application, as2, as3, as3.0, demo, flash, flash media server, flex, fms, icon, ipad, ppv, red5, test, videochat, webcam, wowza

Basic Videochat (Old App)

May 11th

Posted by Admin in General

4 comments

Here is one of my old apps, a basic videochat written in AS 2.0

you can download the source Here

actionscript, application, chat, demo, flash, fms, icon, ppv, red5, sample, test, videochat, webcam, wowza

The New Flaxbin.com !

May 11th

Posted by Admin in General

No comments

I have replaced the old site scheme with wordpress, let’s start blogging about FMS all the way!.

I will be posting tutorials, code snippets, free apps and much more here!

actionscript, adobe, flash, flash media server, flex, fms, iphone
  • Popular Tags

    actionscript adobe applet application as2 as3 as3.0 chat demo flash flash media server flex fms icon ipad iphone ppv red5 sample test videochat webcam wowza
  • Recent Entries

    • Remove Carriage Returns and New Lines (AS3)
    • Basic Videochat (Old App)
    • The New Flaxbin.com !
Copyright © 2010 Flaxbin.com
RSS Feeds XHTML 1.1 Top