RE: [Flashcoders] How to get the MD5 hash value of a file

2007-08-31 Thread Paul Steven
Thanks for the reply Jim I am using Zinc and have managed to get it working so I can drag and drop the file onto the application. I have found a MD5 class now but the value it is giving me does not match the value the client is comparing it against. Here is a snippit of my code ByteLoader =

Re: [Flashcoders] Flash CS3 an Mac - compiler errors with SVN-folders

2007-08-31 Thread christian
Hi, I have the same problem and it's not a GUI issue ... The problem is that Flash CS 3 doesn't find any classes - i.e. the document class of the FLA or classes imported in the timeline. Nobody using the IDE anymore? ;-) Best, Christian Am 31.08.2007 um 07:29 schrieb Nick Johnston:

Re: [Flashcoders] Iterator question

2007-08-31 Thread eka
Hello :) AST'r is the code example ;) http://code.google.com/p/astr/ You install the sources (and the sources of VEGAS) and you can read the source code to understand my methodology to create an application. AST'r is a Conceptual framework (templates).. With AST'r i'm going to write tutorials

Re: [Flashcoders] creating variable names dynamically in AS3

2007-08-31 Thread eka
Hello :) for me your notation in AS2 is false too... you can't use the 'var' keyword and the 'this' keyword after. The compiler throw an error. If you want use dynamic variables ... for me the best way it's an HashMap or an Object : # Use an Object : var items = {} ; for (var i:Number = 0 ;

Re: [Flashcoders] Rotate, Scale and _x, _y

2007-08-31 Thread julian atienza
Thanks so much. I knew that source. But thanks anyway!!! 2007/8/31, Jack Doyle [EMAIL PROTECTED]: Not sure if it'll help, but check out http://www.greensock.com/ActionScript/TransformManager. It'll let the user scale, rotate, or move any MovieClip regardless of where its registration point

[Flashcoders] [AS3] Using ByteArray as a FLV holder

2007-08-31 Thread Bernard Visscher
Hi all, I was trying to load a FLV in a ByteArray and then attaching it to a NetStream or something like that to display the flv. No luck yet! Does someone know how this can be done? I think I have to replace the data like you can do with sound. Greetz, Bernard

[Flashcoders] General question about data management

2007-08-31 Thread Paul Steven
I am creating a desktop application using Flash and Zinc. The first time it runs, it retrieves all the data by calling a series of scripts on a server. The data is returned as xml data. My question is, can I just store all the info in memory as xml data or do I need to create classes to store the

Re: [Flashcoders] General question about data management

2007-08-31 Thread Johannes Nel
storing the xml in memory is fine, personally i prefer using models, that way when the xml changes i just need to update the query which retrieves it and the function which writes xml again. also in the flex2 paradigm with databinding models are better to work with than xml IMO. On 8/31/07, Paul

[Flashcoders] Parse/ Create swf via Actionscript 3.0

2007-08-31 Thread Troy Gardner
Curious if anybody knows of a library or is interested in working on one for swf creation via actionscript? In AS3, via ByteArray manipulations it's possible to read/decompile swf file as a stream of bytes, and also generate create an swf entirely via actionscript! e.g.

Re: [Flashcoders] creating variable names dynamically in AS3

2007-08-31 Thread Geografiek
Hi Eka, Works like a charm. Thanks. Willem van den Goorbergh Op 31-aug-2007, om 10:14 heeft eka het volgende geschreven: Hello :) for me your notation in AS2 is false too... you can't use the 'var' keyword and the 'this' keyword after. The compiler throw an error. If you want use dynamic

Re: [Flashcoders] What open source utility to convert video to FLV or SWF ?

2007-08-31 Thread Peter B
FFMPEG: http://ffmpeg.mplayerhq.hu/ Will do server side conversion if that's what you need... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Parse/ Create swf via Actionscript 3.0

2007-08-31 Thread Muzak
Have you read the License Agreement? https://www.adobe.com/cfusion/entitlement/index.cfm?e=file%5Fformat quote 3. Restrictions a. You may not use the Specification in any way to create or develop a runtime, client, player, executable or other program that reads or renders SWF files. /quote

