Tutorials » Actionscripting: Tutorial, ActionScript 3, Using Shared Objects to show the time of page browsing
Here is my first tutorial at FlashDaWeb.
I will show how SharedObject might be used.
For illustration, I came up with an idea to show users the time they spend browsing a particular page.
Here is an example.
Open this demo page and see the timer, then close it and open again anytime you want. Notice, time will not start again from 0:0, it will continue counting from the very values you previously closed it. Quite nice, isnt it?
In your hands.
The above functionality was implemented with Adobe Flash CS3, ActionScript 3 and SharedObject.
You may download the sources .fla and .as files
The power of shared objects.
For this tutorial I assume you already know the basics of AS3 and are quite acquainted with Flash CS IDE.
I created a new document and added new movie clip. Its named mainObject. I put one instance of it at stage and linked it to the actionscript class SharedObjectReader.as
In our class, we have a member of shared object:
private var _sharedObj:SharedObject;
In constructor of our class, we create children and start actionscript timer-based cycle using setInterval.
public function SharedObjectReader ()
{
createChildren();
//load and update the correct values
onEverySec();
//update the values every second
setInterval(onEverySec,1000);
}
In onEverySec method we bind our _sharedObj to a local instance with static method getLocal(), put it in try-catch block to handle the exceptions.
TotalTimeAtThisPage is a name of Shared Object, you may use anything in there.
try
{
_sharedObj = SharedObject.getLocal(TotalTimeAtThisPage);
}
catch (error:Error)
{
trace(SharedObject Error:+error.toString());
return;
}
When having initialized shared object, we read the values from it, accessing them via data member
//read the values, if user had already been here, he has them already.
_secs = _sharedObj.data.seconds;
_mins = _sharedObj.data.minutes;
Note, seconds and minutes are my own variable names, you may use any of them here, but remember you should use the same names when saving the values.
Then, we increase the values, format them and update the text displayed. And then store updated values in the same shared object member _sharedObj.
//store the values
_sharedObj.data.seconds = _secs;
_sharedObj.data.minutes = _mins;
Call flush() to save them to hard disk
//saving the values
_sharedObj.flush();
Finish the iteration with close() method calling. As I have described in ActionScript 3, SharedObject crashing Flash CS IDE it is a must to call this method as it may cause a crash of Flash IDE or other problems.
_sharedObj.close();
Well, thats it. SharedObjects are not that tough part of ActionScript, but its very helpful.
| » Level Intermediate |
|
Added: 2008-01-29 Rating: 4 Votes: 4 |
| » Author |
| Experienced ActionScript Developer |
| » Download |
| Download the files used in this tutorial. |
| Download (11 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.














Comments
There are no comments yet. Be the first to comment!