by admin | Jul 11, 2006 | Uncategorized
What is ObjectStore? Object Store is a service for creating, managing and accessing objects on the server. It is a light weight alternative to keeping XML data on the server. How do we compare ObjectStore with RemoteSharedObject? ObjectStore is similar to...
by admin | Jul 11, 2006 | Uncategorized
While defining the method table for my ObjectStore service I noticed it. Those who use the JavaDoc style comments to generate the method table may never notice this issue. Arguments metadata can be defined as an array of strings (as created by javadoc comments) or...
by admin | Jul 4, 2006 | Uncategorized
I found that the DataLoadingTest class given in Adobe Labs ActionScript 3 Resources site was buggy and did not work. I’ve corrected the file myself and made it work. Here is the working code 🙂 ActionScript3 [cc lang=”actionscript3″] package { import...
by admin | Jul 4, 2006 | Uncategorized
XMLHighlighter generates color highlighted pretty printed HTML code for the given XML document, I have ported it from ActionScript 2 to ActionScript 3. Here is what I learned during the process XML object in ActionScript 3 is different (It is ECMAScript for XML...
by admin | Jul 3, 2006 | Uncategorized
Since PHP does not recognize and ignore BOM in the loaded files, I wrote the following script to find and remove the BOM from the loaded string. [cc lang=”actionscript3″] function removeBOM($str=”){ if(strpos($str,...