Re: [flexcoders] No of Lines of Code

2008-06-27 Thread Christian Giordano
Maybe this can help you, or at least its source.

https://blogs.conchango.com/filthyria/archive/2008/05/19/code-stats-as-air-app.aspx


Cheers, chr

___
{ Christian Giordano's site and blog @ http://nuthinking.com }


On Wed, Jun 25, 2008 at 2:27 AM, Paramjit Jolly
<[EMAIL PROTECTED]> wrote:
> Hi all,
>
>   Anyone have any idea, In any flex project we need to know ….no of lines of
> code..
>
> Any prebuild component or technique for this ?
>
> I need to publish some statics on basis of this .
>
>
>
>
>
>
>
>
>
> Thanks & Regards
>
> Jolly
>
>
>
>
>
> *
>
> IMPORTANT: This email message is for the sole use of the intended
> recipient(s) and may contain confidential and privileged information. Any
> unauthorized review, use, disclosure or distribution is prohibited. If you
> are not the intended recipient, please contact the sender by reply email and
> destroy all copies of the original message. Please advise immediately if you
> or your employer do not consent to Internet email for messages of this kind.
> Opinions, conclusions and other information contained in this e-mail message
> that do not relate to the official business of Life Fitness shall be
> understood as neither given nor endorsed by it.
>
> *
>
> Love to God, Everyone starts loving you.
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Tracy Spratt
> Sent: Wednesday, June 25, 2008 9:34 AM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] httpservice and repetitive calls
>
>
>
> As I understand  from my reading, the W3C specs state that POST methods do
> not cache.  There are  posts on this list about it, and I am sure you could
> look into the specs themselves.  I have just always used POST, and never had
> any problems.  Aspx is nice because Request("myParm") handles both post and
> get parameters.
>
>
>
> Tracy
>
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Cameron
> Sent: Tuesday, June 24, 2008 6:48 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] httpservice and repetitive calls
>
>
>
> I never saw my first post come through...hence the second post. That
> worked by the way, but I'm curious as to why?
>
> Cameron
>
> Tracy Spratt wrote:
>>
>> See my response to your first post.
>>
>>
>>
>> Use the POST method instead of get.
>>
>>
>>
>> Tracy
>>
>>
>>
>> --
>>
>> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
>> *On Behalf Of *Cameron
>> *Sent:* Tuesday, June 24, 2008 1:18 PM
>> *To:* flexcoders@yahoogroups.com
>> *Subject:* [flexcoders] httpservice and repetitive calls
>>
>>
>>
>> I'm using the httpservice to make a call to an aspx page which runs a
>> query and returns the results. This is fine, but if I try to run the
>> same call again, the service is not actually going out to make the call,
>> but rather just returning the results from the previous call. I know
>> this because the aspx page logs each call made to it. I always see the
>> first call, but no subsequent calls come through if I post the same
>> data. If I send a different set of data, the call works fine, but then
>> will not post that data again. Any ideas on why it doesn't want to
>> actually make the call? Below are the relevant pieces of code:
>> 
>> public function lblClickHandler(event:Event):void{
>> tgtdata = event.currentTarget.data.toString();
>> customer_id = event.currentTarget.data;
>> useHttpService();
>> }
>>
>> public function useHttpService():void {
>> userReq.url = dstURL; //set in another part of the code
>> userReq.method = "GET";
>>
>> var Obj:Object = new Object();
>> Obj.w = wispid; //wispid is just a number that is set
>> elsewhere
>> Obj.i = tgtdata;
>> userReq.send(Obj);
>> }
>> ...
>> 
>> > fault="handleFault(event)" useProxy="false" method="GET"
>> resultFormat="object" />
>>
>>
>
> 



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Grou

Re: [flexcoders] No of Lines of Code

2008-06-25 Thread Alen Balja
We used externalis once, program for this once. Can't remember the name
exactly but it's LineC or something like this. Do some Googling there are
plenty of free options available.



On Wed, Jun 25, 2008 at 6:57 AM, Paramjit Jolly <
[EMAIL PROTECTED]> wrote:

>Hi all,
>
>   Anyone have any idea, In any flex project we need to know ….no of lines
> of code..
>
> Any prebuild component or technique for this ?
>
> I need to publish some statics on basis of this .
>
>
>
>
>
>
>
>
>
> Thanks & Regards
>
> Jolly
>
>
>
> * *
>
>
> *
>
> IMPORTANT: This email message is for the sole use of the intended
> recipient(s) and may contain confidential and privileged information. Any
> unauthorized review, use, disclosure or distribution is prohibited. If you
> are not the intended recipient, please contact the sender by reply email and
> destroy all copies of the original message. Please advise immediately if you
> or your employer do not consent to Internet email for messages of this kind.
> Opinions, conclusions and other information contained in this e-mail message
> that do not relate to the official business of Life Fitness shall be
> understood as neither given nor endorsed by it.
>
>
> *
>
> Love to God, Everyone starts loving you.
>   --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Tracy Spratt
> *Sent:* Wednesday, June 25, 2008 9:34 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* RE: [flexcoders] httpservice and repetitive calls
>
>
>
> As I understand  from my reading, the W3C specs state that POST methods do
> not cache.  There are  posts on this list about it, and I am sure you could
> look into the specs themselves.  I have just always used POST, and never had
> any problems.  Aspx is nice because Request("myParm") handles both post and
> get parameters.
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Cameron
> *Sent:* Tuesday, June 24, 2008 6:48 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] httpservice and repetitive calls
>
>
>
> I never saw my first post come through...hence the second post. That
> worked by the way, but I'm curious as to why?
>
> Cameron
>
> Tracy Spratt wrote:
> >
> > See my response to your first post.
> >
> >
> >
> > Use the POST method instead of get.
> >
> >
> >
> > Tracy
> >
> >
> >
> > --
> >
> > *From:* flexcoders@yahoogroups.com [mailto:
> flexcoders@yahoogroups.com ]
> > *On Behalf Of *Cameron
> > *Sent:* Tuesday, June 24, 2008 1:18 PM
> > *To:* flexcoders@yahoogroups.com 
> > *Subject:* [flexcoders] httpservice and repetitive calls
> >
> >
> >
> > I'm using the httpservice to make a call to an aspx page which runs a
> > query and returns the results. This is fine, but if I try to run the
> > same call again, the service is not actually going out to make the call,
> > but rather just returning the results from the previous call. I know
> > this because the aspx page logs each call made to it. I always see the
> > first call, but no subsequent calls come through if I post the same
> > data. If I send a different set of data, the call works fine, but then
> > will not post that data again. Any ideas on why it doesn't want to
> > actually make the call? Below are the relevant pieces of code:
> > 
> > public function lblClickHandler(event:Event):void{
> > tgtdata = event.currentTarget.data.toString();
> > customer_id = event.currentTarget.data;
> > useHttpService();
> > }
> >
> > public function useHttpService():void {
> > userReq.url = dstURL; //set in another part of the code
> > userReq.method = "GET";
> >
> > var Obj:Object = new Object();
> > Obj.w = wispid; //wispid is just a number that is set
> > elsewhere
> > Obj.i = tgtdata;
> > userReq.send(Obj);
> > }
> > ...
> > 
> >  > fault="handleFault(event)" useProxy="false" method="GET"
> > resultFormat="object" />
> >
> >
>
>  
>


[flexcoders] No of Lines of Code

2008-06-24 Thread Paramjit Jolly
Hi all,

  Anyone have any idea, In any flex project we need to know no of lines
of code..

Any prebuild component or technique for this ?

I need to publish some statics on basis of this .

 

 

 

 

Thanks & Regards

Jolly

 

 

*


IMPORTANT: This email message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient, please contact the sender by reply email and
destroy all copies of the original message. Please advise immediately if you
or your employer do not consent to Internet email for messages of this kind.
Opinions, conclusions and other information contained in this e-mail message
that do not relate to the official business of Life Fitness shall be
understood as neither given nor endorsed by it.

*


Love to God, Everyone starts loving you.



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tracy Spratt
Sent: Wednesday, June 25, 2008 9:34 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] httpservice and repetitive calls

 

As I understand  from my reading, the W3C specs state that POST methods do
not cache.  There are  posts on this list about it, and I am sure you could
look into the specs themselves.  I have just always used POST, and never had
any problems.  Aspx is nice because Request("myParm") handles both post and
get parameters.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Cameron
Sent: Tuesday, June 24, 2008 6:48 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] httpservice and repetitive calls

 

I never saw my first post come through...hence the second post. That 
worked by the way, but I'm curious as to why?

Cameron

Tracy Spratt wrote:
>
> See my response to your first post.
>
> 
>
> Use the POST method instead of get.
>
> 
>
> Tracy
>
> 
>
> --
>
> *From:* flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com  ] 
> *On Behalf Of *Cameron
> *Sent:* Tuesday, June 24, 2008 1:18 PM
> *To:* flexcoders@yahoogroups.com  
> *Subject:* [flexcoders] httpservice and repetitive calls
>
> 
>
> I'm using the httpservice to make a call to an aspx page which runs a
> query and returns the results. This is fine, but if I try to run the
> same call again, the service is not actually going out to make the call,
> but rather just returning the results from the previous call. I know
> this because the aspx page logs each call made to it. I always see the
> first call, but no subsequent calls come through if I post the same
> data. If I send a different set of data, the call works fine, but then
> will not post that data again. Any ideas on why it doesn't want to
> actually make the call? Below are the relevant pieces of code:
> 
> public function lblClickHandler(event:Event):void{
> tgtdata = event.currentTarget.data.toString();
> customer_id = event.currentTarget.data;
> useHttpService();
> }
>
> public function useHttpService():void {
> userReq.url = dstURL; //set in another part of the code
> userReq.method = "GET";
>
> var Obj:Object = new Object();
> Obj.w = wispid; //wispid is just a number that is set
> elsewhere
> Obj.i = tgtdata;
> userReq.send(Obj);
> }
> ...
> 
>  fault="handleFault(event)" useProxy="false" method="GET"
> resultFormat="object" />
>
>