You can store your application state in a SharedObject and then initialize it onLoad based on those settings, that will ask some extra work of course.
 
Let's say you change menu, you could do
 
myPreferences = SharedObject.getLocal('preferences');
myPreferences.data.currentSection = 'contacts';
changeSection('contacts');
 
onLoad of your application you could check that value and something like this:
 
myPreferences = SharedObject.getLocal('preferences');
if(myPreferences.data.currentSection != undefined){ changeSection(myPreferences.data.currentSection) }
 
 
Philippe Maegerman
 


From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01
Sent: lundi 5 décembre 2005 9:36
To: [email protected]
Subject: [flexcoders] Restricting refresh button of browser

Hi All,

let say I am in middel of my application & if I refresh the page with
browser refresh button the entire application is loading again.
But I want only the current page to be refreshed on which I clicked
browsers refresh button.
Any suggetion ?

Sandip P.








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




------------------------------------------------------------------
**STATEMENT OF CONFIDENTIALITY**

This e-mail and any attached files are confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please send it back to the person that sent it to you. Any views or opinions presented are solely those of author and do not necessarily represent those the Emakina Company. Unauthorized publication, use, dissemination, forwarding, printing or copying of this email and its associated attachments is strictly prohibited.

We also inform you that we have checked that this message does not contain any virus but we decline any responsability in case of any damage caused by an a non detected virus.
------------------------------------------------------------------

Reply via email to