vote up 3 vote down star

How can I open a synchronous dialog in Flex? I need to call a function from an External Interface (JavaScript) that will open a simple dialog in the Flex application and returns an value according to the button the user has clicked (OK/Cancel).

So it should by a synchronous call to a dialog, i.e. the call waits until the user has closed the dialog like this.

//This function is called by JavaScript
function onApplicationUnload():Boolean
{
  var result:Boolean;
  result = showDialogAndWaitForResult();
  return result
}

Does anybody know how I can do this? I could write a loop that waits until the dialog has set a flag and then reads the result to return it, but there must be something that is way more elegant and reusable for waiting of the completion of other asynchronous calls.

EDIT: Unfortunately a callback does not work as the JavaScript function that calls onApplicationUnload() itself has to return a value (similar to the onApplicationUnload() function in Flex). This JavaScript function has a fixed signature as it is called by a framework and I cannot change it. Or in other words: The call from JavaScript to Flex must also be synchronous.

flag

5 Answers

vote up 2 vote down check

You can't do that in Flex. As David metioned, Flex is single-threaded, so you can't have your function block while the dialog is being processed.

Your best bet might be to use a javscript popup. You'll have a lot less control over the window, but it should behave the way you want (blocking the function until it's been closed).

link|flag
vote up 2 vote down

Flex doesn't work in a synchronous fashion, as it is a single thread application and so needs your code to hand execution back to the "core" in order to handle user input etc.

The way to do it is to make your dialogue's behaviour asynchronous:

function onApplicationUnload():void
{
    showDialog(resultMethod);
}

function resultMethod(result:Boolean):void
{
    ExternalInterface.call("javaScriptCallback", [result]);
}
link|flag
The JavaScript function that called onApplicationUnload() must also wait for the result to be able to return it. There is no way for me to change this on the JavaScript side as there I also have a function that needs to return a value that is passed to the application framework. – Yaba Oct 9 '08 at 16:08
Then - as Herms says - there is no way for you to use Flex to solve this problem and you'll need to look at using a JavaScript dialogue instead. Sorry about that. – David Arno Oct 10 '08 at 8:29
Thank you for your answer anyway. – Yaba Oct 21 '08 at 10:56
vote up 0 vote down

OK... after all I found a possible solution. But I guess hardly everybody is going to do that seriously :-(

The solution focuses around using a while loop to check for a result and then return the function that is being called by JavaScript. However we need a way to sleep in the while loop, while we are waiting for the result. However calls to JavaScript are synchronous. Now the trick is to make a sleep in JavaScript, which is also not directly available here, but can be done using a synchronous XML Http Request like described on this blog.

As I said - I won't recommend this only as last resort. For my problem I have resorted to ugly JavaScript popups.

link|flag
vote up -1 vote down

You can fake a synchronous dialog in flex by popping up a dialog then disabling everything in the background. You can see this in action if you do Alert.show("Hello World"); in an application. The background will grey out and the user won't be able to click on any UI in the background. The app will "wait" until the user clicks the OK button.

link|flag
That's not the problem. The problem here is that the function continues to run, when it has opened the dialog and thus there is no real way to wait for the return value of the dialog that shall be returned by that function. – Yaba Oct 17 '08 at 15:32
Is this to be displayed when the page has closed? – Mark Ingram Oct 17 '08 at 20:27
Almost: It should be displayed right before the page is going to be closed. And based on the return code of the JavaScript call (which calls the Flex function that displays the dialog) the page will be left or not. – Yaba Oct 21 '08 at 10:55
vote up 0 vote down

Have your dialog call another function in flex to process the result of the user selection:

private function deleteFileCheck():void
{
  Alert.show("Are you sure you want to delete this file?",
             "Confirm Delete",
             Alert.YES| Alert.NO,
             this, deleteFileHandler, null, Alert.NO);
}

private function deleteFileHandler(event:CloseEvent):void
{
    if (event.detail == Alert.YES)
    {
        ...do your processing here
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.