I'm creating a Flash site with a dynamic inventory search feature where a bunch of checkboxes toggle different types of clothing items to appear in a gallery. For example, users may check "Shirts" "Jeans" and "Bags" from the list and a dynamic array of images will be loaded in the gallery corresponding to their selections.
My problem is finding a way to save the state of the user's selections when they leave and return to the page.
If the site had a SUBMIT button for the user data, I would codify this into the URL with SWFAddress when the button was pressed (ie mysite.com/#/shirts-jeans-bags/) but since the client demands the checkboxes to show immediate results, I need a different approach. (Otherwise, every checkbox click would add to the user's SWFAddress history).
I want the site to preserve their data if the user were to navigate away from the page and then push the browser's Back Button.
Is this something I can do with SWFAddress? Better to use FlashVars? What's the best method to preserve the data?
Thanks! -B