Re: [Flashcoders] XML push() data scope issue?

2006-04-29 Thread zikey Han
you can read this article:http://www.person13.com/articles/proxy/Proxy.htm or mx.utils.Delegate class http://www.flashpixy.com/index.php?entry=entry060306-225238 i hope this can help you! 2006/4/29, Mandongo [EMAIL PROTECTED]: i'm trying to figure out if it's a problem with scope, or if i'm

RE: [Flashcoders] Project 3:16

2006-04-29 Thread Helmut Granda
deja-vu? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Monday, April 24, 2006 10:27 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] Project 3:16 Project 3:16 - For Client so loved the work, that he told his one and only

[Flashcoders] A different kind of FOR loop ???

2006-04-29 Thread Stephen Ford
Please advise, What is this piece of code doing: for (posArray = [], i = 0; i this.length; posArray[i] = i++) {} I though it might have been another way of coding: for (i=0; ithis.length; i++) {posArray[i] = i;} But what would be the point of that anyway ? I have never seen a FOR loop

[Flashcoders] Setting styles on components

2006-04-29 Thread Ryan Sabir
Hi, Is it just me or is trying to work with components really frustrating... I'm trying to change the style of componenets, e.g. by changing the border colour of them. I've come across this line in the documentation: If we want to change the color on the face of the button, use the following

Re: [Flashcoders] A different kind of FOR loop ???

2006-04-29 Thread ryanm
for (posArray = [], i = 0; i this.length; posArray[i] = i++) {} It's just shorthand. The first part, seperated by a comma, is just a declaration within the scope of the loop. So posArray and i are declared and a value assigned to them. The second part is a simple conditional:

RE: [Flashcoders] Setting styles on components

2006-04-29 Thread jim
The best place to look is in the LiveDocs website. http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/js/html/wwhelp.ht m?href=Part6_Component_Reference.html#wp72388 All the info you need is under Using Components and Component Language Reference HTH Jim -Original Message-

[Flashcoders] Need flash coder for 1.5 week job in DC Metro area

2006-04-29 Thread Casey Wolfe
Hi. Seeking someone to work with my team for 1.5 - 2 weeks on some production flash assembly and coding. Must be local to the Washington, DC metro area. Job starts late this coming week. Job entails assembly of flash components of a pretty hip marketing web site. Designs already in place.

Re: [Flashcoders] DCR (was (no subject))

2006-04-29 Thread Kenneth Kawamoto
Is there anyway to convert shockwave dcr files to video files ? This is a Director question - anyway, you can use screen capture software to make a video file from whatever on the screen. Kenneth Kawamoto www.materiaprima.co.uk ___

Re: [Flashcoders] Project 3:16

2006-04-29 Thread John Grden
amen. amenoh and, amen ;) On 4/29/06, Steven Sacks [EMAIL PROTECTED] wrote: I didn't send this a second time. That's just weird. -Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Saturday, April 29, 2006 1:00 AM

Re: [Flashcoders] DCR (was (no subject))

2006-04-29 Thread Michael Bedar
Doesn't Director export Quicktime of Avi Files? On Apr 29, 2006, at 2:32 PM, Kenneth Kawamoto wrote: Is there anyway to convert shockwave dcr files to video files ? This is a Director question - anyway, you can use screen capture software to make a video file from whatever on the screen.

Re: [Flashcoders] DCR (was (no subject))

2006-04-29 Thread Kenneth Kawamoto
Doesn't Director export Quicktime of Avi Files? Yes it does, and you can actually just import the DCR and place it on the Stage, then export as MOV/AVI, if it's a linear animation. Kenneth Kawamoto www.materiaprima.co.uk ___

[Flashcoders] Video capture

2006-04-29 Thread hbruyere
Hi, I have to be able to turn on and off my webcam. I mean to be able with a simple check box to start capturing and to stop capturing video from a webcam. I'm able to start the capture but I can't find the way to stop it when I press the button. Find below the code. I have tried many things