You could just skip all the elements earlier, for example:
for (var key:Object in myDictionary)
{
if ( key < searchKey )
continue;
trace(key, myDictionary[key]);
}
However, I believe that dictionaries do not support sort order, so the order requirement with elements in the dictionary will not work.
source
share