Guest User

Untitled

a guest
Jun 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. //This beautiful hack is to get around the Flex limitation that scripts cannot
  2. //execute continously for more than a maximum of 60s (15s default).
  3. _importValueIndex=0;
  4. _importValueCount=0;
  5. this.addEventListener(IMPORT_VALUES_REPEATING_EVENT, importSelectedValues_AddSomeValues);
  6. while (_importValueIndex < _importValuesArray.length) {
  7. dispatchEvent(new Event(IMPORT_VALUES_REPEATING_EVENT));
  8. }
Add Comment
Please, Sign In to add comment