Useful Actionscript Code Snippet
Filed under: If only I had known about this years ago!
_global.tr = function() {
trace(arguments.join(" : "));
};
Example: tr(’bob’, 16, ‘fred’)
Output: bob : 16 : fred
Filed under: If only I had known about this years ago!
_global.tr = function() {
trace(arguments.join(" : "));
};
Example: tr(’bob’, 16, ‘fred’)
Output: bob : 16 : fred
May 12th, 2006 at 12:35 am
thanks for the info….