by admin | Jun 29, 2006 | Uncategorized
Only starting from Flash 9 and Actionscript 3 we can reliably use relative path to load data. Let me explain the problem. say for example we have an swf file named ‘Slide.swf’ in a folder ‘Slide001’ folder which loads ‘data.xml’...
by admin | Jun 28, 2006 | Uncategorized
XML Shortcuts helps to access the XMLNodes with ease. You may read my previous post which compares the XMLShortcuts with XPath from XFactor Studio, XML to Object Prototype, and XMLNode easy access by tatsuo kato Here is a example file, that shows how you can use...
by admin | Jun 27, 2006 | Uncategorized
Now XMLShortcuts meets MTASC 🙂 I received many requests to make XMLShortcuts available for MTASC (Motion Twin Action Script Compiler). I could not do it with my busy schedule so far, but finally here it is Download package consists of XMLShortcuts.as, an example and...
by admin | Jun 14, 2006 | Uncategorized
Here is a simple code to get the word count. To ease up the process, I do not count the words that are not separated by space For Example “Mr.Arul” will still be counted as one word. but it makes sure whitespace is not counted as words Here is the code [cc...
by admin | Jun 14, 2006 | Uncategorized
This is the same word count function that I showed in the previous post presented in the good old way of adding more properties and methods through the prototype. String object is extened to have isWhite read only property and getWordCount method. [cc...
by admin | Jun 10, 2006 | Uncategorized
Here is the sample code to shuffle the contents of an array [cc lang=”actionscript3″]// Here is a simple function for randomizing the array function randomsort(a, b) { return Math.random()>.5 ? -1 : 1; } //usage example var arr = [1, 2, 3, 4, 5];...
by admin | Jun 10, 2006 | Uncategorized
Generating Unique random number for Flash Lite 1.1 is tricky because of the Flash 4 style syntax. I’ve made a sample application which shows how this can be achieved. Here is the SWF showcasing this You can download the FLA from here
by admin | Jun 7, 2006 | Uncategorized
When we are including an AS1 file in an Fla which has to be published as AS2, we need to be careful in naming the include file. There shouldn’t be any object initialized in _global which has the same name as the include file. Say for example, I had a include...
by admin | Jun 3, 2006 | Uncategorized
When testing my application in IDE, I wanted to use some hard coded test data instead of Every time loading the dynamic data. System.capabilities.isDebugger is the boolean property which is true when we are testing in IDE or special Debug Player. Here is the sample...
by admin | Aug 1, 2005 | Uncategorized
Release Notes Version 2.2 is a minor update for fixing a bug and performance fine tuning. Revision History Version 2.1 Fixed the following issues. – Both Pro and Lite versions create an unwanted variable ‘s’ in _level0 – In Pro, even after...