This content has been marked as final.
Show 2 replies
-
1. Re: Error on abode webpage
Lee Burrows Apr 23, 2011 12:04 PM (in response to barpos)hi
you need to save:
package {
public class StringUtils {
public function StringUtils() {}
public static function reverse(s:String):String {
var tmp_array:Array = s.split("");
tmp_array.reverse();
var tmp_string:String = tmp_array.join("");
return tmp_string;
}
}
}
as "StringUtils.as" in same folder as your fla file
-
2. Re: Error on abode webpage
barpos Apr 23, 2011 12:11 PM (in response to Lee Burrows)Hi,
Ah, I had already saved the .AS file, but didn't bother saving the UNTITLED.FLA file. It works now!
Thanks,
Ron

