RE: [Flashcoders] My rights - site not paid for.

2008-12-09 Thread Eamonn Faherty
I wasn't referring to the deletion of the site. I was talking about the possible unauthorized access of the ftp site. Thanks for the link. I will be sure to keep ahold of that incase I get into a similar problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] What design pattern would this be?

2008-12-08 Thread Eamonn Faherty
It might be a little light but check out the reactor pattern. It is very useful when desiring polymorphic behaviors. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joel Stransky Sent: 06 December 2008 21:00 To: Flash Coders List Subject: [Flashcoders]

RE: [Flashcoders] My rights - site not paid for.

2008-12-08 Thread Eamonn Faherty
This is a grey area. Did you draw up a contract when you started the job? Deleting the live site could be deemed as an infringement of the computer misuse act. Do the easiest thing, sell the debt to a debt management agency and move on to another job. I bet the money you will lose doing this

RE: [Flashcoders] Different class instances with socket using same portnumber?

2008-12-04 Thread Eamonn Faherty
I don’t think that is possible but even if it is, it doesn’t sound that graceful. Why not have a single SocketProxy or SocketWrapper class with a single socket connection. You can pass that as a reference to two or more classes. -Original Message- From: [EMAIL PROTECTED]

[Flashcoders] using compc to make a swc

2008-12-03 Thread Eamonn Faherty
I am using compc to compile a swc with the classes I need in it. The problem is, when I inspect the swc the formal parameter names in the method declarations are showing as XXX and not what they are coded as. Does anyone know how I can change this? Thanks in advance, Eamonn

[Flashcoders] api generation tool

2008-11-17 Thread Eamonn Faherty
Hey all, I want to be able to create a html api from as3 source code, a bit like the javadoc tool. I saw naturaldocs but was wondering if there are any other apps that can do this? Thanks in advance, Eamonn ___ Flashcoders mailing list

RE: [Flashcoders] api generation tool

2008-11-17 Thread Eamonn Faherty
-with-google-prettify EKA+ :) 2008/11/17 Eamonn Faherty [EMAIL PROTECTED] Hey all, I want to be able to create a html api from as3 source code, a bit like the javadoc tool. I saw naturaldocs but was wondering if there are any other apps that can do this? Thanks in advance, Eamonn

RE: [Flashcoders] Can't remove loaded SWF AS3

2008-11-07 Thread Eamonn Faherty
Have you seen? http://www.gskinner.com/blog/archives/2008/04/failure_to_unlo.html HTH Eamonn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alistair Colling Sent: 07 November 2008 11:09 To: Flash Coders List Subject: [Flashcoders] Can't remove

RE: [Flashcoders] AS2 - Code not working in FP10

2008-11-06 Thread Eamonn Faherty
Me too! haha -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric E. Dolecki Sent: 06 November 2008 15:46 To: Flash Coders List Subject: Re: [Flashcoders] AS2 - Code not working in FP10 I opened that up at work and was presented was some chicks ass

[Flashcoders] Force include of unreferenced classes in swf when compiled with mxmlc

2008-11-04 Thread Eamonn Faherty
I have a set of classes that are used at runtime and not referenced at compile time. I am using mxmlc.exe to compile from an mxml doc. I want to able to specify a set of classes to include into the swf for use only at runtime. Mxml.exe is excluding these classes as they are not being

RE: [Flashcoders] Force include of unreferenced classes in swf whencompiled with mxmlc

2008-11-04 Thread Eamonn Faherty
: [Flashcoders] Force include of unreferenced classes in swf whencompiled with mxmlc Use the -Includes option on the command line to mxmlc. e.g. mxmlc MyApp.as -Includes com.mycompany.Class1 com.mycompany.Class2 -output MyApp.swf HTH, Ian On Tue, Nov 4, 2008 at 4:43 PM, Eamonn Faherty [EMAIL

RE: [Flashcoders] Force include of unreferenced classes in swfwhencompiled with mxmlc

2008-11-04 Thread Eamonn Faherty
4, 2008 at 5:46 PM, Eamonn Faherty [EMAIL PROTECTED] wrote: Thanks for your response but that doesn't seem to work. I get unknown configuration variable 'Includes' I am using sdk 3. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent

RE: [Flashcoders] how many coders here actually have a degree relatedto computer science?

2008-08-23 Thread Eamonn Faherty
I have a computer science degree and I think it is so valuable. The things I learnt on my course help me with my developing all the time. From what I have seen (which is fairly limited) I think being taught formally gives you a different attitude towards developing and learning new

RE: [Flashcoders] Event Double ups ...

2008-08-12 Thread Eamonn Faherty
It sounds like you want to send an event from class a to class b and then from class b to class c. if this is correct you can override the clone method to return a new event with the same name and contents. Eamonn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [Flashcoders] Warning: 3596: Duplicate variable definition.

2008-07-01 Thread Eamonn Faherty
I guess this is the same as using null instead of nothing in database design. You are explicitly saying that there were be a type at run time instead of the compiler thinking you forgot it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerry Thompson