Arul's Blog On Multimedia, Flash MX, Director And Dreamweaver MX
Recent Entries | Guest Book | QuickView | XML-RSS feed | My Profile | Home
::: About this Blog :::
Welcome to Arul's Blog!
Weblog on Multimedia,
Macromedia Flash MX Flash MX
Macromedia Director Shockwave Studio 8.51 Director
Macromedia Dreamweaver MX Dreamweaver MX
View my profile And me :)
Here I'm going to share my views, opinions and code with you all.

::: Services :::

:. ActionScript Highlighting
:. AS Highlighter v2 new!


::: ActionScript :::
:. toString
:. skipCache
:. getWords
:. getDateFromString
:. colorUtils
:. XMLNode-transformTags
:. Object-copyProperties
:. Object-clone

::: ActionScript 2 :::
:. XMLHighlighter
:. PriorityQueue

::: Archives :::
[September 2002]
[October 2002]
[November 2002]
[December 2002]
[January 2003]
[February 2003]
[March 2003]
[April 2003]
[May 2003]
[June 2003]
[July 2003]
[September 2003]
[October 2003]
[December 2003]
[January 2004]
[February 2004]
[March 2004]
[April 2004]
[May 2004]
[June 2004]
[July 2004]
[December 2004]
[January 2005]
[February 2005]
[March 2005]
[May 2005]
[June 2005]
[July 2005]
[August 2005]
[June 2006]
[July 2006]
[November 2006]
[December 2006]
[January 2007]

::: Time Zone :::
All Times on this blog are
GMT + 5:30 Hours
(Indian Standard Time)

::: Flash Resources :::
:. Flash Components
:. Were-Here Forum
:. Digital Illusion
:. Flashmove Forum
:. Flash Goddess
:. Prototypes
:. Actionscript Toolbox
:. UltraShock
:. Chattyfig
:. Full as a Goog
:. Flog

::: Flashers :::
:. Mike Chambers
:. Greg Burch
:. Branden Hall
:. Samuel Wan
:. Stuart Schoneveld
:. Guy Watson
:. Robin Debreuil
:. Mario Klingemann
:. Moises
:. Aral Balkan
:. Peter Hall
:. Josh Dura
:. Alessandro
:. Brajeshwar
:. Nik Khilnani

::: Small Print :::

© Copyright 2002
R.Arul Kumaran

[Made with Blogger]


Monday, April 14, 2003

Demo.Flash MX: Tamil in a Flash - Sample guest book in Tamil and English.

As I promised in my previous post I've developed a sample application. Today is Tamil New Year so I thought it is the right day to launch this tool. Even though it is not fully optimized, it is functional to demonstrate the concept.

This is a simple guest book which allows to put your comments in both English and Tamil. I'm using roman keyboard for enabling Tamil. Just have a look and post your comments right there!!!

posted by Arul | link | ^top | next> | add comment
Monday, April 14, 2003

News.Flash MX: Bringing in Languages to Flash.

Embedding fonts in flash removes the hassle of font download and installation on the viewers machine, which is of great use when we publish multilingual content on the web.

What if we can develop an application in flash which enables typing in different languages using phonetic keyboard layout?
Especially Indian languages and Chinese languages use external software to configure the keyboard for this purpose.

Just think about the possible uses, we can develop,
  • content manageable web sites, blogs, and forums in our own language
  • multilingual chat applications
  • online mailing tool for sending mails in other languages (even as picture)
  • multilingual CD-ROM and online games to accept input in different languages

I started thinking like this long back and started developing a tool for typing in Tamil six months back. It got dragged because of my tight schedule. Finally I managed to finish it now and I will publish a sample application to demonstrate the uses soon!

posted by Arul | link |<prev. | ^top | next> | add comment
Monday, April 07, 2003

Code.Flash MX: MovieClip-swapClip.

When we need to replace a movie clip on stage with another with a Linkage ID the following code will be useful.
MovieClip.prototype.swapClip = function(idName) {
        var obj = {
                _x:this._x,
                _y:this._y,
                _xscale:this._xscale,
                _yscale:this._yscale,
                _rotation:this._rotation,
                _visible:this._visible,
                _alpha:this._alpha,
                idName:idName
              };
        this._parent.attachMovie(idName, this._name, this.getDepth(), obj);
}
ASSetPropFlags(MovieClip.prototype, ["swapClip"], 1);
Usage:
my_mc.swapClip("MyLinkageID");
//MovieClip instance named my_mc will be replaced by another clip.

posted by Arul | link |<prev. | ^top | next> | comments [3]

footnote:-
Also check the recent entries and feel free to add your comments. I need your comments to improve this blog