Link to home
Start Free TrialLog in
Avatar of Amani
Amani

asked on

How can we delay the destroying of the applet

I have an applet that whenever it is destroyed, a dialog  with two (Yes and No) buttons appears asking for saving. this dialog is called from within the stop() method of this applet, the problem is that while we're maipulating the applet for example and then we moved ( browsed) to another html page the save dialog appears after we moved to the next page
My question is how can we delay the destruction of the applet so that the save dialog appears before moving to the next page.
Avatar of exorcist
exorcist

listening...
Avatar of Amani

ASKER

I didn't get it !!
I just said I was listening. I want to get informed if someone posts a comment since this is an interesting question. Sorry for the misunderstanding.
the stop/destroy method will be called when you leave the page the applet is on. Not sure what you question is, exactly.  Delaying the destroy doesnt make sense in the context of your questions - sounds like you want to force teh destroy to happen earlier - BEFORE you go to the next page.  Sorry, that's implementation-dependent.....
Avatar of Mick Barry
Firstly the stop() method is not responsible for destroying an applet, that's what the destroy() method is for.
The stop() method is called every time you leave the page, as you are experiencing, and does not destroy the applet.
If you want the dialog to popup before the applet is destroyed then put it in the destroy() method. Though I don't think this is what you want either.

Avatar of Amani

ASKER

Ok, I'll re clarify the question
The user loads the applet (the applet loads an image and allows the user to add different annotations on it and save these annotations), he add some annotations and he didn't save his work, then he switch to another page that load the same applet of the same image, what is supposed to be seen is a save dialog asking for saving the annotations befor the next page is loaded so that when the user select yes (save) and then the next page appears,the saved annotations appears on the next page( since both pages having the same image then any changes done on the image in the first page must be laoded with the image in the next page) . what the applet does is that it calls the saveDialog from it's stop() method asking for saving the added annotations. the problem is that this save dialog appears after loading the next page so the image in the next page will appear without the changes done on it in the first page since the changes were not saved yet( the next page is loaded before the save dialog appeared) . How can we make the save dialog appears before moving to the next page?
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
How about an approach which simply automatically saves the changes to the image to a temporary file, perhaps as the changes occur.

You can then bring up Save Dialog, and if the user answers 'Yes', you can then replace the image with the temp file. If the user answers 'No', then simply discard the temp file.
Avatar of Amani

ASKER

Thanks for u all for ur suggestions, i'll try it and update u
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this question is:


[points to objects]


Please leave any comments here within the next seven days.
 
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
 
sudhakar_koundinya
EE Cleanup Volunteer
---------------------
If you feel that your question was not properly addressed, or that none of the comments received were appropriate answers, please post your concern in THIS thread.