[Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Wenzler, Thomas
Hi to everyone on the List, I was asked if it was possible to (preferably serverside) generate .flv movies from a sequence of .jpgs. Is that possible? Any hint in the right direction is highly appreciated... Thanks in advance for all your efforts and excuse me if this is off-topic... :) Thomas __

Re: [Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Piers Cowburn
It's certainly possible, what server set up are you using? On Red5 you could do it with FFmpeg, I believe. Piers On 30 Sep 2008, at 09:51, Wenzler, Thomas wrote: Hi to everyone on the List, I was asked if it was possible to (preferably serverside) generate .flv movies from a sequence of .

Re: [Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Wenzler, Thomas
Thank you, Piers, That might be it...just googled an article on how to maybe do exactly what I want. Thanks a lot for the hint. Regards Thomas -- Message: 28 Date: Tue, 30 Sep 2008 10:12:23 +0100 From: Piers Cowburn <[EMAIL PROTECTED]> Subject: Re: [Flashcoders] FLV

Re: [Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Piers Cowburn
HTH On 30 Sep 2008, at 10:37, Wenzler, Thomas wrote: Thank you, Piers, That might be it...just googled an article on how to maybe do exactly what I want. Thanks a lot for the hint. Regards Thomas -- Message: 28 Date: Tue, 30 Sep 2008 10:12:23 +0100 From: Piers Co

[Flashcoders] Perlin Noise / Displacement

2008-09-30 Thread Karim Beyrouti
Hello groovy list... I am trying to generate a chrome effect by applying a displacement map to Bitmap. The Displacement map is generated from perlin noise, and the target is a single colour filled bitmap. However it's not working with the single colour filled bitmap (I think it's because there i

[Flashcoders] Is it possible to create duplicate event listeners?

2008-09-30 Thread ben gomez farrell
Hi all, I'm curious if I need to clean up my event listeners before adding a duplicate one. For example if I have an initialization routine function init():void { addEventListener( Event.SomeEvent, $somehandler, false, 0, true ); // some other stuff that builds the app/game } If I finish

Re: [Flashcoders] Is it possible to create duplicate event listeners?

2008-09-30 Thread Paul Andrews
Would be really easy to find out by adding two identical event listeners to a button. I'd expect it to be called twice. - Original Message - From: "ben gomez farrell" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Tuesday, September 30, 2008 6:23 PM Subject: [Flashcoders] Is it pos

[Flashcoders] Shared variable scope between mxml and ActionScript classes

2008-09-30 Thread steve linabery
Hello Flashcoders, Let's say I have two files, myApp.mxml: http://www.adobe.com/2006/mxml"; applicationComplete="EntryClass.main()"> and EntryClass.as: package { public class EntryClass { public static function main():void { myChart.graphics.drawRect(100,100,100,100

Re: [Flashcoders] Shared variable scope between mxml and ActionScript classes

2008-09-30 Thread Glen Pike
Hi, Here is my 2c EntryClass.main is a static function, but you cannot guarantee that mxml is going to compile your chart to a static variable - you can't access non-static variables from a static function if I remember rightly... What you probably want to do here, which would be a

Re: [Flashcoders] Shared variable scope between mxml and ActionScriptclasses

2008-09-30 Thread Paul Andrews
- Original Message - From: "steve linabery" <[EMAIL PROTECTED]> To: Sent: Tuesday, September 30, 2008 7:09 PM Subject: [Flashcoders] Shared variable scope between mxml and ActionScriptclasses Hello Flashcoders, Let's say I have two files, myApp.mxml: http://www.adobe.com/2006/mx

Re: [Flashcoders] Perlin Noise / Displacement

2008-09-30 Thread Glen Pike
Hi, I did a similar thing to generate fake clouds - in a monochrome colour... Just try generating your perlin noise as greyscale - like you are doing. You should not need to do the displacement filter on it, but with this you can do "clouds", through to big chunky stuff. The trick

Re: [Flashcoders] Can URLLoader Open New Window Like LoadVars?

2008-09-30 Thread Elia Morling
Any ideas? thanks - Original Message - From: "Elia Morling" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Monday, September 29, 2008 12:32 AM Subject: [Flashcoders] Can URLLoader Open New Window Like LoadVars? The LoadVars could specify a target to open a new window in AS2... Ca

Re: [Flashcoders] Can URLLoader Open New Window Like LoadVars?

2008-09-30 Thread Glen Pike
Hi, I posted an answer to this yesterday - use navigateToURL http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/package.html#navigateToURL() With a URLRequest having the "method" variable set to POST and the window set to "_blank" Not 100% sure, but you may run int

Re: [Flashcoders] Shared variable scope between mxml and ActionScript classes

2008-09-30 Thread Ian Thomas
Hi Steve, It's because the MXML file myApp.mxml is equivalent to a class file. So what you're really saying is: myApp.as: (roughly translated from myApp.mxml, omitting imports) package { public class myApp extends Application { public var myChart:VBox; public function myApp() {

Re: [Flashcoders] Shared variable scope between mxml and ActionScript classes

2008-09-30 Thread steve linabery
Ian, Excellent explanation. Knowing that mxml files are really just class files...well, it's like turning on a light. Thank you! Incidentally, it turns out that Application.application.myChart.graphics...etc. works fine as well. I was copying the use of "Application(Application.application)" from