Re: [Flashcoders] Funny

2006-06-06 Thread mike cann
ahhahaahhaha thats quality nice one :) On 05/06/06, Aaron Buchanan [EMAIL PROTECTED] wrote: http://abum.com/file/shadow/animations/17632.swf Now get back to work ;) -- Aaron ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [Flashcoders] OT: Have you been working with Flash all day?

2006-06-06 Thread Arul Prasad M L
:)) reminds me of the animations on http://www.xiaoxiaomovie.com/... ~Arul Prasad. On 6/6/06, Mendizabal [EMAIL PROTECTED] wrote: ah. I see. On 05/06/06, ::: curdiss [EMAIL PROTECTED] wrote: very cool.. i love it dude! On 6/5/06, Ramon Miguel M. Tayag [EMAIL PROTECTED] wrote: That's

[Flashcoders] Re: [FlashGameCoders] Problems seeing the caret in a flash texfield within Director.

2006-06-06 Thread Ned Perry
Hi Everyone I have a strange problem. I have a flash swf within a director shell and occasionally when you reach the flash swf, the caret inside all flash textfields disappears. If you then leave the 'swf' (staying within the director shell) and return to the swf the caret sometimes reappears

[Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread Zárate
Hi all, We all know FlashVars and how useful they are. My question is if is there a Best practices document/post/info somewhere. I'm pretty sure I don't want to access them with _root.flashvarName. As I am working with MTASC I always look for them in the MovieClip passed as a parameter to the

RE: [Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread Lee McColl-Sylvester
When using flashVars, one of my rules of thumb is to use as few as possible. Indeed, only as many as is needed to redirect flash to attaining all the other external variables via other means. Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

[Flashcoders] flade

2006-06-06 Thread dan
Hi all Do any of you use flade? If you do Did any one try to make objects collide? Like surfece's? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] onResize (when done)

2006-06-06 Thread Bernard Visscher
You can add a listener to the Stage. var listener:Object = new Object(); listener.onResize = function(){ //updated } Stage.addListener(listener); Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Flash Mel Verzonden: dinsdag 6 juni 2006 2:16 Aan:

Re: [Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread Morten Barklund
Hi Zárate, We seem to agree on a lot of points here. :) As I am working with MTASC I always look for them in the MovieClip passed as a parameter to the main(m:MovieClip) method. As do I. Then, I always prefix them with fv_. I do that to easily recognise them in the code. As do I

Re: [Flashcoders] Re: [FlashGameCoders] Problems seeing the caret in aflash texfield within Director.

2006-06-06 Thread Danny Kodicek
I have a strange problem. I have a flash swf within a director shell and occasionally when you reach the flash swf, the caret inside all flash textfields disappears. If you then leave the 'swf' (staying within the director shell) and return to the swf the caret sometimes reappears again and

[Flashcoders] Flash and pocket pc

2006-06-06 Thread Pedro Furtado
Hi there, does anyone know about any alternatives to Zinc as wrapper for pocket pc? The reason I ask is because I can’t achieve the correct screen resolution with Zinc. If I load the swf in explorer I get 480x640 if I use Zinc I only get 240x320. TIA. Pedro Furtado | Software Engineer |

RE: [Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread kariminal
Ya, I do something similar, its quite handy. all my flashVars have a _prm suffix. I use a singleton class which scans the root and looks for all values with that suffix. So its as OOP'd as possible. I've found this quite usefull. Here is the code:

RE: [Flashcoders] onResize (when done)

2006-06-06 Thread Jim Robson
The Stage.onResize event works perfectly as long as the scale mode is set to noScale (the example below from the Flash 8 docs is pretty good). If the movie is set to scale, then the event is never fired, and all bets are off. You can, however, use JavaScript to fire a resize event when the user

Re: [Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread Steve Webster
Morton, I've just (after reading your mail) blogged[1] on the way, that I normally do this. Please read this for my ideas of OOP-ness and best practices on this matter. :) [1] http://www.barklund.org/blog/2006/06/06/flashvars-and-as2/ Nice class. The only things I'd change are: 1. Use

Re: [Flashcoders] FlashVars + OOP, Best Practices?

2006-06-06 Thread Morten Barklund
Hi Steve, 1. Use static methods/properties instead of singleton. Gets rid of '.getInstance().' cruft. Well. In this case I prefer it used as a singleton - don't know why really, but it just seems more correct to me. 2. Remove the setVar() method since these properties really should be

[Flashcoders] Bug in Runtime Style Declarations

2006-06-06 Thread Jim Robson
When setting the fill colors for a component class at runtime, Flex breaks. It's possible to set the fill colors for an instance, but not for a class. Take a look at the code below. The first function, setInstanceStyle, works fine. The second function, setClassStyle, causes the MenuBar to

[Flashcoders] Key functions for Accessibility

2006-06-06 Thread James Marsden
Hello all, (apologies for cross posting with bnm) We're creating a simple interactive learning game in Flash 8, which uses drag and drop functionality to complete the game successfully. The initial controls we have created uses the mouse to pick up an object, move it and drop it in the

RE: [Flashcoders] Bug in Runtime Style Declarations

2006-06-06 Thread Jim Robson
Sorry - This was posted to the wrong list. Please ignore. (It's a Flex bug.) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Robson Sent: Tuesday, June 06, 2006 7:17 AM To: 'Flashcoders mailing list' Subject: [Flashcoders] Bug in Runtime Style

[Flashcoders] RE: Timeout from Flash page

2006-06-06 Thread Randy Tinfow
you could start a global timer and on every mousemove or keypress reset it. If the timer reaches it's end, give the user a popup with a 30 sec answer period. If the user doen't interact, unlock the file and the user is readonly. Good, simple solution. Thanks very much, RT

RE: [Flashcoders] Re: [FlashGameCoders] Problems seeing the caret inaflash texfield within Director.

2006-06-06 Thread Ned Perry
Thanks Danny I tried the: sprite(n).visible = false sprite(n).visible = true But it doesn't seem to make any difference.. Ned -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny Kodicek Sent: 06 June 2006 11:06 To: Flashcoders mailing list Subject:

Re: [Flashcoders] Re: [FlashGameCoders] Problems seeing the caretinaflash texfield within Director.

2006-06-06 Thread Danny Kodicek
Thanks Danny I tried the: sprite(n).visible = false sprite(n).visible = true But it doesn't seem to make any difference.. I've had some success by making the text field bordered (it can have the same colour as the background if you like). Again., not foolproof but it might work for you.

[Flashcoders] Missing Pixels???

2006-06-06 Thread Loren R. Elks
Hi: I am having issues with screen clarity at run time. Background: SWF A is loaded into movieclip Screener in SWF B. Both SWFs are set for 30 fps. SWF A and Screener measure 922x530. SWF B is about 100 pixels larger all the way around. The target screen resolution is 1024x768. SWF A

RE: [Flashcoders] Missing Pixels???

2006-06-06 Thread Bernard Visscher
Does the position of the swf sit on half pixels? If so, try rounding the position to whole pixels. This could help the breaking of small lines and fonts. Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Loren R. Elks Verzonden: dinsdag 6 juni 2006

[Flashcoders] Grouped List Box Component

2006-06-06 Thread eric dolecki
Has anyone created a grouped list box component - where items are grouped visually (like with a subtle box around the grouped items) - if not, I am in the process of rolling my own already anyway. - e.dolecki ___ Flashcoders@chattyfig.figleaf.com To

RE: [Flashcoders] Flash and pocket pc

2006-06-06 Thread Dave Watts
Hi there, does anyone know about any alternatives to Zinc as wrapper for pocket pc? The reason I ask is because I can't achieve the correct screen resolution with Zinc. If I load the swf in explorer I get 480x640 if I use Zinc I only get 240x320. http://www.antmobile.com/ I haven't done

RE: [Flashcoders] Flash and pocket pc

2006-06-06 Thread Pedro Furtado
Hi, Thx, I've also tested with ant but it's even worse :( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Watts Sent: terça-feira, 6 de Junho de 2006 15:39 To: Flashcoders mailing list Subject: RE: [Flashcoders] Flash and pocket pc Hi there, does

[Flashcoders] Wierd Problem with ftp and flash

2006-06-06 Thread Tom Haschenburger
So, I uploaded my flash file using Homesite and it didn't work live unless I uploaded a compiled version for flash player 8. Well I needed flash player 7 compatibility. After many bizarre attempts and hours to get it to work by changing publishing settings...no progress. Finally, I decided to use

Re: [Flashcoders] Wierd Problem with ftp and flash

2006-06-06 Thread Jim Berkey
If a flash 8 swf uploaded properly (binary), then the v.7 swf probably would have uploaded binary also, I would think - most servers want 'passive transfer' used, you might check that setting. *** REPLY SEPARATOR *** On 6/6/2006 at 9:29 AM Tom Haschenburger wrote: So, I

[Flashcoders] amfphp NetConnection.Connect.Failed

2006-06-06 Thread Sam
Hi, Are there issues between flash player 7 8, When I try to connect using player 7 it works, when trying connect with p[layer 8 it fails. Any Ideas why this would be? Thanks. Sam ___ Flashcoders@chattyfig.figleaf.com To change your subscription

RE: [Flashcoders] Wierd Problem with ftp and flash

2006-06-06 Thread André Goliath
I hardly doubt that the SWF version had any effect on the FTP transfer. SWFs needed to be transfered in binary mode. Depending on your Internet Connection/Firewall/Server settings you´d need to use passive mode, too. Have you checked if the file was actually transfered correctly, e.g. with a md5

Re: [Flashcoders] amfphp NetConnection.Connect.Failed

2006-06-06 Thread Mike Boutin
Does your service class load properly with no errors in the amfphp Service Browser? can you post some code? Mike Sam wrote: Hi, Are there issues between flash player 7 8, When I try to connect using player 7 it works, when trying connect with p[layer 8 it fails. Any Ideas why this would

RE: [Flashcoders] Wierd Problem with ftp and flash

2006-06-06 Thread Tom Haschenburger
You know I can't say for sure, I'll check that out. Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of André Goliath Sent: Tuesday, June 06, 2006 9:57 AM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Wierd Problem with

Re: [Flashcoders] Flex 2.0 and database

2006-06-06 Thread Nick Weekes
You can if you use the appropriate middleware (php/asp.net/Flex Data Services etc). Head on over to http://labs.adobe.com/flexproductline/ for details on flex and data services, and a better newsgroup for flex queries is Flexcoders (register at www.flexcoders.org). Cheers, Nick Ferran

Re: [Flashcoders] Flex 2.0 and database

2006-06-06 Thread Van Phan
Unsubsribe. - Original Message - From: Nick Weekes [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, June 06, 2006 10:32 AM Subject: Re: [Flashcoders] Flex 2.0 and database You can if you use the appropriate middleware (php/asp.net/Flex

[Flashcoders] mp3 play back being sped up

2006-06-06 Thread Paul Vilevac
Hi; I am converting a 8khz 8bit mono wav into a 128 vbr bitrate mp3 using lame. When played within flash it is accelarated, sounding a lot like alvin and the chipmunks. Is there a minimum for the sampling and bit rates for mp3s to be played in flash? We care most about size but need reasonable

[Flashcoders] scrollPane

2006-06-06 Thread eric dolecki
I have a scrollPane inside an accordion - and I'm trying to build up a mc with UI and have it placed inside the scrollPane... I used to do this in the past, but I forgot how exactly... some of the code: child2.genres_sp.contentPath = emptyHolder; // works no problem var mc =

Re: [Flashcoders] mp3 play back being sped up

2006-06-06 Thread Mike Britton
The sample rate shopuld be 44.1Khz. You may need to resample your audio before you create the mp3. I've also had problems using variable bitrate. hth, Mike Britton ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

RE: [Flashcoders] Key functions for Accessibility

2006-06-06 Thread Andrew Kirkpatrick
Mousekeys should work fine, the main problem is that you can't lean on this feature exclusively for keyboard access in your application. If you enable drag-and-drop functionality in your application the right way handle keyboard access is to implement keystrokes to create an equivalent keyboard

Re: [Flashcoders] mp3 play back being sped up

2006-06-06 Thread Marc Hoffman
Flash correctly reads sound files at 44.1 kHz, 22050 Hz, 11025 Hz, and 5512.5 Hz (commonly referred to as 5kHz). Note these are all divisions by 2 of the higher rate. Any other rates will be read as one of these rates. That's why 8kHz is being read as 11025 Hz, which of course is a lot

Re: [Flashcoders] amfphp NetConnection.Connect.Failed

2006-06-06 Thread Sam
Hi, Yes the service works fine in the Service Browser. Opening the swf in SAFlashPlayer 7 the service connects SAFlashPlayer 8 I get a connection failure On Jun 6, 2006, at 12:01 PM, Mike Boutin wrote: Does your service class load properly with no errors in the amfphp Service Browser? can

Re: [Flashcoders] amfphp NetConnection.Connect.Failed

2006-06-06 Thread Mike Boutin
Hmm odd. Can you post an example of your connection script? Mike Sam wrote: Hi, Yes the service works fine in the Service Browser. Opening the swf in SAFlashPlayer 7 the service connects SAFlashPlayer 8 I get a connection failure On Jun 6, 2006, at 12:01 PM, Mike Boutin wrote: Does your

Re: [Flashcoders] Palm OS Blazer Flash Plugin

2006-06-06 Thread Andy Makely
On 6/2/06, Lane Good [EMAIL PROTECTED] wrote: Does anyone have any info on a Flash 8 player plugin for Palm OS Blazer 4.3? The only true Flash Player I've ever seen on a Palm was the one embedded in the Sony Clie devices a few years back. I don't believe that there has ever been an official

Re: [Flashcoders] scrollPane

2006-06-06 Thread janosch
User scrollPane.content instead of scrollPane.contentPath to get the content-MovieClip. Janosch eric dolecki schrieb: I have a scrollPane inside an accordion - and I'm trying to build up a mc with UI and have it placed inside the scrollPane... I used to do this in the past, but I forgot

[Flashcoders] isLivePreview Momentarily Undefined

2006-06-06 Thread John laPlante
I recently had a problem that I thought would be pertinent to the FlashCoders group. Thanks to JesterXL for posting about isLivePreview and LivePreview a topic which sorely needs more documentation. It's great if it 'just works.' I have an app that includes a component with a xml socket

[Flashcoders] Flash 8 Serverside Flv Encoding Streaming Server

2006-06-06 Thread neve_capricorn
Hi all, iam located in germany and iam not so an professional flasher then some guys here in the mailing-list. I hope you can give me some support. My company is looking for Flash 8 Serverside Flv Encoding and a End Flash Streaming Solution. I only saw Flash 7 Serverside Encoding (like what

[Flashcoders] Flash XML: Creating a CDATA text node?

2006-06-06 Thread Rifled Cloaca
Flashcoders, I know it's possible to read from a CDATA tag in Flash... but is it possible to create a CDATA text node via Actionscript? Thanks in advance, -g ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

RE: [Flashcoders] Key functions for Accessibility

2006-06-06 Thread Michael A. Jordan
Hi, It's all about managing state. Check out http://www.eduplace.com/kids/sv/books/content/wordsort/ for a good example of what can be done to add keyboard support to a drag and drop interaction. Cheers, -- Michael -Original Message- From: James Marsden [mailto:[EMAIL PROTECTED]

Re: [Flashcoders] Flash XML: Creating a CDATA text node?

2006-06-06 Thread Ryan Matsikas
The simple answer is: no. But you can build an XML string with CDATA and write the file or send it to a server with CDATA tags in tact. On 6/6/06, Rifled Cloaca [EMAIL PROTECTED] wrote: Flashcoders, I know it's possible to read from a CDATA tag in Flash... but is it possible to create a

[Flashcoders] Fun

2006-06-06 Thread Patrick Matte
This is fun, check it out. http://abum.com/file/shadow/animations/17632.swf ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

Re: [Flashcoders] Flash XML: Creating a CDATA text node?

2006-06-06 Thread Marlon Harrison
Is using the escape() function out of the question for your application? On 6/6/06, Ryan Matsikas [EMAIL PROTECTED] wrote: The simple answer is: no. But you can build an XML string with CDATA and write the file or send it to a server with CDATA tags in tact. On 6/6/06, Rifled Cloaca [EMAIL

[Flashcoders] How do real developers do key handling?

2006-06-06 Thread black59mga
How do real actionscript developers do key handling? If you have several (like 10) apps that are loaded into MCs in 'Main.swf'... What's a good way to code the key handling? Right now I'm drowning in multiple key.GetCode() switch statements that all live in my 'Main.as'. How do smart people do

[Flashcoders] Decoding xml text w/no CDATA allowed

2006-06-06 Thread Merrill, Jason
Is there an Actionscript 2.0 or Xpath equivalent to Javascript and Actionscript 3.0's decode(theStringWithquot;Specialquot;Characters); I am receiving an XML string from a webservice created by a .NET developer - the text node that comes to me as: item This is the quot;String I want in

[Flashcoders] Dynamically loading an SWF into a movie clip

2006-06-06 Thread John Conta
Hey all, This is my first post. I'm John. I've been playing with Flash for a few years now, and after getting a gig, I actually have to follow through with these ideas for once. Here's my situation, which consists of two problems: 1. I completed a movie with some pretty intense

RE: [Flashcoders] How do real developers do key handling?

2006-06-06 Thread Kevin Aebig
Perhaps if you told us what you're trying to accomplish, we could offer suggestions around it, but as far as catching specific keys, I'm pretty sure you're doing it the only way possible. !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of black59mga

RE: [Flashcoders] How do real developers do key handling?

2006-06-06 Thread black59mga
I have 10 apps that will controlled with a TV remote control (no mouse). There are only 12 keys on the remote, so the app that has focus will will have to do very different things with a given key press, depending on context. A java dev. friend suggested an approach using a hashMap, but we

RE: [Flashcoders] How do real developers do key handling?

2006-06-06 Thread Kevin Aebig
Well the code that your friend is suggesting is pretty straightforward and you could port it over to AS2 if you wanted. Instead of a hashMap, why not just use an associative array? I'm pretty sure that I've seen a hash class ripping around from either Brandan Hall or Samuel Wan based off of an

Re: [Flashcoders] Decoding xml text w/no CDATA allowed

2006-06-06 Thread Jim Cheng
Merrill, Jason wrote: Is there an Actionscript 2.0 or Xpath equivalent to Javascript and Actionscript 3.0's decode(theStringWithquot;Specialquot;Characters); Hey Jason, I've run into the same issue about a month ago with XML documents that a client had generated from their database,

[Flashcoders] 3GP to flv

2006-06-06 Thread Ian Tilley
Hi Folks Has anybody come across a server side solution to convert 3GP videos to FLV? Thanks in advance Ian IAN TILLEY SENIOR FLASH DEVELOPER HYRO : CREATIVE BUSINESS SOLUTIONS Phone: +61 2 9215 4222 Direct: +61 2 9215 4233 Fax: +61 2 9212 4811

Re: [Flashcoders] How do real developers do key handling?

2006-06-06 Thread Bart Wttewaall
The open-source Vegas framework at osflash.org makes use of a hashmap. Since every Object extends of CoreObject, a hashcode is added to every object. A nice solution, I think. static private var _initHashCode:Boolean = HashCode.initialize(CoreObject.prototype) ; 2006/6/7, Kevin Aebig [EMAIL

Re: [Flashcoders] How do real developers do key handling?

2006-06-06 Thread Scott Hyndman
Not exactly a real hascode though. In Java for example, two distinct yet identical (in composition) objects will result in the same hashcode. In Vegas, the hashes will be different because the number is generated incrementally. Their map implementation is pretty strange as well and does not

[Flashcoders] convert FLA to mx2004 utility

2006-06-06 Thread Mick G
Does anyone know if there is any batch utility out there to convert/downsave Flash 8 FLAs to Flash MX2004. This is for someone without Flash 8. I googled and had a look on the Adobe site with no luck. ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] convert FLA to mx2004 utility

2006-06-06 Thread neve_capricorn
open the fla in flash 8 then File-saveAs Filetype- select Flash MX 2004. hope that is what you are looking for. regards tom - Original Message - From: Mick G [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, June 07, 2006 2:36 AM

Re: [Flashcoders] convert FLA to mx2004 utility

2006-06-06 Thread Mick G
Bing-bong Error - try again! Re-read my email :) - No Flash 8 - Batch utility to convert multiple files On 6/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: open the fla in flash 8 then File-saveAs Filetype- select Flash MX 2004. hope that is what you are looking for. regards tom -

Re: [Flashcoders] convert FLA to mx2004 utility

2006-06-06 Thread Marc Hoffman
I know you don't have Flash 8, but if this is a limited-time project you might use the 30-day trial version. You might be able to find or develop an extension to batch save to Flash MX 2004. When you do it manually from Flash 8, there's a dialog that alerts you to any functionality that will

Re: [Flashcoders] convert FLA to mx2004 utility

2006-06-06 Thread Mick G
I have options of using Flash 8 - just thought someone might have built a util. I have about 20 files to convert, not a huge amount but It's just something I get asked to do regularly and it would be handy to point clients to it that don't have Flash 8. On 6/7/06, Marc Hoffman [EMAIL

[Flashcoders] Red5 Flash Server Video Tutorials

2006-06-06 Thread Robert Taylor
I put out some video tutorials on Red5 to help anyone struggling and/or interested in getting started. There are currently 21 videos available from beginning to end on building your first Red5 application. You can view them here: http://www.flashextensions.com/index.php?page=free. More are to

RE: [Flashcoders] Red5 Flash Server Video Tutorials

2006-06-06 Thread Robert Taylor
The link didn't come out correct. Let's try that again. http://www.flashextensions.com/index.php?page=free -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Taylor Sent: Tuesday, June 06, 2006 9:22 PM To: flashcoders@chattyfig.figleaf.com Subject:

Re: [Flashcoders] 3GP to flv

2006-06-06 Thread Abdul Qabiz
FFMPEG http://ffmpeg.mplayerhq.hu/ On 6/7/06, Ian Tilley [EMAIL PROTECTED] wrote: Hi Folks Has anybody come across a server side solution to convert 3GP videos to FLV? Thanks in advance Ian IAN TILLEY SENIOR FLASH DEVELOPER HYRO : CREATIVE BUSINESS SOLUTIONS Phone:

Re: [Flashcoders] Flash 8 Serverside Flv Encoding Streaming Server

2006-06-06 Thread Abdul Qabiz
It looks goodThanks for posting the link. -abdul On 6/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, iam located in germany and iam not so an professional flasher then some guys here in the mailing-list. I hope you can give me some support. My company is looking for Flash 8

RE: [Flashcoders] 3GP to flv

2006-06-06 Thread Ian Tilley
Thanks Abdul. I've been trying to get FFMpeg but the files aren't there. Looks like they've moved the site recently. They're not in sourceforge from what I can see. t. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Wednesday, 7