Re: [Flashcoders] Parse/ Create swf via Actionscript 3.0

2007-08-31 Thread Bojil Vassilev
His thing won't render swf's but create them, I guess that should be fine? Anyway other programs are doing that already, creating swf's, which will be then rendered in the Flash player. Muzak написа: Have you read the License Agreement?

Re: [Flashcoders] Parse/ Create swf via Actionscript 3.0

2007-08-31 Thread Muzak
If that's the case, then just ignore me.. I read it as reads and writes SWF files.. but that's probably because English isn't my main language ;-) regards, Muzak - Original Message - From: Bojil Vassilev [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Friday, August 31,

Re: [Flashcoders] General question about data management

2007-08-31 Thread Ron Wheeler
I think that you are on the right track. Pass the XML sub-tree to the constructor to create the class. If you do this, then any change to the schema will only affect the class parsing that part of the tree. If you do the same thing to create the XML to be saved, you will get the same benefit

Re: [Flashcoders] [AS3] Using ByteArray as a FLV holder

2007-08-31 Thread T. Michael Keesey
On 8/31/07, Bernard Visscher [EMAIL PROTECTED] wrote: Hi all, I was trying to load a FLV in a ByteArray and then attaching it to a NetStream or something like that to display the flv. No luck yet! Does someone know how this can be done? I think I have to replace the data like you can do with

RE: [Flashcoders] [AS3] Using ByteArray as a FLV holder

2007-08-31 Thread Bernard Visscher
I must correct that, that is a swf hack to inject sound into a swf and the load with the loader.loadBytes. I'm now trying to do the same with a flv. I've read a lot and found that injecting bytes into netstream isn't possible. Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED]

Re: [Flashcoders] Rotate, Scale and _x, _y

2007-08-31 Thread Steve Mathews
There isn't a way to rotate without changing the x and y. But it is all just math. Here are a couple resources you could look at. http://jobemakar.blogspot.com/2007/06/rotating-around-point.html http://www.senocular.com/flash/tutorials/transformmatrix/ Steve On 8/28/07, julian atienza [EMAIL

[Flashcoders] Re: Parse/ Create swf via Actionscript 3.0

2007-08-31 Thread Alan Watts
I was going to start this a few months ago and then found some perl modules that do it: http://search.cpan.org/search?query=swfmode=all My project is more suited for server-side swf generation, but these could be ported to as3 fairly easily. hope it helps, Alan Curious if anybody knows

[Flashcoders] coding a world clock

2007-08-31 Thread Corban Baxter
Just wanted to know where I could get the data to code world clocks in flash. Since flash works off the system clock am I able to get the time zone or do I need to use a web service that is available to make this happen? -- Corban Baxter http://www.projectx4.com

RE: [Flashcoders] coding a world clock

2007-08-31 Thread Paul Venton
Have a gander at the Date object ... it's all there. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Corban Baxter Sent: 31 August 2007 19:22 To: Flashcoders mailing list Subject: [Flashcoders] coding a world clock Just wanted to know where I could get

[Flashcoders] Whaen was Flash 9 player released?

2007-08-31 Thread Count Schemula
Approximately when was Flash Player 9 first released? -- count_schemula ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

Re: [Flashcoders] Whaen was Flash 9 player released?

2007-08-31 Thread Jim Cheng
Count Schemula wrote: Approximately when was Flash Player 9 first released? If you mean the first non-beta public release, June of last year (2006), I believe. Emmy Huang, the Flash Player Product Manager at Adobe, has been blogging about every major update to the Flash Player since back

Re: [Flashcoders] AS3 Events, Delegates and passing parameters

2007-08-31 Thread Mark Carolin
I believe you could pass a custom Event with all the properties you want. On 8/25/07, Muzak [EMAIL PROTECTED] wrote: There should never be any need for using a Delegate class in AS3 and passing arguments along with a Delegate in AS2. regards, Muzak - Original Message - From: