Re: [Flashcoders] Yahoo! Maps Flash API

2006-06-15 Thread Diego Guidi
I have tried the component that you link, and the com.yahoo.maps.widgets.NavigatorWidget don't work! 2006/6/14, Mike Britton [EMAIL PROTECTED]: I'm getting started with the Yahoo! Flash API, and noticed their Maps mxp doesn't include com.yahoo.maps.widgets.NavigatorWidget. Looks like Yahoo!

Re: [Flashcoders] xls - xml mapping

2006-06-15 Thread MetaArt
Make a simple CMS, based on server-side language like PHP, and allow client to write its new content, leaving to PHP the job to write it in xml file... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php

Re: [Flashcoders] .swf's containing html's location

2006-06-15 Thread Aaron Buchanan
That's a cool way to do that. Unfortunately, I am unable to modify the embed, as it's automated by the ad serving application. Thanks though! Aaron On 6/14/06 10:46 PM, Rajat Paharia [EMAIL PROTECTED] wrote: Here's something I tried that might work if you have control over the code used to

Re: [Flashcoders] The Delegate class ...

2006-06-15 Thread Ian Thomas
On 6/15/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Alot of people complain that you can't pass parameters with delegate. Well you can, a multiple of ways, and if you structure your code with some forethought, you can have it pass params if you are delegating a function structured do so.

Re: [Flashcoders] The Delegate class ...

2006-06-15 Thread eka
Hello :) You can use my Delegate implementation too in VEGAS Framework : - http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/src/vegas/events/Delegate.as( vegas.events.Delegate class) - http://svn1.cvsdude.com/osflash/vegas/AS2/trunk/bin/test/vegas/events/(example with Delegate and Event Model

Re: [Flashcoders] Command line compile

2006-06-15 Thread Nicolas Cannasse
Scott Stacey: Yeah, seems crazy not to use mtasc, but unfortunately that's not my decision to make. If you need MTASC support, you can contract with my company. You'll have to spent some money and most likely we will not have anything to do since the compiler just works :) Nicolas

Re: [Flashcoders] Command line compile

2006-06-15 Thread Nicolas Cannasse
A couple notes about MTASC - First off its pretty strict. Your code has to be pretty solid, items have to be casted properly, variables cannot be redefined in the same scope, etc, or MTASC bitches at your fierce. Its not a bad thing in the long run, but something you should think about

[Flashcoders] camera detection

2006-06-15 Thread Mayur Bais
Hello all, I am trying to develop camera recording application. I was able to record the video and save it and play back again . But my problem is : it needs to show camera feed in video component by default, if user has already attached camera to his PC and NOT show the setting

Re: [Flashcoders] getting Google Video wmode=transparent to work

2006-06-15 Thread Paul Evans
On 15 Jun 2006, at 02:19, Barrett wrote: Flash stays on top of everything in a site, DHTML, Javascript, z- index layer order, everything, unless you set wmode to transparent, Unless you have a *visual* reason for wmode=transparent, you might try wmode=opaque. You should get the same logical

[Flashcoders] Class overloading question

2006-06-15 Thread Nik Derewianka
Hi All, Im trying to overload the Sound class to add my own features, it works fine for all the basic features, but what do i need to do with my class to pass through a parameter to the constructor of the superclass ? ie for the var x = new ExtendedSound(my_soundMC), what do i need to call in

[Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Lieven Cardoen
I've created a ComboBox. Strangely when I open the combobox, the field with selections goes under the other components...??? Any idea as why. Swapdepths doesn't solve it. Lieven lieven cardoen indiegroup interactive digital experience engelse wandeling 2 k18 b8500 kortrijk T +32

Re: [Flashcoders] Class overloading question

2006-06-15 Thread eka
hello :) in AS1 : _global.SuperSound = function ( mc ) { super (mc) ; } SuperSound.prototype.__proto__ = Sound.prototype ; // inherit in AS2 : class SuperSound extends Sound { // o Constructor function SuperSound( mc ) { super(mc) ; } } You can use super to

RE: [Flashcoders] Class overloading question

2006-06-15 Thread André Goliath
RTFM @ super() This will call the parent constructor with the parameters you pass to it. That should always be the first line in inherited classes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nik Derewianka Sent: Thursday, June 15, 2006 11:19 AM

RE: [Flashcoders] Class overloading question

2006-06-15 Thread André Goliath
Sorry, I ment That should always be the first line in constructors of inherited classes, not the first line of the class itself... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of André Goliath Sent: Thursday, June 15, 2006 12:38 PM To: 'Flashcoders

RE: [Flashcoders] Class overloading question

2006-06-15 Thread André Goliath
RTFM @ super() This will call the parent constructor with the parameters you pass to it. That should always be the first line in inherited classes. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nik Derewianka Sent: Thursday, June 15, 2006 11:19 AM

Re: [Flashcoders] Class overloading question

2006-06-15 Thread Nik Derewianka
Thanks all :) Regards, -- :: Nik Derewianka :: :: freelance director programmer :: ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

Re: [Flashcoders] xls - xml mapping

2006-06-15 Thread Ron Wheeler
If you give the client an OpenOffice spreadsheet, the data is already stored in XML and you may only need a minor transformation with XSLT to get it into a format that you want for for your flash backend. OpenOffice is free and looks a lot like Excel . If your client will only deal with Excel,

Re: [Flashcoders] camera detection

2006-06-15 Thread Mike Cobb
- Hello, If you right-click on the flash movie and check the remember box, this will stop the dialog appearing for that computer only. There is no way to stop the dialog box appearing unless a user does this - it's a security feature to stop us developers spying on people without their

[Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
Good Morning. I have a ComboBox on stage which is not behaving properly. When I pull down the list within the Combo the Halo surrounding the drop down list stays visible on stage also when I use the scrollbar to scroll down to a selection, the moment I move the mouse away from the scroll bar the

Re: [Flashcoders] xls - xml mapping

2006-06-15 Thread Scott Hyndman
What server-side language are you dealing with? If it's a .NET language, this kind of thing is very easy to accomplish. You can access the contents of excel spreadsheets in one of two ways. 1. There is a ADO.NET data provider called Microsoft Jet

[Flashcoders] Sharing fla over network

2006-06-15 Thread Kurt Dommermuth
Hello fellow flashers, I hope everyone is well! First, let me apologize. I know this topic must have been discussed many times before, but I simply can't find any info about it. I recently hired an assistant and we need to share and simultaneously work on .fla files over a local network.

[Flashcoders] Problem with AnimationPackage

2006-06-15 Thread Jan Schluenzen
Hi everyone! I'm currenty trying out Alex Uhlmann's AnimationPackage (http://www.alex-uhlmann.de/flash/animationpackage/) and I ran into a problem concerning the Animation class. This might be a bug but I'm currently guessing that I did something wrong somewhere along the way... So, I'm trying

RE: [Flashcoders] Command line compile

2006-06-15 Thread Merrill, Jason
Having said that, once I got it running through MTASC I went from a four and half minute compile time to 29 seconds. That made things so much easier :) I'm just curious - what kinds of projects are people working on that compiling takes 4 1/2 minutes? I use a lot of AS 2 classes I write for

RE: [Flashcoders] Accessing non-interface methods from an object ofan interface type

2006-06-15 Thread Mark Lapasa
Thanks EKA and JC for your answers. I -kinda- knew that was the answer but I wanted to know if there was another way. Casting/trantyping an abstract object down into one of a concrete type seems like to me very self-defeating to use abstractions as a data type. I might as well say var

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Zeh Fernando
I recently hired an assistant and we need to share and simultaneously work on .fla files over a local network. There must be tools for this, but a search on google didn't yield anything (must not be using the right terminology). There isn't. Only one people can work on a .FLA at a time. You

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Danny Kodicek
I recently hired an assistant and we need to share and simultaneously work on .fla files over a local network. There must be tools for this, but a search on google didn't yield anything (must not be using the right terminology). There isn't. Only one people can work on a .FLA at a time.

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Kurt Dommermuth
Makes sense. Thanks Zeh. Maybe you can tell me if there if there is any way to ensure that accessing fla files over the network is stable. I know in the past that flas have disappeared on me when working off a network drive. I'm guessing you'd say that I should duplicate whatever it is and

RE: [Flashcoders] Sharing fla over network

2006-06-15 Thread Merrill, Jason
Isn't is a better idea to have different people writing classes and then sharing those? You can use interfaces to make sure they are complying with the specs you establish for the project. Then just have one person compile the .fla. The people writing classes can compile their own .flas to test

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Ian Thomas
And if you're going to be working on a collection of different external .as files, it's always a good idea to look at using a versioning system such as Subversion/SVN - http://subversion.tigris.org Versioning systems aren't a great deal of help with binary files such as .flas, but are a great

Re: [Flashcoders] Accessing non-interface methods from an object ofan interface type

2006-06-15 Thread eka
Hello :) i forget ... you can transform your expression too with [] notation : import ConcreteClass; import Interface; var tmp:Interface = new ConcreteClass(); tmp[bar]() ; // works too EKA+ :) 2006/6/15, Mark Lapasa [EMAIL PROTECTED]: Thanks EKA and JC for your answers. I -kinda- knew

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Zeh Fernando
Makes sense. Thanks Zeh. Maybe you can tell me if there if there is any way to ensure that accessing fla files over the network is stable. I know in the past that flas have disappeared on me when working off a network drive. I'm guessing you'd say that I should duplicate whatever it is and

