# Problem in delay a function call

**URL:** https://forum.kirupa.com/t/problem-in-delay-a-function-call/289002
**Category:** Uncategorized
**Created:** [May 25, 2009, 3:07am UTC](https://forum.kirupa.com/t/problem-in-delay-a-function-call/289002 "2009-05-25T03:07:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kamikaze5141](https://avatars.discourse-cdn.com/v4/letter/k/e68b1a/32.png) [@kamikaze5141](https://forum.kirupa.com/u/kamikaze5141)
#### Post date: [May 25, 2009, 3:07am UTC](https://forum.kirupa.com/t/problem-in-delay-a-function-call/289002/1 "2009-05-25T03:07:56Z")

</div>

my code is as below, i want the “showSavingScores()” function to appear longer, because i want to show to the player their score is saving… the problem i facing now is the “showSavingScore()” only appear less than 1 sec the player is unable to see the saving messaga, can u guys kindly provide me the solution ?

```auto

urlLoader.addEventListener(Event.COMPLETE, finishedSavingScore);
urlLoader.addEventListener(IOErrorEvent.IO_ERROR, failedSavingScore);
            
urlLoader.load(urlRequest);
            
showSavingScore();

```
