RE: [Flashcoders] Flash Multiplayer System

2006-06-01 Thread Clint Tredway
I have used the ElectroServer twice and found it easy to use and very robust. Jobe was also very helpful when questions or issues came up. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de Moraes Serpa Sent: Thursday, June 01, 2006 9:39 AM To:

RE: [Flashcoders] Flex vs. Flash IDE

2006-05-23 Thread Clint Tredway
Really, the only thing Flash and Flex have incommon is what they compile to and they both us AS... Form application development in Flash is a royal pain.. In Flex its much easier and you can build a much better experience than with Flash. I know, I have done both... -Original Message-

RE: [Flashcoders] Zoom effect

2006-04-19 Thread Clint Tredway
Yup, I am working on a project that has a 'zoom' effect and the Tween class is what I am using to do it. Here is a link that was helpful to me. http://www.kirupa.com/developer/actionscript/tween.htm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Julian

[Flashcoders] onMotionFinished not firing...

2006-04-04 Thread Clint Tredway
Anyone have this problem? I have a function that calls a tween based on a passed in parameter: var l1:Tween = new Tween(holder_mc.universe_mc.s3_mc, _x, Regular.easeInOut, holder_mc.universe_mc.s3_mc._x, distance, 1, 5, true); l1.onMotionFinished = function() { trace(I am finished); };

RE: [Flashcoders] datagrid icon to delete a row.

2006-03-10 Thread Clint Tredway
Basically what you will need to do is get the id of that row and remove it from the data populating the grid and then refresh the grid. (If I remember correctly) ;) HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rodrigo Guerra Sent: Friday, March

RE: [Flashcoders] datagrid icon to delete a row.

2006-03-10 Thread Clint Tredway
). the only way i can think to refresh the datagrid is associate it (again) to the xml source (updated). like delete the node then myDG.dataProvider = myXml (updated) is this correct? - Original Message - From: Clint Tredway [EMAIL PROTECTED] To: Flashcoders mailing list