I'm have an issue loading URL variables into Flash where the variables are loading in random order each time the SWF is loaded.
The way the variables are:
var1=value1&var2=value2&var3=value3
but because it's loaded in a random order, the first variable will sometimes get omitted because of the way the & are placed.
Here's the AS I'm using:
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.load(new URLRequest(MainURL+"/product_lines.php?product_category_id=2"));
loader.addEventListener(Event.COMPLETE, varsLoaded);
Any ideas (besides having a dummy variable at the start)?