[Flashcoders] Video editor in Berlin, searching for job

2008-07-28 Thread laurent
Hi list, I wonder if one of you working in an agency in Berlin would know if a video editor could send a CV at your office. She's spanish living in France, speak fluently english , and work in video editing since 5 years as a freelancer, studied at the Bellas Artes in Barcelone for 5

RE: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-28 Thread Zoltan Csibi
Hi Joe, In my case I was generating a swc too (using it from AIR) and deleting the swc file manually fixed this issue (however anytime the swc file is there flash comes up again with this error message) Zoli www.fluorinefx.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] ...Friday, 5:38 pm

2008-07-28 Thread Merrill, Jason
i mean if the flash plugin died so no actionscript what would you do I would painfully move over to the less-feature rich, much less market-accepted Silverlight and code in XAML and C#. Jason Merrill Bank of America Enterprise Technology Global Risk LLD Instructional Technology Media Join

RE: [Flashcoders] ...Friday, 5:38 pm

2008-07-28 Thread Lukas Ruebbelke
This list would just die because Steven Sacks would have nothing to complain about. :D -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: zaterdag 26 juli 2008 13:02 To: Flash Coders List Subject: Re: [Flashcoders]

Re: [Flashcoders] ...Friday, 5:38 pm

2008-07-28 Thread laurent
hahahah awesome! Lukas Ruebbelke a écrit : This list would just die because Steven Sacks would have nothing to complain about. :D -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: zaterdag 26 juli 2008 13:02 To:

[Flashcoders] setting up papevision 3d or any other class on cs3 mac osx

2008-07-28 Thread Gustavo Duenas
Any ideas, I've been trying the regular way, so it seems weird enough , any ideas why my mac doesn't want to rdead external classes from the preference panel on the cs3? regards, Gustavo ___ Flashcoders mailing list

Re: [Flashcoders] ...Friday, 5:38 pm

2008-07-28 Thread Steven Sacks
Word. laurent wrote: hahahah awesome! Lukas Ruebbelke a écrit : This list would just die because Steven Sacks would have nothing to complain about. :D -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: zaterdag

[Flashcoders] DART AS3

2008-07-28 Thread Helmut Granda
I am going to shoot this out to the dark and see if anyone has been able to deploy AS3 banners in the DartMotif platform ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] DART AS3

2008-07-28 Thread Manuel Ponce de Leon
Helmut, The DART Motif platform does not support AS3 at this point. Will do in early 2009. Helmut Granda wrote: I am going to shoot this out to the dark and see if anyone has been able to deploy AS3 banners in the DartMotif platform ___

Re: [Flashcoders] DART AS3

2008-07-28 Thread Brian Mays
Hey Manuel. Another DART related question. I notice that when viewing with the Flash 10 player I'm sent alternative static version of our DART files. Any thoughts when the detection might be updated? Brian Mays On 7/28/08 3:50 PM, Manuel Ponce de Leon [EMAIL PROTECTED] wrote: Helmut, The

Re: [Flashcoders] DART AS3

2008-07-28 Thread Helmut Granda
Thanks Manuel for the feedback... do you know if there is a work around this limits? You know one of those AS3 complex banners that was supposed to be deployed yesterday and no time to switch back to AS2? On Mon, Jul 28, 2008 at 3:50 PM, Manuel Ponce de Leon [EMAIL PROTECTED] wrote: Helmut,

[Flashcoders] Random numbers list

2008-07-28 Thread Eduardo Barbosa
Hi all! What I am trying to figure out is this: How to generate a sequence of random numbers where the newest is always different from all the previous? I need to continuosly rewrite an array of 10 random numbers in such a way that at any given time they are all different. Let's say that my

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
you could make a first array filled with all number from 0 to 100 and then you splice to any random index range between 0 and the new size of the array. You fill another array with the last spliced number. do I make sense ? cheers L Eduardo Barbosa a écrit : Hi all! What I am trying to

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
oops no i did not get you point actually.. hm...more complex...:) L Eduardo Barbosa a écrit : Hi all! What I am trying to figure out is this: How to generate a sequence of random numbers where the newest is always different from all the previous? I need to continuosly rewrite an array of 10

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
still it can be done like that you always keep the number of numbers between two arrays... and swap numbers from one to another, that your sure to neve have twice the same one yeah...! :] L Eduardo Barbosa a écrit : Hi all! What I am trying to figure out is this: How to generate a sequence

