chris_2
1
Which is the most efficient method of loading data in: LoadVars, or LoadVariables?
I need to do a data driven (ASP + Access) Flash site, and was wondering which is the most efficient to use (mainly in terms of speed for visitors).
Thanks in advance :beam:
system
3
LoadVars!!!
Flexible, Solves the timing problem of LoadVariables, So much features:
myLoadVars.load
myLoadVars.onLoad
myLoadVars.onData (Undocumented Feature)
myLoadVars.decode (Undocumented Feature)
myLoadVars.loaded
myLoadVars.toString
myLoadVars.sendAndLoad
myLoadVars.send
much more…
Also you can create your own (ie. LoadVars.prototype.namewhatever = function(){…) that does a particular function…
cheers;
h88