by admin | Mar 15, 2005 | Uncategorized
Lets enhance the last example by adding search functionality. We need a function that will return the matching nodes as an array. The following function does that for us. Add it to the timeline. [cc lang=”actionscript3″]function isMatch (s, s2) { return s...
by admin | Feb 3, 2005 | Uncategorized
Unicode text includes bidirectional text, text that requires contextual shaping, and text with combining characters. Unicode text cannot be rendered with traditional one-code-point to one-glyph rendering; it requires analysis and processing of runs of text. Currently...
by admin | Jan 26, 2005 | Uncategorized
Quick Blog Viewer v3 is a Flash based RIA for my blog. Now you can keep track of the posts easily, find out what is new since your last visit, flag your favorite posts. It’s interface should explain how. Check it out at blog/quickview Don’t forget to right...
by admin | Jan 26, 2005 | Uncategorized
I’m very happy to launch Quick Blog Viewer version 3.0, It is Mail Client kind of interface for my blog. It is also a show case of what we can do in flash using XML, localSharedObject, Flash MX 04 Components, and CellRenderer API. Have a look and Kindly pass on...
by admin | Jan 24, 2005 | Uncategorized
Lets enhance the last example by adding two buttons to open and close all tree nodes Add the following code to the first frame [cc lang=”actionscript3″]function openOrCloseAll (x, open:Boolean) { if (tree.getIsBranch (x)) { tree.setIsOpen (x, open, false,...
by admin | Jan 20, 2005 | Uncategorized
Rendering XML using Tree component is very simple, because in Flash MX 2004, V2 Tree component is based on XML. Lets explore the possible ways to visualize sample.xml in the coming examples. Create a new document in Flash MX 04, drag and drop a tree component and name...
by admin | Dec 5, 2004 | Uncategorized
I always thought I will be more productive (on my blog) when I’m alone. But I’m wrong this time. I couldn’t do much when my family was away. Now they are back and I’m also back in this blog 🙂 Meanwhile my comment boxes were spamed. So...
by admin | Dec 5, 2004 | Uncategorized
SE|PY has become my favorite actionscript editor these days. It’s default color highlighting scheme is very different from Flash IDE. So I’ve modified it to syntax highlight similar to my actionscript highlighting service 2 and exported the settings using...
by admin | Jul 21, 2004 | Uncategorized
Brandan Hall wrote the PriorityQueue (pQueue) class in “Object Oriented Programming with ActionScript” published by New Riders. I’ve converted that class to ActionScript 2 which you may download from here.
by admin | Jul 19, 2004 | Uncategorized
XMLHighlighter class Availability Flash Player 6 (copy the XMLHighlighter class actionscript file to the same folder as the FLA or to the class path). Description Use the methods and properties of the XMLHighlighter class to generate the html code to generate color...