On (Release) dosen't work, why?

I created MC in which I put antoher mc and button inside this. These buttons should open new window with something else i.e. html page. I created special effect which scroll these images in MC. I don’t know why method “on (Release)” doesn’t work with these buttons. Please check my .fla why it happens.

Thanks !!

http://www.senocular.com/flash/tutorials/buttoncapturing/

Thank you!! Wonderful tutorial! I was loooking for something like that!

Do you have something similar to study with relative and absolute adressing?? this, _root, _parent and levels ??

I’ll be very grateful!

Absolute vs. Relative Referencing
Top Level Scope (_global, _level, _root)
_global Again
Variable Scope
this Identifier

The basic things you need to know are this:
[LIST=1]
[]_level - the foundation of any Flash movie, this is where all objects are instantiated and ultimately located. There can be up to 16000 levels though _level usually only comes into play when using the loadMovieNum or loadVariablesNum* functions. _level is a MovieClip.
[]_root - a reference to the level that the movie clip is in, in most cases this will be _level0.
[
]this - a reference to the current scope.
[]_parent - a reference to the movie clip in which the current movie clip is in, this ends at _level which has no parent.
[
]_global - an object available at all scopes without reference, it contains the all of the classes and top-level functions used in the movie.
[*]Absolute referencing is done through a reference to _root or _level. Relative referencing begins at the current scope and uses _parent to move up through the scopes.[/LIST]:hoser:

Once again thanks!! It solves a lot of my beginning problems. Your help will not be forgotten:hugegrin: