Re: [flexcoders] error while extending dictionary error ..

2008-05-14 Thread Josh McDonald
. Thanks. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Josh McDonald *Sent:* Tuesday, May 13, 2008 10:53 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] error while extending dictionary error .. Yeah, that's all I

[flexcoders] error while extending dictionary error ..

2008-05-13 Thread Mayur Bais
Hi all, I have class extending a dictionary class: public class mydict extends Dictionary { publicstatic instance:mydict // done to maintain singleton class function mydict (){ super(); } public static funtion getInstance():mydict { return instance; }

RE: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Alex Harui
Don't extend dictionary, just return a Dictionary. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mayur Bais Sent: Tuesday, May 13, 2008 2:11 AM To: [EMAIL PROTECTED]; flexcoders@yahoogroups.com Subject: [flexcoders] error while

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Mayur Bais
. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mayur Bais *Sent:* Tuesday, May 13, 2008 2:11 AM *To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] error while extending dictionary error .. Hi all, I have

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Josh McDonald
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mayur Bais *Sent:* Tuesday, May 13, 2008 2:11 AM *To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] error while extending dictionary error .. Hi all, I have class extending a dictionary class: public

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Mayur Bais
*To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] error while extending dictionary error .. Hi all, I have class extending a dictionary class: public class mydict extends Dictionary { publicstatic instance:mydict // done to maintain

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Josh McDonald
:[EMAIL PROTECTED] *On Behalf Of *Mayur Bais *Sent:* Tuesday, May 13, 2008 2:11 AM *To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] error while extending dictionary error .. Hi all, I have class extending a dictionary class: public class mydict extends Dictionary

RE: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Alex Harui
10:04 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] error while extending dictionary error .. :) :) sure ...there is nothing that I could not do without extending dictionary... with singleTon , I wanted to have the only once reference across the application .. I tried once

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Josh McDonald
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mayur Bais *Sent:* Tuesday, May 13, 2008 10:04 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] error while extending dictionary error .. :) :) sure ...there is nothing that I could not do without extending

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Mayur Bais
PROTECTED] *On Behalf Of *Mayur Bais *Sent:* Tuesday, May 13, 2008 2:11 AM *To:* [EMAIL PROTECTED]; flexcoders@yahoogroups.com *Subject:* [flexcoders] error while extending dictionary error .. Hi all, I have class extending a dictionary class: public

RE: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Alex Harui
Subject: Re: [flexcoders] error while extending dictionary error .. :) :) sure ...there is nothing that I could not do without extending dictionary... with singleTon , I wanted to have the only once reference across the application .. I tried once extending it..and ran into a problem..and then solved

Re: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Josh McDonald
. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Josh McDonald *Sent:* Tuesday, May 13, 2008 10:41 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] error while extending dictionary error .. On the plus side, I'm glad you

RE: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Alex Harui
Sure. Thanks. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Tuesday, May 13, 2008 10:53 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] error while extending dictionary error .. Yeah, that's all I