[Flashcoders] Re: How to set fontSize of TextInput/Label ?

2006-06-09 Thread Stefan Thurnherr
solved. But I can't tell you why, it just works now. Seems that sleeping made the AS compiler reconsider my instructions ;-) On 6/8/06, Stefan Thurnherr [EMAIL PROTECTED] wrote: Hi all, For an application that I am developing I have subclassed those UI components that I'll most commonly use

[Flashcoders] how to decode base64 data and display in flash

2006-06-09 Thread Santhakumar K
Flashcoders, In my application I received image data inform of base64. I have to decode that data and display in flash using actionscript 2.0. I cannot able to do it. I try to to use this class http://ostermiller.org/*Base64.ashttp://ostermiller.org/Base64.as * but it dosent works. Thanks,

Re: [Flashcoders] Text link on hover

2006-06-09 Thread elibol
I wish you were wrong too =[ Thanks though Mick M. On 6/8/06, Jim Kremens [EMAIL PROTECTED] wrote: Wait, I know you can get hovers, but can you catch the hover 'event' and use it to, for example, call another function? I think that was his question, and as far as I know, there is no

[Flashcoders] File Upload using Flash7 and servlets

2006-06-09 Thread Santhakumar K
Flashcoders, I have to upload images from PC to server using flash7 and servlets. Is it possible to do it. I can use Flash8 for filebrowser. But only Flashpayer 7 is available for linux which doesnt support FileReference class. Thanks, --Santhakumar K Chennai India

Re: [Flashcoders] how to decode base64 data and display in flash

2006-06-09 Thread eka
hello :) In AS1 or AS2 ... with flash 8 or ... you can't use directly Base64 picture :) Only with AS3 you can with Binary objects ! If you want transform base64 data ... you must use PHP or other and after load picture with MovieClipLoader.loadClip or MovieClip.loadMovie methods. EKA+ :)

Re: [Flashcoders] File Upload using Flash7 and servlets

2006-06-09 Thread Tom Rhodes
you'll have to use a popup, iframe or other page and some php or other server side script to handle the upload... Santhakumar K wrote: Flashcoders, I have to upload images from PC to server using flash7 and servlets. Is it possible to do it. I can use Flash8 for filebrowser. But only

Re: [Flashcoders] Regarding ascb Proxy

2006-06-09 Thread mike cann
Okay, i havent ever looked at the proxy class but i think i can take a stab at answering some of your questions, others can probably back me up / correct me on any errors. 1. Yes it appears he could have used slice, perhaps using the for loop is quicker? 2. There are occasions when you want to

Re: [Flashcoders] Re: protecting maps in Flash

2006-06-09 Thread Josh Santangelo
I've done something like this in the past: if(_root._url.indexOf('file://') != -1 || _root._url.indexOf ('yourdomain.com') == -1) { _visible = false; } Sure you can still decompile it, but depending on what's in the SWF, that's

[Flashcoders] titled border around radio buttons?

2006-06-09 Thread Stefan Thurnherr
I'd like to create a titled border around a variable number of radio buttons. My idea is to create a MyTitledBorder extends RectBorder which exposes methods allowing me to add/iterate over/remove the RadioButton instances that the MyTitledBorder instance currently displays. A draw method would

Re: [Flashcoders] color tracking w/webcam

2006-06-09 Thread Mick G
http://www.adobe.com/devnet/flash/articles/webcam_motion.html On 6/9/06, Ian Tilley [EMAIL PROTECTED] wrote: Hi Weyert I did something a year or so ago using webcamxtra Xtra for Director and Flash 7. I'd like to do it again in Flash 8 at some point as I think bitmap caching would improve

[Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread matt zb
Hi folks, we have a job opportunity. Littleloud are looking for a technical developer who can demonstrate enthusiasm and skills in delivering high-end entertainment content using Flash. The post will require a keen interest in game design and creative interface development. Although not a key

Re: [Flashcoders] Text link on hover

2006-06-09 Thread David Bellerive
You wish as been granted :) You can call another actionscript function from within a dynamic textfield by setting it's html property to true and using asfunction within the anchor tag like this : tfMyTextField.html = true; tfMyTextField.htmlText = a href=\asfunction:fMyFunction,sMyParameter\/a;

[Flashcoders] flv error - 1005: Invalid xml

2006-06-09 Thread Magnus Askenbäck
Hi all, The following error was thrown when trying to load a FLV via the FLVPlayback component: 1005: Invalid xml: URL: http://mydomain/download.ashx?id=72 http://uk-assetapptest/LearnUpload/download.ashx?id=72 No root node found; if file is an flv it must have .flv extension The file

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Lee McColl-Sylvester
How much is the position providing and what benefits? Also, where are you located? Lee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of matt zb Sent: 09 June 2006 13:11 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Littleloud: Flash

