Re: [Flashcoders] Overlay problem

2008-07-14 Thread Dave Mennenoh
To disable all underlying links, you can stick a large movie clip on a layer, make it invisible, or semi-transparent like in the example, and give it an empty onRelease: blockerClip.onRelease = function(){} You can do: delete blockerClip.onRelease; to allow underlying links to function again.

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Hans Wichman
Hmm not entirely sure what you mean, but normally a : _parent.onPress = function(){} _parent.useHandcursor = false; does the trick. greetz JC On Mon, Jul 14, 2008 at 1:37 PM, Rajiv Seth (Pixelated) < [EMAIL PROTECTED]> wrote: > Hi, > > I want to create an effect like > http://www.limoosoft.com

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Rajiv Seth (Pixelated)
Thanks Piers & Ashim, An empty onRelease function solved the problem. Thanks A LOT. Rajiv On Mon, Jul 14, 2008 at 5:31 PM, Piers Cowburn <[EMAIL PROTECTED]> wrote: > 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 (i

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Rajiv Seth (Pixelated)
Actually I am using AS2.0. Please suggest in the same scripting. Thanks Rajiv On Mon, Jul 14, 2008 at 5:22 PM, Piers Cowburn <[EMAIL PROTECTED]> wrote: > Do you want to use AS2 or AS3? > > Piers > > > > On 14 Jul 2008, at 12:37, Rajiv Seth (Pixelated) wrote: > > Hi, >> >> I want to create an e

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Piers Cowburn
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 b

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Ashim D'Silva
simplest is to stick a mouse enabled layer (sprite/mc) on top. it should override everything under it. 2008/7/14 Rajiv Seth (Pixelated) <[EMAIL PROTECTED]>: > Hi, > > I want to create an effect like > http://www.limoosoft.com/Limoosoft-En.html > > When user clicks on "zoom image", large image load

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Hans Wichman
ps where _parent refers to the layer you want to disable clicks for etc On Mon, Jul 14, 2008 at 1:56 PM, Hans Wichman < [EMAIL PROTECTED]> wrote: > Hmm not entirely sure what you mean, but normally a : > > _parent.onPress = function(){} > _parent.useHandcursor = false; > > does the trick. > > gr

Re: [Flashcoders] Overlay problem

2008-07-14 Thread Piers Cowburn
Do you want to use AS2 or AS3? Piers On 14 Jul 2008, at 12:37, Rajiv Seth (Pixelated) 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 b

Re: [Flashcoders] Overlay problem

2008-07-14 Thread allandt bik-elliott (thefieldcomic.com)
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(

[Flashcoders] Overlay problem

2008-07-14 Thread Rajiv Seth (Pixelated)
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