An easier way of doing it is just to place a movieclip over the top of your content and give it an empty onRelease function (in AS2) or just make sure it's mouseEnabled in AS3.

Piers
[EMAIL PROTECTED]



On 14 Jul 2008, at 12:51, allandt bik-elliott (thefieldcomic.com) wrote:

if you add a boolean to your script that states whether the movie is
operational or not, then you can add an if statement to your links / buttons
that ask if the boolean is true

so:

var bMovieEnabled:Boolean = true;

myLink.onRelease = Delegate.create(this, linkOnRelease);
function linkOnRelease():Void
{
    if (bMovieEnabled)
    {
        bMovieEnabled = false;
        //do stuff
    }
}

and on the close button for the panel add bMovieEnabled = true;

best
a

On Mon, Jul 14, 2008 at 12:37 PM, Rajiv Seth (Pixelated) <
[EMAIL PROTECTED]> wrote:

Hi,

I want to create an effect like
http://www.limoosoft.com/Limoosoft-En.html

When user clicks on "zoom image", large image loads in a movie, and all links, rollver effects/actions are disabled by a semi-transparent image.
How
to create such layer, which can disable all links?
--
Regards

Rajiv Seth
Ph: 09839157388
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[EMAIL PROTECTED]
0207 631 3278


_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to