RE: [Flashcoders] Random numbers list

2008-07-28 Thread Steve Abaffy
Every time you generate a new random number go through the array and see if any match the new number if so generate a new one and check again, if not add it to the array. With only 10 numbers in the array it would check very fast so you wouldn't be taking a performance hit. -Original

Re: [Flashcoders] Random numbers list

2008-07-28 Thread Matt S.
Can numbers repeat? Is this a constant loop where, for instance, the number 12 could show up two times in twenty seconds? Or would you want 12 to show up once and then go out of circulation permanently? .m On Mon, Jul 28, 2008 at 5:42 PM, Eduardo Barbosa [EMAIL PROTECTED] wrote: Hi all! What

Re: [Flashcoders] Random numbers list

2008-07-28 Thread Eduardo Barbosa
Hi Matt, Yes numbers can and should repeat through time. They just cant be repeated within the sequence at a given discreet time. Makes sense? :) On Mon, Jul 28, 2008 at 11:15 PM, Matt S. [EMAIL PROTECTED] wrote: Can numbers repeat? Is this a constant loop where, for instance, the number 12

Re: [Flashcoders] Random numbers list

2008-07-28 Thread Eduardo Barbosa
Hi Laurent, Your first suggestion is a very simple and clever trick i'll definetely keep in mind for future situations. However for this second variation you mean that I: 1) pick the numbers out of array 1 and splice it 2) move those numbers into array 2 3) when the length of array 1 would be

Re: [Flashcoders] Random numbers list

2008-07-28 Thread Eduardo Barbosa
Hi Steve, That was actually my first thought. I had a while loop and inside a for ... in loop to iterate through the array to check if the number was already there. But then for some reason the script made flash unresponsive. However I just came up with this which seems to be working, but i'm

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
yes like: allNumber:Array = [ 0, 1, 2, 3, ..., 100 ]; tenNumbers:Array = []; public function getNumberIn():void{ var i:in = int( Math.random * allNumber.length ); tenNumbers.push( allNumber.splice( i, 1 ) ); } then I don't know how you pick up the number to pass from tenNumbers

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
or perhaps tenNumber[ tenNumbers.length ] is faster than tenNumbers.push() never know about that one...the second return something so perhaps its slower.. laurent a écrit : yes like: allNumber:Array = [ 0, 1, 2, 3, ..., 100 ]; tenNumbers:Array = []; public function getNumberIn():void{

Re: [Flashcoders] Random numbers list

2008-07-28 Thread laurent
yes like: allNumbers:Array = [ 0, 1, 2, 3, ..., 100 ]; tenNumbers:Array = []; public function getNumberIn():void{ var n:int = tenNumbers.splice( int( Math.random * 10 ), 1 ); tenNumbers.push( allNumbers.splice( int( Math.random * allNumbers.length ), 1 ) );

Re: [Flashcoders] setting up papevision 3d or any other class on cs3 mac osx

2008-07-28 Thread gduenas
Hi Helmut, do you mean the cs3?, maybe, I sould have this installed better maybe? I've just downloaded the classes today earl.y in the afternoon, and I don't know why this one doesn't want to read the classes, look, I went to preferences, tab actionscript, choose as3, then in the class path the

Re: [Flashcoders] setting up papevision 3d or any other class on cs3 mac osx

2008-07-28 Thread Helmut Granda
are you having issues with ALL classes or is it only with Papervision? if it is only with Papervision i would assume that you are using the path wrong. On Mon, Jul 28, 2008 at 8:55 PM, gduenas [EMAIL PROTECTED]wrote: Hi Helmut, do you mean the cs3?, maybe, I sould have this installed better