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]


Friday, May 30, 2003

Update.Arul's Blog: Now Linked in Macromedia XML News Aggregator (MXNA).

Many of you already know that Macromedia started running an aggregator. It is up and running syndicating many cool blogs including mine. If you haven't had a chance, have a look at MXNA now!

posted by Arul | link | ^top | next> | add comment
Tuesday, May 27, 2003

Code.Flash MX: Improved ActionScript() Tracing.

The objective of my .toStrong code and ActionScript() function is to generate the actionscript from any object with which we should be able to recreate the object again. My String.toString Prototype does manage the /n and /r properly(thanks to Rob for pointing this to me through his comment). Now I've fixed it. Have a look at it here.

posted by Arul | link |<prev. | ^top | next> | add comment
Sunday, May 18, 2003

Code.Flash MX: Real toString() method.

This code snippet helps to get the real insight of an object instead of returning '[object object]' while tracing. Now I've completely rewritten it to take care of circular references, escaping quotes in Strings, and function references. Also I've created a "ActionScript" function to get the complete picture of the object. We can use the produced actionscript to rebuild the objects.
Object.toString() - Create a actionscript string for the given object with out showing circular references. 

ActionScript(Object, 'name_of_the_variable') - gets complete reusable actionscript of the Object including circular reference.
Take a look at the the following usage example
#include "toString.as"
var mVar = {num:20, str:"Escaped \"Double Quotes\"", str2:"Escaped 'Single Quotes'", arr:['str', 30], obj:{aa:33, bol:true}};
mVar.self = mVar;
mVar.func = function() {
        trace("me");
};
mVar.obj.parent = mVar.obj;
mVar.obj.parents = mVar;
mVar.arr.push(mVar);
mVar.arr.push(mVar.arr);
trace(mVar);
//traces '{func:function(){}, num:20, str:"Escaped \"Double Quotes\"", str2:"Escaped \'Single Quotes\'", arr:["str",30], obj:{aa:33, bol:true}}'
trace(ActionScript(mVar, 'MyVAR'));
//traces the following
MyVAR = {func:function(){}, num:20, str:"Escaped \"Double Quotes\"", str2:"Escaped \'Single Quotes\'", arr:["str",30], obj:{aa:33, bol:true}}
MyVAR.self = MyVAR
MyVAR.arr[2] = MyVAR
MyVAR.arr[3] = MyVAR.arr
MyVAR.obj.parents = MyVAR
MyVAR.obj.parent = MyVAR.obj
It can be downloaded from here.

posted by Arul | link |<prev. | ^top | next> | add comment
Saturday, May 17, 2003

Tools.Flash MX: Improved Actionscript Syntax Highlighting with SciTE|Flash.

Long back I've posted a flash.properties file to replace the one in the SciTEFlash folder to get syntax highlighting as in Flash MX.

After getting this tip from hOK's blog I've added the following line
style.flash.7=fore:#0000FF
To get String highlighting for characters inside single quotes . You can download it from here

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

Bug.Flash MX: Enter, Backspace and Delete Keys fail when using Listeners for Textbox.

I've noticed it many times. When we use listeners for Textbox or while using onChanged event some times it fails to render backspace, delete and enter keys unless we have a selection. Removing the Listener reverts back to normal.

Did anybody had the same problem and found a solution?
If yes then please post it in the comments.

posted by Arul | link |<prev. | ^top | next> | comments [3]
Saturday, May 03, 2003

Update.Arul's Blog: Now on Linux Server.

Finally I changed my ISP. I had problems with my previous ISP, they often go offline for about a weeks time without notice :(

Since I've shifted to Linux now all my links are case sensitive. If you find any broken link or missing swf please add a comment here I will rectify it ASAP.

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