Re: [Flashcoders] Text link on hover

2006-06-09 Thread Scott Hyndman
But that's a click David, not a hover. Scott On 6/9/06, David Bellerive [EMAIL PROTECTED] wrote: You wish as been granted :) You can call another actionscript function from within a dynamic textfield by setting it's html property to true and using asfunction within the anchor tag like this :

[Flashcoders] Re: protecting SWFs

2006-06-09 Thread Naz
As Tom explained, If your app loads external swf's you cannot protect them, you can only make them a little more difficult to access. Well, technically, there is a way... Fragment the assets in such a way that if a decompiler is used, the user ends up with unusable map fragments instead of

[Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread Jeff Jonez
I'm wondering if, when I use the Delegate class to set the scope of an event handler, is it possible to reference the previous scope? My problem is this... I have a class which implements a menu. Each menu item is a movieclip and I add new menu items by calling a function called addChild like

Re: [Flashcoders] Regarding ascb Proxy

2006-06-09 Thread erixtekila
Hi, I have slightly modify the Joey's version. I use also the Array.slice which is faster than the loop. For the last arguments, it's a mean to get a reference added as a end param to the callback handler. Easier to dereference after. Note the return at the end of the functions. French

RE: [Flashcoders] Re: protecting SWFs

2006-06-09 Thread Mike Mountain
How much control over the map end do you have? Are they vector or raster? Are you using Flash 8? 2 Scenarios for you if you have control of the map content: Vector maps: Produce in SVG then use an SVG to Flash drawing API routine to draw the maps in from loaded XML files. Raster maps with

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread John Mark Hawley
You can use com.dynamicflash.utils.Delegate instead of mx.utils.Delegate and pass the myNewMc clip as an argument to onMenuRelease. person13's Proxy class can also be used similarly. -mark hawley Jeff Jonez wrote: I'm wondering if, when I use the Delegate class to set the scope of an event

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread Morten Barklund
Hi Jeff So, when I get to the onRelease event handler, is there a way to reference the scope of the MC that the event hander is attached to? Or, because I used Delegate has the mc scope been lost and I need to somehow keep track of that by, perhaps setting a focus variable or something... If

Re: [Flashcoders] Text link on hover

2006-06-09 Thread elibol
Thank you for the reply David, I appreciate it. On 6/9/06, David Bellerive [EMAIL PROTECTED] wrote: You wish as been granted :) You can call another actionscript function from within a dynamic textfield by setting it's html property to true and using asfunction within the anchor tag like this

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread Matt Muller
can you not add your children in a loop? then pass in i, set i as an index prop of your clip, push all clips into an array and use the index to reference the clip in the array On 6/9/06, Morten Barklund [EMAIL PROTECTED] wrote: Hi Jeff So, when I get to the onRelease event handler, is there

[Flashcoders] FLVplayback - Please Help

2006-06-09 Thread Lieven Cardoen
I'm having problems with the FLVPlayback. When I give it a url that doesn't exist, the state changes to CONNECTION_ERROR. But after that I don't seem to be able to load a new url into the FLVplayback-component. In draw() all components are created, in update, components are updated.

[Flashcoders] Re: Text link on hover

2006-06-09 Thread Jim Kremens
not really... we were discussing hovers, not clicks... On 6/9/06, David Bellerive [EMAIL PROTECTED] wrote: You wish as been granted :) You can call another actionscript function from within a dynamic textfield by setting it's html property to true and using asfunction within the anchor tag

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread Jeff Jonez
This is exactly what I was looking for, cheers Mark and Morten! myNewMc.onRelease = Delegate( this, onMenuRelease, myNewMc ); Previously, I kept a reference to my class in mc variable, which wasn't so bad codewise... not sure if there are other side effects to doing that. Re: Matt can you

[Flashcoders] Validating Zip Code for Tax Purposes

2006-06-09 Thread Digital Rust
Hi, everyone I'm building an ecommerce site and need to calculate state tax for California based upon user input in a zip code field. Has anyone done this before? Would you possibly have some example code or point me in the right direction? Thanks, Dave

RE: [Flashcoders] Validating Zip Code for Tax Purposes

2006-06-09 Thread Doug Coning
Never done it before, but have you considered finding a Web Service provider that does it for you and all you have to do is pass it the variables? Here's one I found quickly doing a google search: http://www.strikeiron.com/ProductDetail.aspx?p=105 By using a web service provider to manage this

[Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Mike Anderson
Hello All, I have a very intense problem, that must be addressed ASAP - our users are getting really angry :( We have a typical AS 2.0 Flash Application to view maps - and we are using Remoting w/ColdFusion in order to send our data back and forth. For only like 5% of the users, the application

RE: [Flashcoders] Validating Zip Code for Tax Purposes

2006-06-09 Thread Mike Anderson
And better yet, find 2-3 unique Web Service providers - That way, in case one website is down, you can write code that will retrieve data from the 2nd provider, in case the 1st provider times out. I like doing things myself too, and having total control over everything - but in cases like this,

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Robert Chyko
Does ColdFusion have all available patches installed? There was a bug with the first Remoting call in CF7 which was fixed by the first updater. That is the first thing that comes to mind. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Merrill, Jason
Do the 5% have the same http: browsing capabilities as the 95%? I had a similar issue and found out because I was new here, and even though I could browse to most web sites, unknown to me my http access was somewhat restricted until I was granted full, regular access. Are there any possible http

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread matt zb
The package is negotiable. We're located in Brighton UK, but you really shouldn't have had any problem finding that out by looking at our website. How much is the position providing and what benefits? Also, where are you located? Lee -Original Message- From: [EMAIL

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Mike Anderson
Yes, it's the SAME 5% of the users - So there must be something in common with all these people. Please keep those comments coming :) I need all the help I can get right now! Many thanks! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill,

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Merrill, Jason
but you really shouldn't have had any problem finding that out by looking at our website. And these are the nice people you want to work for. :) Jason Merrill Bank of America Learning Technology Solutions ___ Flashcoders@chattyfig.figleaf.com

[Flashcoders] Flex List?

2006-06-09 Thread Dan Thatcher
I asked the question end of day yesterday about converting javascript (AJAX) to Flex. It dawned on me that I should probably really be asking that question on a Flex Listserve. Is there one? Someone mentioned one the other day, but I can't for the life of me find the message that referenced it.

RE: [Flashcoders] Flex List?

2006-06-09 Thread Jim Robson
http://www.flexcoders.org http://groups.yahoo.com/group/flexcoders -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Thatcher Sent: Friday, June 09, 2006 12:38 PM To: 'Flashcoders mailing list' Subject: [Flashcoders] Flex List? I asked the question

RE: [Flashcoders] Flex List?

2006-06-09 Thread Merrill, Jason
Yup: http://groups.yahoo.com/group/flexcoders/ Jason Merrill Bank of America Learning Technology Solutions -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Dan Thatcher Sent: Friday, June 09, 2006 12:38 PM To: 'Flashcoders

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Jim Robson
I don't know whether this applies to your situation but... We had a similar issue that was caused by anomalies in the data (believe it or not). It was a billing system built in Flash with a ColdFusion middle tier and a SQL Server backend. When one particular user pulled up certain accounts, the

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Doug Coning
Jim, Curious, did the individual that had the problem have the same version of Flash Player? I'm sure you checked that out, but that is a curious problem... Doug Coning Senior Web Development Programmer FORUM Solutions, LLC -Original Message- From: [EMAIL PROTECTED]

RE: [Flashcoders] Flash SWF Loading fine, but Remoting hangs...

2006-06-09 Thread Jim Robson
Yes, her system was ostensibly identical to other systems in the same billing department: same hardware, same OS / version, same browser / version, same Flash player / version. The only other time I remember an incident similar to yours was when we built an app using the WebServiceConnector

[Flashcoders] Whats the best tooltip component

2006-06-09 Thread Karina Steffens
Hi Weyert, I posted a fully customizable tooltip component on my blog, http://www.neo-archaic.net/blog/2006/05/09/tooltip.htm, complete with a demo on how to use it. I hope this is what you were looking for. Karina Karina Steffens |

Re: [Flashcoders] Whats the best tooltip component (actionsciptable)

2006-06-09 Thread Bernard Poulin
As an ActionScript programmer, I personally liked this one: http://www.neo-archaic.net/blog/2006/05/09/tooltip.htmSimple and effective: No .mxp, no .fla, no super-complex code to setup, just a single .as file to drop in. Additionally, it seems lots of people are building super-fancy

Re: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Marc Hoffman
Hi Karina, This has some nice features but some problems viewing the demo. In FireFox it doesn't show at all. In I.E. 6 it doesn't show and I get a Flash required message. I was able to view it only by looking at the source and opening the swf directly. It would be nice if the tooltip width

[Flashcoders] Duplicate linkage id weirdness

2006-06-09 Thread ben farrell
So I had some weirdness publishing a file that I just got back from a client who had someone swap an entire new graphic interface, but left my code intact. I had some movieclips with some linkage ID, and they had a class associated with them that I wrote to make them act like buttons. Also,

Re: [Flashcoders] Text link on hover

2006-06-09 Thread elibol
Hi Greg, Yea, really is funny... Were your textfields multiline? I've tried the img tag solution, the problem is that it does not snuggle between text, the tag must be either left or right justified so it's never where it should be. So far I've built a function that gets the x/y ( relative to

[Flashcoders] Flash + XML processing instructions

2006-06-09 Thread Corey Knafelz
I have to use a product called Documentum to publish documents to our webserver. I'm having an issue with it inserting processing instructions to my xml document as show below: pic image ?dctmEditor selectedPath=/wcs_images/graphics/adventures/photos/gal_00.jpg ? ?dctmLink

Re: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Bernard Poulin
Note: the Firefox issue is a problem in the Demo html page. Not a problem in the tooltip itself of course. About the Width: The width parameter should be named maxwidth. It really does take the size of the text in consideration when computing the width. It simply max it out to the specified

RE: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Karina Steffens
Hi Mark, Thanks for letting me know about the Firefox bug, it seems I've overcooked my Satay, and forgot to check it... Don't know why it doesn't show in IE 6, I'm using the ie 7 beta at the moment. It should be fixed now for Firefox. I just had someone with ie6 take a look, and she had no

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Ettwein, Josh
Heh.. That's exactly what I was just thinking. Wow...where do I sign up? :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 09, 2006 9:28 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] Littleloud: Flash Developer Position but you

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Nick Weekes
I dont see the problem with them keeping the job email short, and saying get more info from our website? Ettwein, Josh wrote: Heh.. That's exactly what I was just thinking. Wow...where do I sign up? :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Robert Chyko
I think it was the tone... That's online communication for ya. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Weekes Sent: Friday, June 09, 2006 2:54 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Littleloud: Flash Developer Position

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread hank williams
Its all about tone. Hank On 6/9/06, Nick Weekes [EMAIL PROTECTED] wrote: I dont see the problem with them keeping the job email short, and saying get more info from our website? Ettwein, Josh wrote: Heh.. That's exactly what I was just thinking. Wow...where do I sign up? :) -Original

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread James Booth
Maybe he just forgot to put the ;) At the end. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Friday, June 09, 2006 3:06 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Littleloud: Flash Developer Position Its all

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread mike cann
ummm correct me if im wrong but onRelease you are passed an event object that contains the target of the event? so: funciton addChild( txt:String ):Void { // make new mc, with a text field and set the txt myNewMc.onRelease = Delegate( this, onMenuRelease ); { function onMenuRelease(

RE: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Karina Steffens
Thanks Bernard, I was just about to reply to that. You're right about the parameter naming, but I think it might be too late to do that without breaking backwards compatibility with scripts that already use that. Unless I keep both? Karina -Original Message- From: Bernard Poulin

RE: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Karina Steffens
scripts that already use that. Unless I keep both? ... Or maybe I should increase the default width? It's currently 200, but maybe 300 would be better? It can always be changed programmatically... ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Michael Bedar
I think people should try to get the location in there, if they are looking for someone on-site.. it would for instance be a long commute for me... On Jun 9, 2006, at 3:16 PM, James Booth wrote: Maybe he just forgot to put the ;) At the end. -Original Message- From: [EMAIL

Re: [Flashcoders] Is Object scope lost when using Delegate?

2006-06-09 Thread Julien Vignali
I'm afraid mike but you're wrong. The MovieClip.onRelease handler doesn't pass any parameter... From the help files : MovieClip.onRelease = function() {} What Jeff could do is using a Delegate alternative class that allows him to pass parameters to the handler, but he can also link his button

[Flashcoders] mmog server

2006-06-09 Thread Mathieu Savard
Hello, We about to start the production of a MMOG using flash. I'd like to know what type of server you would be using. So far we've been using flashcomm for multi user game but Smartfox seems to be another solution too. I'd like to have your input on this. Thank you, Mathieu

RE: [Flashcoders] Whats the best tooltip component

2006-06-09 Thread Marc Hoffman
Wow, I am sorry -- since reloading my entire computer a month ago, I never updated the Flash player for I.E. I've taken to using FF so neglected that point. I'm sure that was the problem. Marc At 11:44 AM 6/9/2006, you wrote: Are you sure your IE is updated for Flash? Karina

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread John Grden
lol tone, yes - it was rude. But that's not the first thing that hit my mind. The first thing that hit my mind was: hrrmm, flash designer/developer/css/dhtml specialist with network admin background with knowledge of Windows Server, LAN, DNS, IIS + FTP Admin sooo, you wanna get someone to do

[Flashcoders] Flashants Ice Player/Projector

2006-06-09 Thread Merrill, Jason
Does anyone know anything about Flashants Ice Projector/Player and if there are functions that would hang the Flash 8 and also cause the CPU to go to 100% - the customer states it doesn't happen with Flash 7 - happens with the Flash 8 player only apparently. Thanks. Jason Merrill Bank of America

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Dave Watts
Subject: Re: [Flashcoders] Littleloud: Flash Developer Position This thread is now OT. Please don't prolong it. Thanks! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Aaron Buchanan
Lol, I think I took that job, sigh. I left a long time ago though, heh. On 6/9/06 12:48 PM, John Grden [EMAIL PROTECTED] wrote: Sorry, if you hadn't been rude in your reply, I'd have let it go. ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Aaron Buchanan
Sorry, new here. What's ot? Thx dave! On 6/9/06 12:57 PM, Dave Watts [EMAIL PROTECTED] wrote: This thread is now OT. Please don't prolong it. Thanks! ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Merrill, Jason
Sorry, new here. What's ot? Asking what is OT. :) OT means off=topic Jason Merrill Bank of America Learning Technology Solutions -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Aaron Buchanan Sent: Friday, June 09, 2006 4:14

[Flashcoders] about the MovieClipLoader class

2006-06-09 Thread Geoffrey Holland
Hello, Can someone please explain what I seem to be quirky behavior of the MCL class which has prevented me from using it until I read about it on another post: When loading an image or swf into a mc, using the MCL class, Why does this fail (not only fail, but renders the mc

Re: [Flashcoders] Littleloud: Flash Developer Position

2006-06-09 Thread Aaron Buchanan
Such a noob.. sigh On 6/9/06 1:23 PM, Merrill, Jason [EMAIL PROTECTED] wrote: Sorry, new here. What's ot? Asking what is OT. :) OT means off=topic Jason Merrill Bank of America Learning Technology Solutions -Original Message- From: [EMAIL PROTECTED]

Re: [Flashcoders] about the MovieClipLoader class

2006-06-09 Thread elibol
onLoadComplete is called when the loading process is complete. onLoadInit is called when whatever has loaded is initialized and ready to use. The thing is that when a swf is finished loading, it takes one more frame to initialize. The main point is that until it initializes, the swf is not

[Flashcoders] Server app for video to swf conversion?

2006-06-09 Thread Arlo Jamrog
Hi all- I'm doing a user-upload based section of a site where the video they upload gets converted to a swf for approval on a backend. Can anyone point me toward a module or application that can do this? It's a linux server. Thanks! -a ___

RE: [Flashcoders] about the MovieClipLoader class

2006-06-09 Thread Geoffrey Holland
Aha, Thank you, I was under the impression that onLoadInit was on initializing the Loading process, not the mc itself. Makes total sense now. -Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of elibol Sent: Friday, June 09, 2006 4:01 PM To:

Re: [Flashcoders] Server app for video to swf conversion?

2006-06-09 Thread ::: curdiss
seems like there has been much talk about FFMEG for server side solutions. http://soenkerohde.com/tutorials/ffmpeg Best, Curt On 6/9/06, Arlo Jamrog [EMAIL PROTECTED] wrote: Hi all- I'm doing a user-upload based section of a site where the video they upload gets converted to a swf for

Re: [Flashcoders] Regarding ascb Proxy

2006-06-09 Thread js
Thank you for this excellent enhanced version erixtekila. Just read through the blog post on http://dynamicflash.com/ and it was also a good read. He actually updated the class if you didn't notice--you can find it here: http://dynamicflash.com/classes/Delegate.as erixtekila wrote: Hi, I

[Flashcoders] Flash and Javascript Interaction

2006-06-09 Thread Rick Root
I posted this to cf-talk but decided this was probably a better place to post it... I'm trying to play a flash movie with javascript. This *SHOULD* work but it does not. Can anyone tell me why? http://www.opensourcecf.com/cfopenchat/demo/door.html When you go there you'll hear the sound

[Flashcoders] Slowing down the action (problem with a pause)

2006-06-09 Thread Ville Walveranta
I have a piece of code (this is not in a movie but in a class file) that works fine: -- for (var idx = 0; idx graph_coordinates.length; idx++) { if (current_position graph_coordinates[idx][0] graph_coordinates[idx][0] end_point) {