PDA

View Full Version : educational version


toke
09-30-2001, 04:33 AM
My fscommand ("save", "c:\temp\test.txt");

does not work. Is it because I have an educational version and not the full versiont?

Jesse
09-30-2001, 06:34 AM
nah your path is wrong. remember it's a string and strings in flash use '\' as the escape character so you need to double backslash paths:
a="test";
fscommand ("save", "c:\\temp\\test.txt");
the temp dir must also already exist. and it will only work on PCs via the Flash projector.