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]


Thursday, January 30, 2003

Update.Arul's Blog: Quick Blog Viewer Alpha for My Blog.

Browsing my blog should be lot more easier with this. Here is the alpha version of my Quick Blog Viewer. Since the day one I'm thinking about creating a flash based easy to use interface for quick overview of my entire blog, only today I'm able to come up with something functional. :)

I'm using this XML xml file for the data. You might have noticed that I'm always using "Topic.Software: Title" syntax for the heading, it is for this purpose only :)

It is just functional right now, I will improve it soon. I love to have your comments regarding this interface.

posted by Arul | link | ^top | next> | comments [4]
Wednesday, January 22, 2003

News.Flash MX: Flash Remoting Using AMF in PHP!

There is an interesting thread in Flash-DB which is discussing the various possibilities of passing data to flash from PHP. The attractive part in that to me is using AMF(Action Message Format - binary format for sending Flash Objects) with PHP.
Musicman has come out with this PHP class which can construct the AMF data. Alessandro(sephiroth) has put a sample application using this class.

What I fore see is by combining Nik Kilani's xml based PHP remoting solution (by taking the code which calls the PHP functions and converts the result into XML data, and changing it to serialize it as AMF data) we can make the PHP Flash Remoting Dream come true. :)

posted by Arul | link |<prev. | ^top | next> | comments [2]
Wednesday, January 22, 2003

Tips.Flash MX: XML Pre Processing for handling XML.

When we want to handle external Html files as XML, say for example using my transformTags() code, we face the problem of unclosed tags like <br> tag. To fix this problem we can overwrite onData method of XML object as shown below. It basically replaces all <br> tags with <br/> before parsing the XML data

//fix the BR tags by closing
XML.prototype.onData = function(txt) {
   txt = txt.split("<br>").join("<br/>");
   txt = txt.split("<BR>").join("<br/>");
	this.parseXML(txt);
};
/*
//sample code
my_xml = new XML();
my_xml.load("BrFix.xml")
//BrFix.xml contains "<b>my name is<br> arul</b>"
trace(my_xml.status);
//traces 0
trace (my_xml.toString());
//traces "<b>my name is<br/> arul</b>"
*/

posted by Arul | link |<prev. | ^top | next> | add comment
Thursday, January 09, 2003

Update.Arul's Blog: I'm Back Again!

Due to some problem with ISP this blog was down for about a weeks time. Now that problem is solved so I'm back again. :)

Because of my new job the frequency of update will be less for a while but you can be sure that I will continue to serve as I did before.

posted by Arul | link |<prev. | ^top | next> | comments [1]
Wednesday, January 01, 2003

Code.Flash MX: XMLNode.transformTags() Source Code Released!

Wish you all very happy and prosperous New Year 2003! :) Here is my tiny gift for the new year, transformTags basically allows you to add, remove, and modify tags in any valid XML.

You can take a look and download the source code from here!

For more usage examples take a look at my previous posts. I will also try to put more examples.

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

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