This appears to be a flash file, you cannot see a preview because flash player is no longer supoorted in browsers, but you can still download the file to study it's source code.
You can open/play the swf file with Flash Player exe
You can open/play the swf file with Flash Player exe
Resolution Detection
This movie clip detects a user's screen resolution, and if it is 800 x 600, runs a script. You will need MC Tween to run it properly : hosted.zeh.com.br/mctween/downloads/mc_tween_2_28_ 29.mxp2738 downloads, 20507 views
Comments
You need to login to post a comment.
btw, currently on line 4 of the actionscript layer you have:
if (System.capabilities.screenResolutionX == 800) {
it would be better with:
if (System.capabilities.screenResolutionX <= 800) {
so that it handles any resolution 800 or below, not just 800.
thanks for the file again.
this is great :D
thanks, im sure ill find this useful.