Simpleist case, use extended search in FlexBuilder and search for \n
that will give you number of literal lines of text in your project.

To get a little more complex you can search for \)$|\):\w+$|;$ as a
regex and get most logical lines in .as code.  If you consider each
tag to be a line of code in mxml you could add |>$ to the above and
get those.

--- In flexcoders@yahoogroups.com, "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%40yahoogroups.com>
> [mailto:flexcoders@yahoogroups.com
<mailto:flexcoders%40yahoogroups.com> ] 
> > *On Behalf Of *Cameron
> > *Sent:* Tuesday, June 24, 2008 1:18 PM
> > *To:* flexcoders@yahoogroups.com
<mailto:flexcoders%40yahoogroups.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:
> > <script ... >
> > 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);
> > }
> > ...
> > </script>
> > <mx:HTTPService id="userReq" result="gethttpResult(event)"
> > fault="handleFault(event)" useProxy="false" method="GET"
> > resultFormat="object" />
> >
> >
>


Reply via email to