RE: [Flashcoders] RegExp

2010-03-12 Thread Cor
Very nice! Thanks Karl! Regards Cor van Dooren -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: vrijdag 12 maart 2010 8:36 To: Flash List Subject: [Flashcoders] RegExp Hello List, A

Re: [Flashcoders] RegExp

2010-03-12 Thread Karl DeSaulniers
Correction, this actually starts the pages. http://lawrence.ecorp.net/inet/samples/regexp-intro.php Enjoy!, Thanks Lawrence ;) Karl On Mar 12, 2010, at 2:16 AM, Cor wrote: Very nice! Thanks Karl! Regards Cor van Dooren -Original Message- From:

[Flashcoders] click tracking code for flash banner adds

2010-03-12 Thread Amol
Hi to all I need a as 2.0 script for banner adds click tacking, I am using given below code which is not working properly System.security.allowDomain(); System.security.allowInsecureDomain(); System.security.allowDomain(); System.security.allowInsecureDomain();

[Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread kennethkawam...@gmail.com
Anyone??? Just contemplating the strategy for dynamically superimposing an image onto a video. A good recent example is: http://en.tackfilm.se/ Any ideas to achieve this? (Just the final video rendering bit, you can leave the file upload etc. ;) TIA, Kenneth -- Kenneth Kawamoto

Re: [Flashcoders] hitTestPoint hit-ing on invisible objects

2010-03-12 Thread Henrik Andersson
Stan Vassilev wrote: So... Why is hitTestPoint not respecting child visibility? Does anyone know a solution to this issue? Because it is by design. Don't like it? Use getObjectsUnderPoint and figure out the exact object that you want. ___

Re: [Flashcoders] OOP Books (OT)

2010-03-12 Thread Susan Day
On Thu, Mar 11, 2010 at 5:29 PM, co...@moock.org co...@moock.org wrote: hi all, as the author of an oop book myself, i have to admit that books aren't always the right learning tool for everyone. i agree with benny...i've liked the video training that's been emerging over the last few years.

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Susan Day
On Thu, Mar 11, 2010 at 3:55 PM, Mattheis, Erik (MIN - WSW) ematth...@webershandwick.com wrote: The missing .html thing has to be a simple mistake you're not seeing. I realized you must be right. So I pulled out the pertinent code and have built a test case. Sure enough, it's working

RE: [Flashcoders] RegExp

2010-03-12 Thread Mendelsohn, Michael
Here's a great RegEx resource: http://gskinner.com/RegExr/ - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Susan Day
On Fri, Mar 12, 2010 at 8:48 AM, Susan Day suzieprogram...@gmail.comwrote: On Thu, Mar 11, 2010 at 3:55 PM, Mattheis, Erik (MIN - WSW) ematth...@webershandwick.com wrote: The missing .html thing has to be a simple mistake you're not seeing. I realized you must be right. So I pulled out

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Nathan Mynarcik
Why not just overlay a mc that contains your image on top of the video? --Original Message-- From: kennethkawam...@gmail.com Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] Fwd: Dynamically superimposing image onto

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread kennethkawam...@gmail.com
Yes, basically that. If it's still image it's very easy, but it's a video - so that the perspective changes and the mask (e.g. to handle something over-wrapping in front of the image) changes due course. I probably need to draw the mask by hand frame by frame and control the perspective of the

RE: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Merrill, Jason
I would agree and guess that's how it's done - overlay a movie clip you tween and distort and add objects over the top of - to match the video. Jason Merrill Bank of America Global Learning Learning Performance Solutions Join the Bank of America Flash Platform Community and visit our

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread kennethkawam...@gmail.com
Steady camera motion when shooting initial video would create script friendly sequence and should save a lot of time later - notes to myself :) -- Kenneth Kawamoto http://www.materiaprima.co.uk/ On 12 March 2010 15:22, Merrill, Jason jason.merr...@bankofamerica.com wrote: I would agree and

[Flashcoders] mxml to AS3

2010-03-12 Thread Anthony Pace
I only do this after using catalyst (beta 2) and there is a ton of mxml over a thousand lines or so, that I just don't want to have to filter through, but so far, what I have been doing is publishing the project as an swf, and the using a decompiler to convert it and its embedded elements to

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Anthony Pace
If you don't mind your stream being downloaded without the required branding or possible news event embedded into the video, plus the added bandwidth overhead is not a concern, than an overlay is perfect. If there are branding concerns, or you work for a site that would like to reduce

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Anthony Pace
I am wondering if you know when to use currentTarget vs target e.currentTarget is the object that you applied the eventListener to e.target is the object that fired the event. and if you are looking to get the child, then make sure not set mouseChildren to false. e.g. try using this to test

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Paul Andrews
On 12/03/2010 19:13, Anthony Pace wrote: I am wondering if you know when to use currentTarget vs target There's even more confusion about what a MouseOver is.. e.currentTarget is the object that you applied the eventListener to e.target is the object that fired the event. and if you are

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Anthony Pace
For the first sentence I meant to say that applying an overlay at the client is fine, if you are not concerned with your stream being ripped without branding, possible cnn style news events, or captions being included. If things need to be live and targeted you will want to do things at the

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Anthony Pace
agreed, cause: MouseEvent.ROLL_OVER, MouseEvent.ROLL_OUT, and mouseChildren set to false makes it so both target and currentTarget return the object the listener was applied to. On 3/12/2010 2:32 PM, Paul Andrews wrote: On 12/03/2010 19:13, Anthony Pace wrote: I am wondering if you know

Re: [Flashcoders] Passing Call To Child

2010-03-12 Thread Anthony Pace
I just did a quick search on google for the differences better explained, and I came up with this: http://www.wastedpotential.com/?p=10 After a quick glance, it seems like a nice tutorial. On 3/12/2010 2:32 PM, Paul Andrews wrote: On 12/03/2010 19:13, Anthony Pace wrote: I am wondering if

Re: [Flashcoders] OOP Books (OT)

2010-03-12 Thread co...@moock.org
hi helmut, ya, i think it's unfortunately still not very widely known. it was a new venture for o'reilly, and actually quite a risky undertaking due to the log-cabin setting, but i was determined to capture the learning from a friend approach that i've found so helpful in my own career. if

Re: [Flashcoders] Fwd: Dynamically superimposing image onto video

2010-03-12 Thread Kenneth Kawamoto
The server load is not a concern but it will not need to be live streaming at all, so I am planning to do the dynamic image overlay - triggered by cue points and animated by script with possibly frame-by-frame hand drawn mask - at the client side. Thinking about it, there's no need to upload