unikrl8
July 24th, 2004, 08:54 PM
For some reason I had to do this to steal myvariable from my text file, otherwise it wouldn't recognize it...
actionscript:
loadText = new loadVars();
loadText.load("max.txt");
loadText.onLoad = function(success) {
if (success) {
blarg = loadText.toString();
maxpics = blarg.slice(8,blarg.indexOf("&"));
nextFrame();
}
}
text:
&maxpics=12
Is there someway to wait until the variable is correctly loaded or something... :-\ this is really bugging me.
-thanks in advance
also what is success in the if statement? I can't really find any good sources for the *undocumented actionscript* like fscommand and sending to PHP. Any links would be uber-helpful :-o
actionscript:
loadText = new loadVars();
loadText.load("max.txt");
loadText.onLoad = function(success) {
if (success) {
blarg = loadText.toString();
maxpics = blarg.slice(8,blarg.indexOf("&"));
nextFrame();
}
}
text:
&maxpics=12
Is there someway to wait until the variable is correctly loaded or something... :-\ this is really bugging me.
-thanks in advance
also what is success in the if statement? I can't really find any good sources for the *undocumented actionscript* like fscommand and sending to PHP. Any links would be uber-helpful :-o