[ Team LiB ] |
Recipe 16.3 Reading Values from a Client-Side Shared Object16.3.1 ProblemYou want to read values from a client-side shared object (either a remote or local shared object). 16.3.2 SolutionRead the values from the properties of the shared object's data property. 16.3.3 DiscussionThere is nothing difficult about reading the values from a client-side shared object. All persistent values are stored in the shared object's data property, so you simply read the values from the data property, as follows: // Read the value of myProperty from the shared object, mySO, and write it to the // Output window. trace(mySO.data.myProperty); 16.3.4 See AlsoRecipe 16.2. Also refer to Recipe 16.9 for important differences when reading data from a remote shared object. |
[ Team LiB ] |