| 1. |
What Is Shared Object? (or) How To Store The Data In Local? |
|
Answer» Shared OBJECTS function like browser cookies. The SharedObject class to store data on the user's local hard disk and CALL that data during the same SESSION or in a later session. Applications can ACCESS only their own SharedObject data and only if they are running on the same domain. The data is not sent to the server and is not accessible by other Adobe® Flex® applications running on other domains, but can be made accessible by applications from the same domain. Public VAR so : SharedObject = SharedObject.getLocal("mySO"); Shared objects function like browser cookies. The SharedObject class to store data on the user's local hard disk and call that data during the same session or in a later session. Applications can access only their own SharedObject data and only if they are running on the same domain. The data is not sent to the server and is not accessible by other Adobe® Flex® applications running on other domains, but can be made accessible by applications from the same domain. Public var so : SharedObject = SharedObject.getLocal("mySO"); |
|