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

Reply via email to