Re: [Flashcoders] Flash8 Question

2008-03-31 Thread Ibrahim Y
the movie clips already created, and everything is fine. but I want to change them all using code, I don't want to rename them all, in this case I can change the design manually. On Mon, Mar 31, 2008 at 8:41 AM, laurent <[EMAIL PROTECTED]> wrote: > You can name you boutons a gneric name: btn_0, b

Re: [Flashcoders] Flash8 Question

2008-03-31 Thread laurent
the name I'm talking about is the name you give in the properties panel. when you click a mc you can specify is name on the stage that is totally something else from is name in the library. So there you should choose a name that help you loop through the mcs Ibrahim Y a écrit : the movie clip

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

2008-03-31 Thread Thuy Nguyen
JavaScript and CSS --- Thuy Nguyen Web Developer Angus Productions Inc. On Mar 30, 2008, at 11:03 AM, flashcoders- [EMAIL PROTECTED] wrote: Send Flashcoders mailing list submissions to flashcoders@chattyfig.figleaf.com To subscribe or unsubscribe via the World Wide Web, visit

[Flashcoders] TextField.bottomScroll

2008-03-31 Thread Mendelsohn, Michael
Hi list... I'm encountering a weird scenario where a TextField's bottom scroll isn't being reported accurately. It's tracing a number less what it actually. The end of the text in my TF was /r/r/r/r, and now I've populated it to be something like /rtext/rtext/rtext/rtext, thinking that would for

[Flashcoders] TextField.bottomScroll (part 2)

2008-03-31 Thread Mendelsohn, Michael
Why?? // c is a TextField c.scroll = this.lastVisibleLine; // 338 var firstLineOnPage = c.scroll; // 326 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] TextField.bottomScroll

2008-03-31 Thread Allandt Bik-Elliott (Receptacle)
yeh - put a bunch of 's in at the end because of this - i thought it was only html dynamic text that did this but i guess not. Never found a solution a On 31 Mar 2008, at 14:05, Mendelsohn, Michael wrote: Hi list... I'm encountering a weird scenario where a TextField's bottom scroll isn't

[Flashcoders] AS2 SOAP web service

2008-03-31 Thread Gert-Jan van der Wel
Hi everybody, I'm having some trouble with connecting to a SOAP web service from my AS2 app. I need to log in on the web service to use it, but I don't know when I should use the login/pass. I use this script: var service:WebService = new WebService( url ); var call:PendingCall = service.do

RE: [Flashcoders] Flash8 Question - contrast transform

2008-03-31 Thread Jack Doyle
Yep, a BitmapFilter is what you need. You might want to check out TweenFilterLite for an easy way to apply (and/or tween) the filter. It'll also let you adjust saturation, brightness, colorization, hue, and threshold. www.TweenFilterLite.com The code would look something like: TweenFilterLite.

[Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Allandt Bik-Elliott (Receptacle)
hi guys in actionscript 3, if i put a mouse event on a movieclip object containing a textfield, should the mouse event be on the movieclip or the textfield? here's my code (comments added to see where the problem is occurring) CODE private function createPeriodBar(dateStart:int, dateEnd:i

[Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Allandt Bik-Elliott (Receptacle)
hi guys in actionscript 3, if i put a mouse event on a movieclip object containing a textfield, should the mouse event be on the movieclip or the textfield? here's my code (comments added to see where the problem is occurring) CODE private function createPeriodBar(dateStart:int, dateEnd:i

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Steven Sacks
mc.mouseChildren = false; or event.currentTarget ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Kenneth Kawamoto
Try setting mouseChildren to false Kenneth Kawamoto http://www.materiaprima.co.uk/ Allandt Bik-Elliott (Receptacle) wrote: hi guys in actionscript 3, if i put a mouse event on a movieclip object containing a textfield, should the mouse event be on the movieclip or the textfield? here's my

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread jonathan howe
A perfect opportunity for someone more eloquent than I to explain event bubbling. On Mon, Mar 31, 2008 at 4:17 PM, Allandt Bik-Elliott (Receptacle) < [EMAIL PROTECTED]> wrote: > hi guys > > in actionscript 3, if i put a mouse event on a movieclip object > containing a textfield, should the mouse

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Steven Sacks
IMO, explaining Event Bubbling as the reason the TextField is the target is complicating the immediate solution he needs, which is mouseChildren = false. Yes, it's Event Bubbling that's causing the target to be the TextField. To understand Event Bubbling, read about it in the docs, or better

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Allandt Bik-Elliott (Receptacle)
i have the moock book but i couldn't get my head round the bubbling phase and how it affected me - i need to look into it a bit more i added mouseChildren=false but it made the entire event stop - even on the objects that were working before, and i didn't even get the error is this because

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Allandt Bik-Elliott (Receptacle)
okay i've tried everything i can find in the book re: this problem and it doesn't seem to be having any affect i've tried the mouseChildren option (commented out) and useCapture tomfoolery (seems to be firing in the CAPTURING_PHASE as that's the only one i can get any result from) and i've

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Steven Sacks
You shouldn't be using capture phase until you've got a really good handle on bubbling phase first. You shouldn't have bubbling turned on for your button unless you are planning on catching this event above this clip, as well. Event Bubbling means that the TextField is dispatching a bubbling

Re: [Flashcoders] AS3 MouseEvent target?

2008-03-31 Thread Steven Sacks
> Take off the true flag for bubbling and set mouseChildren = true. This should solve your issue. Er, I meant set mouseChildren = false. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/fla

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

2008-03-31 Thread Digg Yeah
Thank you guys. Thuy Nguyen, can you just give a little bit more detail on how this is possible using just js and css? Ain Tohvri, i tried browsershots. But what they do is to fire the browser, and take screenshots using Python. Is there anyway to take snaps without physically launching the browser