[Flashcoders] How to take screenshot of sites , as seen on snap.com

2008-03-30 Thread Digg Yeah
Not sure if this is the right place to ask this, but can anybody share a pointer to how snap.com capture sceenshot of sites? Any help would be much appreciated. Thank you for your time. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] How to take screenshot of sites , as seen on snap.com

2008-03-30 Thread Ain Tohvri
Hi, I'm using http://browsershots.org and it's a splendid service really. Regards, Ain Tohvri Flashbit LLC On 30 Mar 2008, at 16:59, "Digg Yeah" <[EMAIL PROTECTED]> wrote: Not sure if this is the right place to ask this, but can anybody share a pointer to how snap.com capture sceenshot of

[Flashcoders] Flash8 Question

2008-03-30 Thread Ibrahim Y
Hello folks, I have the following case, I have a lot of movie clips, they have a lot of effect separately (i.e. each movieclip has it's own effect on hover, on press ...etc) most effect implemented in design not in code. what I want to ask about, most movie clips have on hover effect that change it

Re: [Flashcoders] Flash8 Question

2008-03-30 Thread laurent
If I remember right you must create a Color object for your mac, then use color method setRGB to change the mc's tint to the hexadecimal you want: var c:Color = new Color( yourMC ); c.setRGB( "0xff" ); L Ibrahim Y a écrit : Hello folks, I have the following case, I have a lot of movie cl

Re: [Flashcoders] Flash8 Question

2008-03-30 Thread Pedro Taranto
laurent wrote: If I remember right you must create a Color object for your mac, then use color method setRGB to change the mc's tint to the hexadecimal you want: var c:Color = new Color( yourMC ); c.setRGB( "0xff" ); L Ibrahim Y a écrit : Hello folks, I have the following case, I have

Re: [Flashcoders] Flash8 Question - contrast transform

2008-03-30 Thread laurent
Hm...I should play with colors again. How do we change the contrast or brightness of a color ? using HSV ?? or is there a straight way using colorTransformin AS3 or AS2. thx L Pedro Taranto a écrit : laurent wrote: If I remember right you must create a Color object for your mac, then u

Re: [Flashcoders] Flash8 Question - contrast transform

2008-03-30 Thread Pedro Taranto
laurent wrote: Hm...I should play with colors again. How do we change the contrast or brightness of a color ? using HSV ?? or is there a straight way using colorTransformin AS3 or AS2. thx L you should apply some BitmapFilter -- Pedro Taranto ___

[Flashcoders] L'index indiqué sort des limites....some thing like, index out of range or out of limit

2008-03-30 Thread laurent
What does it means ? I add a movieClip to another one using addChildAt. I specify the level 10 to keep some space if I want to easily add another mc between 0 and 10. But perhpas I must add a child to next highest depth that there's always a displayObject at any depth between 0 an 10. Or is

Re: [Flashcoders] L'index indiqué sort des limites....something like, index out of range or out of limit

2008-03-30 Thread Pedro Taranto
laurent wrote: What does it means ? I add a movieClip to another one using addChildAt. I specify the level 10 to keep some space if I want to easily add another mc between 0 and 10. But perhpas I must add a child to next highest depth that there's always a displayObject at any depth between 0

Re: [Flashcoders] Flash8 Question

2008-03-30 Thread Ibrahim Y
Now, the question is 1. how can I loop through all movie clip by code? 2. how can I change the on hover effect only? Ibrahim On Mon, Mar 31, 2008 at 4:59 AM, Pedro Taranto <[EMAIL PROTECTED]> wrote: > laurent wrote: > > If I remember right you must create a Color object for your mac, then

Re: [Flashcoders] Root casting as Main big problem

2008-03-30 Thread laurent
hm...the MovieClip( root ) help to compile with no error. But then trying to acces a method of the root throw an error about: TypeError: Error #1010: Un terme n'est pas défini et n'a pas de propriété. term undefined...it can't find the object referenced so I casted the object I'm trying to a

Re: [Flashcoders] Flash8 Question

2008-03-30 Thread laurent
You can name you boutons a gneric name: btn_0, btn_1, btn_2, etc then you have a loop: for( i = 0; i < buttonNumber; i ++){ var mc:MovieClip = this["btn_" + i]; mc.onhoverMC do something with it } this code is in the buttons container. L Ibrahim Y a écrit : Now, the question is 1. h