RE: [Flashcoders] Sharing fla over network

2006-06-15 Thread jim
If you can use some source control like SVN that might be what you are looking for. Its pretty easy to set up and will stop you writing over each others changes. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: 15 June 2006 15:02

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Geoff Stearns
that's not really accurate... you can have the flash inserted as the page loads and not have to activate it. the requirement is that it's written by an external script, and not invoked natively by the browser (and plain html). it doesn't matter if it's done onload or inline as the page is

RE: [Flashcoders] Accessing non-interface methods from an object ofaninterface type

2006-06-15 Thread Mark Lapasa
Thanks EKA! That'll work for me. Smells funny but I like it =) Thx Ian, the only thing I can think of as an argument is Marker Interfaces. Then again, I think I might just be using using interfaces the wrong way as I am trying to establish some form of polymorphism in trying to access both foo()

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread 8ball Developer
Hi Karina, (probably already answered question) Why does the javascript need to be external? Is there any solution to this problem that uses an internal javascript. Thanks in Advance. On 6/14/06, Karina Steffens [EMAIL PROTECTED] wrote: Hi Alec, You could try ObjectSwap on my blog -

Re: [Flashcoders] Accessing non-interface methods from an object ofaninterface type

2006-06-15 Thread Ian Thomas
On 6/15/06, Mark Lapasa [EMAIL PROTECTED] wrote: Thx Ian, the only thing I can think of as an argument is Marker Interfaces. Then again, I think I might just be using using interfaces the wrong way as I am trying to establish some form of polymorphism in trying to access both foo() and bar()

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Geoff Stearns
you have to use an external script because of the way the patent was worded.. by using an external script, you are somehow not infringing on it, so that's how the patch works. On Jun 15, 2006, at 11:09 AM, 8ball Developer wrote: Hi Karina, (probably already answered question) Why does

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Geoff Stearns
also i might as well take this opportunity to point everyone to SWFObject: http://blog.deconcept.com/swfobject/ it fixes all the eolas problems you are having, it's really easy to use, supports express install, does plugin detection and can provide alternate content, opens your wine

[Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Adrian Park
Hi List, What's the neatest way of accepting a single parameter with 2 possible types into a method and then working out what type of parameter has been passed? e.g. in pseudo code private function myMethod( i:Number/String ):Void { if ( i is a String ) { // do this } else if ( i is

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Daniel Cascais
you could try this: private function myMethod( i:Object ):Void On 6/15/06, Adrian Park [EMAIL PROTECTED] wrote: Hi List, What's the neatest way of accepting a single parameter with 2 possible types into a method and then working out what type of parameter has been passed? e.g. in pseudo code

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread eric dolecki
you could use 2 params... use String for one, Number for the other - and then use accordingly? On 6/15/06, Adrian Park [EMAIL PROTECTED] wrote: Hi List, What's the neatest way of accepting a single parameter with 2 possible types into a method and then working out what type of parameter has

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread eka
Hello :) you can try this example : private function _myMethod( args ):Void { var arg0 = arguments[0] ; switch (true) { case arg0 instanceof String : break ; case arg0 instanceof Number : break ; default

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Ian Thomas
Hi Adrian, I'd do it like this: private function myMethod(i:Object):Void { if (i instanceof String) { // do this } else if (i instanceof Number) { // do this } else { // report an error } } And, as you see, stick in an error condition - because by changing the input type to

RE: [Flashcoders] Yahoo! Maps Flash API

2006-06-15 Thread Caleb E. Brown
I had this exact same problem until I downloaded some of the samples from the reference manual. After that I was able to import the widgets correctly. I did notice that the parameters for the component were different in the sample from the component that I dragged straight from my component

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Geoff Stearns
there's a number of known issues with it... maybe this is the problem? http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4f91f9b8 i have a summary of all the issues related to the eolas stuff here: http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-

RE: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Karina Steffens
A massage you say? Wow, I could really do with one of those ;) Seriously, I think SWFObject is a great solution (especially the massage) with loads of advantages. It's just a question of what works better for the situation. ObjectSwap is best as a quick fix, where Flash is already embedded, and

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Adrian Park
Hi all. Thanks for the responses. I think my favoured route would be by Typing the parameter as generic Object as it means it's still one parameter which seems neater. Ian, I'm intrigued if your suggestion works - I had considered it but assumed it wouldn't work because the result of the typeOf

RE: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Tom Lee
Thanks for the pointer, Geoff - the jscript.dll was not at issue in my case however. I have a feeling it may relate to the bug described in this article: http://blog.metawrap.com/blog/MicrosoftsEolasActiveXPatchForIESometimesBreak sJavaScriptWorkaround.aspx However, I have no way to prove it

[Flashcoders] FileReference and Getting File Path

2006-06-15 Thread azsl1326-email
I am using the FileReference Class to upload images. Is there a way to get the path to the selected file? Ideally, I would like to preview the image before being uploaded and need the path. Thanks for any and all replies. ___

Re: [Flashcoders] FileReference and Getting File Path

2006-06-15 Thread Mike Boutin
Is it possible for you to just grab the name after it is selected from the FileReference object? var listener:Object = new Object(); listener.onSelect = function(file:FileReference):Void { trace(file.name); }; Boots [EMAIL PROTECTED] wrote: I am

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Ian Thomas
Hi Adrian, Your i:Object declaration is a _compile-time_ declaration. All it's there for is to make the compiler happy. instanceof, which is what I'm using (typeof is an older construct which is more limited and less safe) is an operator which does a comparison at runtime on the underlying

RE: [Flashcoders] ComboBox Halo

2006-06-15 Thread Steven Sacks
When I experience crazy behavior like this in Flash that absolutely shouldn't happen, I take a few steps. 1) Save and compact. Quit Flash. Restart my computer. 2) If that doesn't fix it, I try deleting the component from the library, save and compact, quit Flash, relaunch, put the component

RE: [Flashcoders] Accepting 1 parameter with 2 possible types in amethod?

2006-06-15 Thread Steven Sacks
You could also leave off the typecasting on the argument. You don't have to type your arguments in AS2, and the compiler won't complain. If the methods inside the argument check what type of argument it is, then it's pretty apparent to anybody reading the code why there is no type on the

RE: [Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Steven Sacks
I've created a ComboBox. Strangely when I open the combobox, the field with selections goes under the other components...??? Is it on a lower layer in the timeline? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

RE: [Flashcoders] FileReference and Getting File Path

2006-06-15 Thread azsl1326-email
Thanks for the reply. I can get the name, however it doesn't provide the path (i.e. c:\images\image001.jpg) Mike Boutin mikeb at juicystudios.com Thu Jun 15 13:03:32 EDT 2006 Is it possible for you to just grab the name after it is selected from the

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in amethod?

2006-06-15 Thread Ian Thomas
Yes - but - why bother omitting it? It's only a few characters you're saving - the word :Object. If later down the line you decide to change compilers and go with MTASC (or perhaps port your code to AS3) you'll have to trawl back through all the code putting those missing type definitions back

Re: [Flashcoders] FileReference and Getting File Path

2006-06-15 Thread Mike Boutin
Not sure if this will help, but maybe you can copy the image to the users cache to display it. // make a working copy of a file on the user's disk var fileRef = new FileReference(); if (fileRef.browse([Text Files, *.txt]) { fileRef.copyIntoCache(backup-data.txt); var newFile = new

Re: [Flashcoders] Accepting 1 parameter with 2 possible types in a method?

2006-06-15 Thread Nicolas Cannasse
Hi List, What's the neatest way of accepting a single parameter with 2 possible types into a method and then working out what type of parameter has been passed? e.g. in pseudo code private function myMethod( i:Number/String ):Void { if ( i is a String ) { // do this }

RE: [Flashcoders] ComboBox and Other Flash Components

2006-06-15 Thread Joey Rivera
Are you loading the ComboBox from an external swf (loadMovie) into a movie clip? If so, try putting a copy of the ComboBox component in the library of the root fla or the fla that is doing the loadMovie. Joey Rivera -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] ComboBox Halo

2006-06-15 Thread Matthew Simpson
Steven, The problem went away with a save and compact. Thanks for the assistance! Matthew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Thursday, June 15, 2006 1:12 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders]

Re: [Flashcoders] Accepting 1 parameter with 2 possible types inamethod?

2006-06-15 Thread Derek Vadneau
It depends on how you are using it. Object is NOT the same as untyped. Try this code: var a:Array = new Array(); a.push('blah'); var s:String = a.shift(); Output panel displays: **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 3: Type mismatch in assignment statement: found Object where

Re: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Kevin Newman
Tom Lee wrote: If you're referring to the issue I'm reporting, I'm afraid your solution is not immune either. Two out of 3 of my PCs will show the click to activate message if you have cleared your cache and then visited your example pages without restarting your browser first. If that's

Re: [Flashcoders] FileReference and Getting File Path

2006-06-15 Thread Mike Boutin
Oops :) Maybe im just dont undestand the problem because how can you show a preview of the users image without first uploading it to your server? Boots Geoffrey Williams wrote: That's a Macromedia Central only feature. I doubt they're using Central, but maybe ;) If you're working in a web

[Flashcoders] xAL and xNAL

2006-06-15 Thread Kevin Newman
Hello all, Has anyone done any work with these new address formats (xNAL, xAL, xNL) that have been standardized by OASIS in flash? I was so happy to hear about a standard way to deal with international address information, now all we need are some standardized form layouts, and some solid

RE: [Flashcoders] xAL and xNAL

2006-06-15 Thread Steven Sacks
All xNAL Action. Hawt. ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Newman Sent: Thursday, June 15, 2006 11:44 AM To: Flashcoders mailing list Subject: [Flashcoders] xAL and xNAL Hello all, Has anyone done any work with these

Re: [Flashcoders] Sharing fla over network

2006-06-15 Thread Ron Wheeler
Add Eclipse as an IDE and move to MTASC (FAME ). That is still the best way to go. Ron jim wrote: If you can use some source control like SVN that might be what you are looking for. Its pretty easy to set up and will stop you writing over each others changes. Jim -Original Message-

RE: [Flashcoders] xAL and xNAL

2006-06-15 Thread Mark Lapasa
ha! That joke made my day -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steven Sacks Sent: Thursday, June 15, 2006 2:52 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] xAL and xNAL All xNAL Action. Hawt. ;) -Original Message-

RE: [Flashcoders] Eolas fix and backspace key flash bug

2006-06-15 Thread Tom Lee
Kevin, Thanks for the fresh thinking! Like you, I'm kind of leaning toward the idea that this is maybe not worth too much further effort, considering the limited scope of the problem. If nothing else, at least the issue is now documented in more places than before. :) -tom -Original

Re: [Flashcoders] Java's wait(timeout) and notify() in ActionScript

2006-06-15 Thread Scott Hyndman
Yeah, sure. Use setInterval. If the user interacts before the time expires, call clearInterval. Scott On 15/06/06, Alexander Farber [EMAIL PROTECTED] wrote: Hello, I'm trying to rewrite a web chat client written in Java, which is performing the following in its main loop: I have a variable

[Flashcoders] googletalk/xmpp/flash

2006-06-15 Thread Bieniasz, Myles
I know it's possible to build a flash client for XMPP based IM clients and I had at one point seen the now defunct gtalkr.com interface for googletalk. Does anyone have any experience creating a googletalk client in flash or any useful resources regarding this? Thanks in advance for any help

[Flashcoders] question SO class

2006-06-15 Thread Caruso Canepari
Hi. I made up this little class to manage Shared Objects. But there is something (or more than simply something) in AS I don't perfectly understand. The problem (I imagine there can be many more, but...) is that I can't add more than one data property. I post the code with some comment:

Re: [Flashcoders] googletalk/xmpp/flash

2006-06-15 Thread Jim Cheng
Bieniasz, Myles wrote: I know it's possible to build a flash client for XMPP based IM clients and I had at one point seen the now defunct gtalkr.com interface for googletalk. Does anyone have any experience creating a googletalk client in flash or any useful resources regarding this? Thanks

Re: [Flashcoders] question SO class

2006-06-15 Thread Scott Hyndman
Just out of interest, what benefit exactly does this class provide? You seem to offer the same methods that the shared object does with different names (although the names are clearer, I'll give you that). Scott On 15/06/06, Caruso Canepari [EMAIL PROTECTED] wrote: Hi. I made up this little