Skip to content

Instantly share code, notes, and snippets.

@alecmce
Created July 13, 2011 15:18
Show Gist options
  • Save alecmce/1080503 to your computer and use it in GitHub Desktop.
Save alecmce/1080503 to your computer and use it in GitHub Desktop.
what is wrong with this picture?
private var index;
private function loadPanels():void
{
for (var i:Number = 0; i < PANELS.length; i++)
{
index = i;
loadPanel();
}
}
private function loadPanel():void
{
var panelName:String = PANELS[i];
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment