Re: [Flashcoders] Flash and Video

2009-06-01 Thread Jordan L. Chilcott
Depends on how you want to slow it down. If you want to Flash to play an already slowed down movie, you can generate that in either Adobe Premiere, Final Cut Pro or iMovie and then either convert it FLV or H264. If you are wanting to slow it down in Flash, you'll have to set up an interva

[Flashcoders] AS 2.0 and JAX-WS

2009-06-01 Thread Rodney Green
When trying to load the wsdl for a web service created with jax-ws, I get an undefined in the xsd path. Is Flash able to load this? I read something about Flash not being able to load external xsd files. Is this the case? What can I do to read the wsdl properly? I'm using CS3 ans AS 2 - does CS

[Flashcoders] Combobox.visible blows out fonts

2009-06-01 Thread Mendelsohn, Michael
Hi list... [CS3, AS3 Combobox component] I am toggling the visible property of a combobox. This combobox.textField has embedFonts set to true, and I can see the text if at first I keep the instance visible. But, if I set the instance to visible=false, and then return it back to visible=true,

[Flashcoders] FLV - FLVPlayback

2009-06-01 Thread Boerner, Brian J
I have a customer that is loading FLVs and FLVPlayback skin at runtime... which has worked great for them as a no fuss method of getting video up At their request I added timecodes, large playbutton, and preview image (from FLV) to the playback skin. The problem: The playback skin works fine as

[Flashcoders] [JOB] Flash Developers (PV3D) Belfast, Northern Ireland

2009-06-01 Thread Steven Henry
Faktura is a Belfast based multi-discipline studio. We are currently seeking freelance Flash developers for contract work. Several years OOP development experience Strong command of Actionscript 2 and 3 Papervision3D, Away3D (or similar) experience Graduates welcome. Please send CVs and/or ex

Re: [Flashcoders] Flash and Video

2009-06-01 Thread laurent
Maybe you can import it in a 60 fps swf, make it fit to the frame rate and then get your mc to 30. Or if you can, use after effects or final cut pro. Laurent Lehr, Theodore M (N-SGIS) a écrit : I have a .mov file that I want to import into a movie and then slow it down (slow motion). Any way

RE: [Flashcoders] Crossword generator advice

2009-06-01 Thread Paul Steven
Thanks for all the new advice. Yes I figured a recursive solution was required and even though my code doesn't technically recurse, it more or less does the same thing. Anyway I have just figured out the problem with my code after painstakingly tracing variables for the last few days. I was not a

[Flashcoders] Flash and Video

2009-06-01 Thread Lehr, Theodore M (N-SGIS)
I have a .mov file that I want to import into a movie and then slow it down (slow motion). Any way to do this? Ted ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Crossword generator advice

2009-06-01 Thread Charles Parcell
As Paul has stated, recursion is the answer to building this generator correctly. But just as a sanity check, have you traced out the combinations that your currect generator is attempting? That may put some light on where it was breaking. If for nothing else, it will help you understand where the

Re: [Flashcoders] issue with mc height

2009-06-01 Thread Fabio Pinatti
Hello! @Andrei, hey pal, your solutions seems to work. For me that issue was a big surprise and the fix more yet, since I thought when content is masked (like my case), the off area wasn't rendered. Pretty good know about that. @Karl, your fix is a lot elegant and it would be the pretty nice in t

Re: [Flashcoders] ie 8 flash crashes

2009-06-01 Thread Hans Wichman
Hi, ok thanks both! I didn't think it was this issue since I'm not using the webcam and/or video but apparently it is, nice:). regards JC On Fri, May 29, 2009 at 5:52 PM, Anthony Pace wrote: > //Its a blue tooth webcam video capture filter, and it is not a part of the > default windows or ie8 i

Re: [Flashcoders] Crossword generator advice

2009-06-01 Thread Paul Andrews
I've realised that there needs to be further loops around the layout code. For the crossword grid a viable set of horizontal layout positions may start at a given (x,y) position and the solution should search in terms of increasing x, then y, so the code might then go something like this.. la

Re: [Flashcoders] Crossword generator advice

2009-06-01 Thread Paul Andrews
You should use recursion. At each stage you should loop through the available words, trying to lay them onto the crossword area. Paul It goes a bit like this: var wordList = ["word1","word2","word3", .. ]; var xwordSolution:XwordSolution; var currentSolution= new XwordSolution(maxWidth, ma

RE: [Flashcoders] Crossword generator advice

2009-06-01 Thread Paul Steven
I am still struggling to find a solution to this crossword generator and could do with some advice on a possible solution I want to try. If I enter my list of 16 words in a particular order (an order based on what looks like the order the solution would place them), the generator creates the puzzl