[flexcoders] need flex developer

2013-03-07 Thread Vivian Richard
Hello all,

my group needs few flex developer with the following requirements:

Eclipse,   and 3+ Yrs.,
Flex,   and 4+ Yrs.,
Java,   and 5+ Yrs.,
Java/J2EE Technologies,   and 5+ Yrs.,
Java Messaging Service (JMS)
Spring   and 5+ Yrs.,
Subversion (SVN),
Unix Shell

please feel free to send me your resume if you are interested. Please
make sure to send me the resume directly not the whole group :-).
Thanks to all.

Thanks.


Re: [flexcoders] Steve Jobs on Flash .......

2010-02-06 Thread Vivian Richard
 I am also not sure if it is true or false. But if you ask me if this
kind of
 statement is possible by Jobs then the answer is definitely. Please
 take a look at the video:

   http://www.youtube.com/watch?v=upzKj-1HaKw







On Sat, Feb 6, 2010 at 7:37 AM, Tim Romano  wrote:

>
>
> If the rumors about Bing are true, then this panning could also have
> something to do with Silverlight. If I were at MSFT and my role was to
> ensure that Silverlight succeeded in knocking Flash off (as Word knocked off
> WordPerfect back in the day, e.g.) then I'd be looking for chinks in Adobe's
> armor wherever they may be.
>
>
> On 2/1/2010 2:26 PM, Paul Andrews wrote:
>
>
>
> It's just commercial tactics.
>
> You'd never guess he has his own tied-in development system to support.
> Why wouldn't he knock flash?
>
> hworke wrote:
> >
> http://news.yahoo.com/s/pcworld/20100201/tc_pcworld/stevejobsdissesapplerivalsduringtownhallmeeting
> >
> >
> > Jobs has previously called out Adobe Flash, currently the
> > dominant animation platform on the Web, for being "too slow to be useful"
> and Flash Lite, Adobe's versio n of Flash for mobile devices, as not
> advanced enough for the iPhone. So it's no surprise to hear Jobs called out
> Flash during Apple's Town Hall, but his language this time sounds a little
> over the top. Jobs reportedly called Adobe a lazy company, and said that
> when a Mac crashes it's usually because of Flash.
> >
> > Whether or not that's true, it's clear that Jobs is not a fan of Adobe's
> multimedia platform. The iPhone is routinely criticized for its inability to
> render Flash-based Web pages, videos and games, and early criticisms about
> the iPad also decry the lack of Flash compatibility on Apple's latest
> device.
> >
> >
> >
>
>
>  
>


Re: [flexcoders] Re: apply style in newly created component

2010-01-15 Thread Vivian Richard
   Worked liked charm!!! I guess valdhor also suggested something
   like this in one of his initial mails. Thanks to all




On Fri, Jan 15, 2010 at 12:45 PM, Amy  wrote:

>
>
>
>
> --- In flexcoders@yahoogroups.com ,
> "valdhor"  wrote:
> >
> > Hm I don't use charts.
> >
> > Maybe you could try...
> >
> > myComp.myChart.styleName = "noGutterChart";
> >
> > Actaully, the myChart component may not have been instantiated at that
> point. I would add a creationComplete event handler to the myChart component
> that dispatches a custom event that will bubble up to the component that you
> are in. When that event comes in, apply the style.
>
> My guess is that the setStyle functionality bypasses some of the controls
> in the life cycle logic of the chart, whereas styleName will just set a flag
> somewhere and the logic will just wait until the appropriate moment to apply
> the styles to the objects, which will have been instantiated at that point.
>
> MPO is that if you use styleName you should not need to add an event
> listener for initialized or creationcomplete. Be aware that neither of these
> events will fire until the component has already been added to the Canvas
> and the Canvas has been added to the display list.
>
> HTH;
>
> Amy
>
>  
>


Re: [flexcoders] Re: apply style in newly created component

2010-01-15 Thread Vivian Richard
I just tried as suggested and still the same. May be it does not get
instantiated
until it is added in its parent. May be!!!



On Fri, Jan 15, 2010 at 10:50 AM, valdhor wrote:

>
>
> Hm I don't use charts.
>
> Maybe you could try...
>
> myComp.myChart.styleName = "noGutterChart";
>
> Actaully, the myChart component may not have been instantiated at that
> point. I would add a creationComplete event handler to the myChart component
> that dispatches a custom event that will bubble up to the component that you
> are in. When that event comes in, apply the style.
>
>
> --- In flexcoders@yahoogroups.com , Vivian
> Richard  wrote:
> >
> > Actually I am trying to apply a very simple style to a chart. My chart is
> > inside a
> > canvas component and in a separate file. I want to add this chart
> containing
> > canvas in dynamically. This component is like this:
> >
> > 
> > 
> > 
> > 
> > 
> >
> > Now I have this simple styles for the the chart which are:
> >
> > .noGutterChart {
> > gutterLeft:0;
> > gutterBottom:0;
> > gutterTop:0;
> > gutterRight:0;
> > }
> >
> > Now as I am trying to create the component dunamically and want to apply
> > the
> > style to the chart I get the error message.
> >
> > var myComp:ChartComp = new ChartComp;
> > myComp.myChart.setStyle("styleName","noGutterChart");
> >
> > This gives me the error message that I cannot access a function of a
> > null object.
> >
> >
> >
> >
> >
> >
> >
> >
> > On Fri, Jan 15, 2010 at 9:49 AM, valdhor wrote:
>
> >
> > >
> > >
> > > In that case he should use the styleName property...
> > >
> > > .myStyle
> > > {
> > > cornerRadius: 9;
> > > fillAlphas: 1, 1, 1, 1;
> > > fillColors: #6699ff, #6699ff, #6699ff, #6699ff;
> > > themeColor: #00ff00;
> > > fontSize: 24;
> > > }
> > >
> > >
> > > var button:Button = new Button;
> > > button.label = "My Fancy New Button";
> > > button.styleName = "myStyle";
> > > this.addChild(button);
> > >
> > >
> > > --- In flexcoders@yahoogroups.com , Erik
> de Bruin  wrote:
> > > >
> > > > Hi,
> > > >
> > > > I think he's trying to set a named CSS style ("myStyle") on the
> Button
> > > using
> > > > setStyle(). I don't think that's possible?
> > > >
> > > > EdB
> > > >
> > > > On Fri, Jan 15, 2010 at 3:02 PM, valdhor valdhorli...@...:
>
> > >
> > > >
> > > > >
> > > > >
> > > > > I don't understand. Once you use the "new" operator, the button is
> > > > > instantiated. You can apply all sorts of styles to it before adding
> it
> > > to
> > > > > the displayList. For example, this works for me...
> > > > >
> > > > > var button:Button = new Button;
> > > > > button.label = "My Fancy New Button";
> > > > > button.setStyle("cornerRadius", 9);
> > > > > button.setStyle("fontSize", 24);
> > > > > button.setStyle("themeColor", '#00FF00');
> > > > > button.setStyle("fillColors", ['#6699ff', '#6699ff',
> > > > > '#6699ff', '#6699ff']);
> > > > > button.setStyle("fillAlphas", [1, 1, 1, 1]);
> > > > > this.addChild(button);
> > > > >
> > > > >
> > > > >
> > > > > --- In flexcoders@yahoogroups.com ,
> "hworke" kanpsack@ wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > > Hi I am trying to apply style in a newly created component
> > > > > > but since it is not instantiated it gives me error message.
> > > > > >
> > > > > > My code is like this:
> > > > > >
> > > > > > var button:Button = new Button;
> > > > > > button.setStyle("styleName", "myStyle");
> > > > > > canvas.addChild(button);
> > > > > > I need to create the component dynamically and also need
> > > > > > to apply the style dynamically. How can I do that?
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Ix Multimedia Software
> > > >
> > > > Jan Luykenstraat 27
> > > > 3521 VB Utrecht
> > > >
> > > > T. 06-51952295
> > > > I. www.ixsoftware.nl
> > > >
> > >
> > >
> >
>
>  
>


Re: [flexcoders] Re: apply style in newly created component

2010-01-15 Thread Vivian Richard
Actually I am trying to apply a very simple style to a chart. My chart is
inside a
canvas component and in a separate file. I want to add this chart containing
canvas in dynamically. This component is like this:







Now I have this simple styles for the the chart which are:

.noGutterChart {
   gutterLeft:0;
   gutterBottom:0;
   gutterTop:0;
   gutterRight:0;
}

Now as I am trying to create the component dunamically and want to apply
the
style to the chart I get the error message.

  var myComp:ChartComp = new ChartComp;
  myComp.myChart.setStyle("styleName","noGutterChart");

This gives me the error message that I cannot access a function of a
null object.








On Fri, Jan 15, 2010 at 9:49 AM, valdhor wrote:

>
>
> In that case he should use the styleName property...
>
> .myStyle
> {
>cornerRadius: 9;
>fillAlphas: 1, 1, 1, 1;
>fillColors: #6699ff, #6699ff, #6699ff, #6699ff;
>themeColor: #00ff00;
>fontSize: 24;
> }
>
>
> var button:Button = new Button;
> button.label = "My Fancy New Button";
> button.styleName = "myStyle";
> this.addChild(button);
>
>
> --- In flexcoders@yahoogroups.com, Erik de Bruin  wrote:
> >
> > Hi,
> >
> > I think he's trying to set a named CSS style ("myStyle") on the Button
> using
> > setStyle(). I don't think that's possible?
> >
> > EdB
> >
> > On Fri, Jan 15, 2010 at 3:02 PM, valdhor valdhorli...@...wrote:
>
> >
> > >
> > >
> > > I don't understand. Once you use the "new" operator, the button is
> > > instantiated. You can apply all sorts of styles to it before adding it
> to
> > > the displayList. For example, this works for me...
> > >
> > > var button:Button = new Button;
> > > button.label = "My Fancy New Button";
> > > button.setStyle("cornerRadius", 9);
> > > button.setStyle("fontSize", 24);
> > > button.setStyle("themeColor", '#00FF00');
> > > button.setStyle("fillColors", ['#6699ff', '#6699ff',
> > > '#6699ff', '#6699ff']);
> > > button.setStyle("fillAlphas", [1, 1, 1, 1]);
> > > this.addChild(button);
> > >
> > >
> > >
> > > --- In flexcoders@yahoogroups.com, "hworke" kanpsack@ wrote:
> > > >
> > > >
> > > >
> > > > Hi I am trying to apply style in a newly created component
> > > > but since it is not instantiated it gives me error message.
> > > >
> > > > My code is like this:
> > > >
> > > > var button:Button = new Button;
> > > > button.setStyle("styleName", "myStyle");
> > > > canvas.addChild(button);
> > > > I need to create the component dynamically and also need
> > > > to apply the style dynamically. How can I do that?
> > > >
> > > > Regards,
> > > >
> > >
> > >
> >
> >
> >
> > --
> > Ix Multimedia Software
> >
> > Jan Luykenstraat 27
> > 3521 VB Utrecht
> >
> > T. 06-51952295
> > I. www.ixsoftware.nl
> >
>  
>


Re: [flexcoders] Re: LineSeries

2009-11-17 Thread Vivian Richard
  Got your point - very clearly. But Every time a point is rendered, does it
mean
  that for each point all the images will be attached with the app. I mean
is there
  a possibility that these images will be duplicated?




On Tue, Nov 17, 2009 at 10:57 AM, Jake Churchill  wrote:

>
>
> Yes, that is possible but you have to remember that each image you display
> will be a subsequent request to the web server.  If you embed the image, you
> embed it once and use it a bunch of times without subsequent requests.
>
>
> On Tue, Nov 17, 2009 at 12:54 PM, Vivian Richard wrote:
>
>>
>>
>>
>>
>>   Is it possible to do it with out embedding the image? Just
>>   creating am iamge and then pointing the source of the image
>>   to the image component. Instead Embedding all the images.
>>
>>
>>  On Tue, Nov 17, 2009 at 10:07 AM, turbo_vb  wrote:
>>
>>>
>>>
>>> Just read your last post a little more. To add an Image control, first
>>> create a var:
>>>
>>> private var myImage:Image;
>>>
>>> Then in createChildren():
>>>
>>> override protected function createChildren():void
>>> {
>>> super.createChildren();
>>>
>>> if ( !myImage )
>>> {
>>> myImage = new Image();
>>> addChild( myImage );
>>> }
>>>
>>> }
>>>
>>> -TH
>>>
>>>
>>> --- In flexcoders@yahoogroups.com ,
>>> "turbo_vb"  wrote:
>>> >
>>> >
>>> >
>>> > Ok 2 things, better to change the image in the set data method and then
>>> invalidateDisplayList(); because updateDisplayList gets called a lot more
>>> frequently than than the data changes. And for the image, add an Image
>>> control to the UIComponent itemRenderer in createChildren. (remember to
>>> setActualSize and position in updateDisplayList). Then when the data
>>> changes, inspect it and change the source of the image to one of several
>>> embedded image classes in the itemRenderer. Something like:
>>> >
>>> > [Embed(source="../assets/butterfly.gif")]
>>> > public var myButterfly:Class;
>>> >
>>> > [Embed(source="../assets/grassHopper.gif")]
>>> > public var myGrassHopper:Class;
>>> >
>>> > public function set data(value:Object):void
>>> > {
>>> > // perform conditional logic here
>>> > // don't know your code, so psuedo
>>> > if ( butterfly )
>>> > {
>>> > myImage.source = myButterfly;
>>> > }
>>> >
>>> > if ( grasshopper )
>>> > {
>>> > myImage.source = myGrasshopper;
>>> > }
>>> >
>>> > super.invalidateDisplayList();
>>> > }
>>> >
>>> > -TH
>>> >
>>> > --- In flexcoders@yahoogroups.com ,
>>> Vivian Richard  wrote:
>>> > >
>>> > > Thanks for the reply. I got the logic part. In updateDisplayList I
>>> get
>>> > > the
>>> > > data like data.item.type = spider or bee or butterfly .
>>> > >
>>> > > so depending on the type I want to show the image of the insects. But
>>> > > the problem is since this itemrenderer inherits UIComponent, I cannot
>>> > > or do not know how to add an image on it.
>>> > >
>>> > >
>>> > >
>>> > >
>>> > > On Tue, Nov 17, 2009 at 9:28 AM, turbo_vb  wrote:
>>> > >
>>> > > >
>>> > > >
>>> > > > Thanks Vivian,
>>> > > >
>>> > > > For the plot chart, you can do the same type of thing, except with
>>> more
>>> > > > images, with an itemRenderer. Just like the way you can change
>>> icons, or
>>> > > > images, in a List itemRenderer, the same can be done with a chart.
>>> In the
>>> > > > last sample, you can see how to inspect the data; to determine
>>> which image
>>> > > > class to display. This next <
>>> http://www.timothyhoff.com/projects/ChartLabeledRendererSample/srcview/index.html
>>> >
>>> > > > Sample<
>>> http://www.timothyhoff.com/projects/ChartLabeledRendererSample/ChartLabeledRendererSample.html
>>> >
>>> > > > shows how you can use an itemRenderer that extends UIComponent.
>>> This

Re: [flexcoders] Re: LineSeries

2009-11-17 Thread Vivian Richard
  Is it possible to do it with out embedding the image? Just
  creating am iamge and then pointing the source of the image
  to the image component. Instead Embedding all the images.


On Tue, Nov 17, 2009 at 10:07 AM, turbo_vb  wrote:

>
>
> Just read your last post a little more. To add an Image control, first
> create a var:
>
> private var myImage:Image;
>
> Then in createChildren():
>
> override protected function createChildren():void
> {
> super.createChildren();
>
> if ( !myImage )
> {
> myImage = new Image();
> addChild( myImage );
> }
>
> }
>
> -TH
>
>
> --- In flexcoders@yahoogroups.com ,
> "turbo_vb"  wrote:
> >
> >
> >
> > Ok 2 things, better to change the image in the set data method and then
> invalidateDisplayList(); because updateDisplayList gets called a lot more
> frequently than than the data changes. And for the image, add an Image
> control to the UIComponent itemRenderer in createChildren. (remember to
> setActualSize and position in updateDisplayList). Then when the data
> changes, inspect it and change the source of the image to one of several
> embedded image classes in the itemRenderer. Something like:
> >
> > [Embed(source="../assets/butterfly.gif")]
> > public var myButterfly:Class;
> >
> > [Embed(source="../assets/grassHopper.gif")]
> > public var myGrassHopper:Class;
> >
> > public function set data(value:Object):void
> > {
> > // perform conditional logic here
> > // don't know your code, so psuedo
> > if ( butterfly )
> > {
> > myImage.source = myButterfly;
> > }
> >
> > if ( grasshopper )
> > {
> > myImage.source = myGrasshopper;
> > }
> >
> > super.invalidateDisplayList();
> > }
> >
> > -TH
> >
> > --- In flexcoders@yahoogroups.com , Vivian
> Richard  wrote:
> > >
> > > Thanks for the reply. I got the logic part. In updateDisplayList I get
> > > the
> > > data like data.item.type = spider or bee or butterfly .
> > >
> > > so depending on the type I want to show the image of the insects. But
> > > the problem is since this itemrenderer inherits UIComponent, I cannot
> > > or do not know how to add an image on it.
> > >
> > >
> > >
> > >
> > > On Tue, Nov 17, 2009 at 9:28 AM, turbo_vb  wrote:
> > >
> > > >
> > > >
> > > > Thanks Vivian,
> > > >
> > > > For the plot chart, you can do the same type of thing, except with
> more
> > > > images, with an itemRenderer. Just like the way you can change icons,
> or
> > > > images, in a List itemRenderer, the same can be done with a chart. In
> the
> > > > last sample, you can see how to inspect the data; to determine which
> image
> > > > class to display. This next <
> http://www.timothyhoff.com/projects/ChartLabeledRendererSample/srcview/index.html
> >
> > > > Sample<
> http://www.timothyhoff.com/projects/ChartLabeledRendererSample/ChartLabeledRendererSample.html
> >
> > > > shows how you can use an itemRenderer that extends UIComponent. This
> is
> > > > a little different than creating an itemRenderer that extends
> > > > ProgrammaticSkin, as it gives you a lot more flexibility. Between the
> two
> > > > samples, you might be able to come up with a solution. If you get
> stuck,
> > > > please feel free to reach out.
> > > >
> > > > -TH
> > > >
> > > > --- In flexcoders@yahoogroups.com ,
> Vivian Richard  wrote:
> > > > >
> > > > > Liked your example. Sleek!!! By the way I am trying to write an
> > > > > itemrenderer
> > > > > for plot chart. Depending on the value of the plot item I want to
> show
> > > > > different
> > > > > icons in the plotted spot. These is an example of plot chart where
> you
> > > > > can
> > > > > embed an image but in that way you can only put same image in one
> series.
> > > > > Here is the link:
> > > > >
> > > > >
> > > > >
> > > >
> http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_12.html
> > > > >
> > > > > The butterfly example - I am talking about.
> > > > >
> > > > >
> > > > >
> > > > > On Mon, Nov 16, 2009 at 3:02 PM, turbo_vb TimHoff@ wrote:
> > > > >

Re: [flexcoders] Re: LineSeries

2009-11-17 Thread Vivian Richard
   Thanks for the reply. I got the logic part. In updateDisplayList I get
the
   data like data.item.type = spider or bee or butterfly .

   so depending on the type I want to show the image of the insects. But
   the problem is since this itemrenderer inherits UIComponent, I cannot
   or do not know how to add an image on it.




On Tue, Nov 17, 2009 at 9:28 AM, turbo_vb  wrote:

>
>
> Thanks Vivian,
>
> For the plot chart, you can do the same type of thing, except with more
> images, with an itemRenderer.  Just like the way you can change icons, or
> images, in a List itemRenderer, the same can be done with a chart.  In the
> last sample, you can see how to inspect the data; to determine which image
> class to display.  This next 
> <http://www.timothyhoff.com/projects/ChartLabeledRendererSample/srcview/index.html>
> Sample<http://www.timothyhoff.com/projects/ChartLabeledRendererSample/ChartLabeledRendererSample.html>
>  shows how you can use an itemRenderer that extends UIComponent.  This is
> a little different than creating an itemRenderer that extends
> ProgrammaticSkin, as it gives you a lot more flexibility.  Between the two
> samples, you might be able to come up with a solution.  If you get stuck,
> please feel free to reach out.
>
> -TH
>
> --- In flexcoders@yahoogroups.com, Vivian Richard  wrote:
> >
> > Liked your example. Sleek!!! By the way I am trying to write an
> > itemrenderer
> > for plot chart. Depending on the value of the plot item I want to show
> > different
> > icons in the plotted spot. These is an example of plot chart where you
> > can
> > embed an image but in that way you can only put same image in one series.
> > Here is the link:
> >
> >
> >
> http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_12.html
> >
> > The butterfly example - I am talking about.
> >
> >
> >
> > On Mon, Nov 16, 2009 at 3:02 PM, turbo_vb timh...@... wrote:
> >
> > >
> > >
> > > Cool, yeah I should have said custom lineSegmentRenderer.
> > >
> > >
> > > -TH
> > >
> > > --- In flexcoders@yahoogroups.com , Jake
>
> > > Churchill reynacho@ wrote:
> > > >
> > > > THANK YOU. I have seen this before and I've been looking for it
> forever.
> > > > The stinking chart components are all in the dataviz SWC and I
> couldn't
> > > get
> > > > past a null error I was getting.
> > > >
> > > > On Mon, Nov 16, 2009 at 4:43 PM, turbo_vb TimHoff@ wrote:
> > > >
> > > > >
> > > > >
> > > > > Sorry bout that, let's try it again: Sample<
> > >
> http://www.timothyhoff.com/projects/LineRendererSample/LineRendererSample.html
> > > >
> > >
> > > > >
> > > > >
> > > > > -TH
> > > > >
> > > > > --- In flexcoders@yahoogroups.com ,
> Jake
>
> > > Churchill  wrote:
> > > > > >
> > > > > > I've been trying something like this but item renders and actual
> > > segments
> > > > > of
> > > > > > the line seem to be drawn separately. By the way, your link
> doesn't
> > > work.
> > > > > >
> > > > > > On Mon, Nov 16, 2009 at 3:35 PM, turbo_vb TimHoff@ wrote:
> > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Hi Jake,
> > > > > > >
> > > > > > > You could do it with a custom itemRenderer and control the
> alpha or
> > > > > actual
> > > > > > > drawing; based on a data property. Here's a custom renderer
> sample
> > > to
> > > > > get
> > > > > > > you started:
> > > > > > >
> > > > > > > Colored Line Chart Sample<
> > > > > http://www.flashcomguru.com/index.cfm/2009/11/11/pdf-for-flex-devs
> >
> > > > >
> > > > > > >
> > > > > > >
> > > > > > > -TH
> > > > > > >
> > > > > > > --- In flexcoders@yahoogroups.com  40yahoogroups.com>,
>
> > > Jake Churchill reynacho@ wrote:
> > > > > > > >
> > > > > > > > I'm struggling with how to hide a section of a LineSeries.
> Does
> > > > > anyone
> > > > > > > have
> > > > > > > > any pointers or links to point me in the right direction?
> > > > > > > >
> > > > > > > > Thanks!
> > > > > > > >
> > > > > > > > -Jake
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> > >
> > >
> >
>  
>


Re: [flexcoders] How do You find Contracts

2009-11-16 Thread Vivian Richard
  Dan it depends where u live.

  For example in Bay area, California - there are a lot of opportunity.
  If not contracting, there are a lot of full time openings. I have seen
  many job postings even in this mailing list.

  Regards



On Mon, Nov 16, 2009 at 3:26 PM, Dan Pride  wrote:

>
>
> I know this is a bit off topic, but I have been honing my Flex skills for
> two years now and am wondering how to find a way to put them to use.
> I have tried craigs list posts to no end with zero result.
> How do you connect with work in Flex and Air?
> Some Cairngorm would go right good about now :)
> thanks
> Dan
>
>  
>


Re: [flexcoders] Re: LineSeries

2009-11-16 Thread Vivian Richard
   Liked your example. Sleek!!! By the way I am trying to write an
itemrenderer
   for plot chart. Depending on the value of the plot item I want to show
different
   icons in the plotted spot. These is an example of plot chart where you
can
   embed an image but in that way you can only put same image in one series.
   Here is the link:


http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_12.html

The butterfly example - I am talking about.



On Mon, Nov 16, 2009 at 3:02 PM, turbo_vb  wrote:

>
>
> Cool, yeah I should have said custom lineSegmentRenderer.
>
>
> -TH
>
> --- In flexcoders@yahoogroups.com , Jake
> Churchill  wrote:
> >
> > THANK YOU. I have seen this before and I've been looking for it forever.
> > The stinking chart components are all in the dataviz SWC and I couldn't
> get
> > past a null error I was getting.
> >
> > On Mon, Nov 16, 2009 at 4:43 PM, turbo_vb  wrote:
> >
> > >
> > >
> > > Sorry bout that, let's try it again: Sample<
> http://www.timothyhoff.com/projects/LineRendererSample/LineRendererSample.html
> >
>
> > >
> > >
> > > -TH
> > >
> > > --- In flexcoders@yahoogroups.com , Jake
> Churchill  wrote:
> > > >
> > > > I've been trying something like this but item renders and actual
> segments
> > > of
> > > > the line seem to be drawn separately. By the way, your link doesn't
> work.
> > > >
> > > > On Mon, Nov 16, 2009 at 3:35 PM, turbo_vb TimHoff@ wrote:
> > > >
> > > > >
> > > > >
> > > > > Hi Jake,
> > > > >
> > > > > You could do it with a custom itemRenderer and control the alpha or
> > > actual
> > > > > drawing; based on a data property. Here's a custom renderer sample
> to
> > > get
> > > > > you started:
> > > > >
> > > > > Colored Line Chart Sample<
> > > http://www.flashcomguru.com/index.cfm/2009/11/11/pdf-for-flex-devs>
> > >
> > > > >
> > > > >
> > > > > -TH
> > > > >
> > > > > --- In flexcoders@yahoogroups.com ,
> Jake Churchill reynacho@ wrote:
> > > > > >
> > > > > > I'm struggling with how to hide a section of a LineSeries. Does
> > > anyone
> > > > > have
> > > > > > any pointers or links to point me in the right direction?
> > > > > >
> > > > > > Thanks!
> > > > > >
> > > > > > -Jake
> > > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> > >
> > >
> >
>
>  
>


Re: [flexcoders] Chet Haase explains the graphics stack in Flash Player

2009-11-02 Thread Vivian Richard
   You can ask this question directly to Chet. He is very prompt
   answering any question through his blog. Here is the link -
   http://graphics-geek.blogspot.com/


On Mon, Nov 2, 2009 at 2:43 PM, dorkie dork from dorktown <
dorkiedorkfromdorkt...@gmail.com> wrote:

>
>
> I'm looking for the video where Chet describes how the graphics object
> passes drawing commands to the Flash Player. It was something about
> how there is a stack of commands that gets called every frame render.
> Thanks,
>  
>


Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Vivian Richard
 I did that this way:

 this.dispatchEvent(new Event("dragEnd"));







On Sat, Oct 24, 2009 at 5:53 PM, Jeffry Houser  wrote:

>
>
>
>  I also want to add that the metadata only affects code hinting.  You'll
> still need to dispatch that event from within your custom component.
>
> Vivian Richard wrote:
>
>
>
>
>Thanks for the answer and also for the explanation.
>
>Regards
>
>
>
>  On Sat, Oct 24, 2009 at 4:35 PM, Guy Morton  wrote:
>
>>
>>
>>   try addEventListener("dragEnd",startPanAndZoom);
>>
>> addEventListener expects a string containing the event name as its first
>> argument.
>>
>>
>>
>> On 25/10/2009, at 10:00 AM, hworke wrote:
>>
>>
>>
>> Hello developers,
>>
>> in a custom component, I defined an event in metatag like this
>>
>> [Event(name="dragEnd", type="flash.events.Event")]
>> public class ta extends TextArea
>> {
>> }
>>
>> Now inside this component how do I add the event listener for
>> this event which was defined in the metatag.
>>
>> in the component constructor I tried to add the event listener
>> like this
>> addEventListener(dragEnd,startPanAndZoom);
>> or
>> addEventListener(this.dragEnd,startPanAndZoom);
>>
>> None works. How do I do it then? Any help will be appreciated.
>>
>> Regards
>>
>>
>>
>
> --
> Jeffry Houser, Technical Entrepreneur
> Adobe Community Expert: 
> http://tinyurl.com/684b5hhttp://www.twitter.com/reboog711  | Phone: 
> 203-379-0773
> --
> Easy to use Interface Components for Flex 
> Developershttp://www.flextras.com?c=104
> --http://www.theflexshow.comhttp://www.jeffryhouser.com
> --
> Part of the DotComIt Brain Trust
>
>  
>


Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Vivian Richard
   Thanks for the answer and also for the explanation.

   Regards



On Sat, Oct 24, 2009 at 4:35 PM, Guy Morton  wrote:

>
>
> try addEventListener("dragEnd",startPanAndZoom);
>
> addEventListener expects a string containing the event name as its first
> argument.
>
>
>
> On 25/10/2009, at 10:00 AM, hworke wrote:
>
>
>
> Hello developers,
>
> in a custom component, I defined an event in metatag like this
>
> [Event(name="dragEnd", type="flash.events.Event")]
> public class ta extends TextArea
> {
> }
>
> Now inside this component how do I add the event listener for
> this event which was defined in the metatag.
>
> in the component constructor I tried to add the event listener
> like this
> addEventListener(dragEnd,startPanAndZoom);
> or
> addEventListener(this.dragEnd,startPanAndZoom);
>
> None works. How do I do it then? Any help will be appreciated.
>
> Regards
>
>
>  
>


Re: [flexcoders] Adobe Flex Dashboard

2009-10-07 Thread Vivian Richard
   Angelo - comment out the definition and wherever you see the bug,
   that means it is used in those files. Personally speaking I never did
   use it before so will not be able to explain you how it is used.

   Regards..





On Wed, Oct 7, 2009 at 1:16 AM, Paul Andrews  wrote:

>
>
> Angelo Anolin wrote:
> >
> >
> > Hi Paul,
> >
> > I looked at the StateManager.as file and in the line which Vivian
> > pointed out, this is it:
> >
> > private static var sharedObject:SharedObject =
> > SharedObject.getLocal("com.esria.sample.dashboard");
> >
> > So, how do I know which file is the line above pointing to?
> The real question is - "why should you care where the file is saved"? It
> makes no difference to the application. You should never need to mess
> with the actual file, just interact with the shared object. Google
> "flash shared objects".
>
> Paul
> >
> > Pardon my lack of understanding but this is the first time I
> > encountered/delving into the SharedObject thing.
> >
> > Thanks.
> >
> > Regards,
> >
> > Angelo
> >
> > --
> > *From:* Paul Andrews >
> > *To:* flexcoders@yahoogroups.com 
> > *Sent:* Wednesday, 7 October, 2009 7:08:05
> > *Subject:* Re: [flexcoders] Adobe Flex Dashboard
> >
> >
> >
> > Angelo Anolin wrote:
> > >
> > >
> > > Thanks a lot for pointing this one out Vivian.
> > >
> > > Although I still cannot fathom how the SharedObject is retained even
> > > after the application (SWF) is recompiled. I even did a restart of
> > > the machine and the settings are still there. Isn't it being retained
> > > in some sort of file or something?
> > SharedObject is a file on the computer and retains it's content after
> > the application is shut down, or recompiled, or the computer turned off!
> >
> > Look in StateManager. as - the shared object is there..
> >
> > Paul
> >
> > >
> > > Regards,
> > >
> > > Angelo
> > >
> > >  - - - - - -
> > > *From:* Vivian Richard  > <mailto:kanpsack%40gmail.com >>
> > > *To:* flexcod...@yahoogro ups.com 
> > > <mailto:flexcoders%40yahoogroups.com
> >
> > > *Sent:* Wednesday, 7 October, 2009 0:50:37
> > > *Subject:* Re: [flexcoders] Adobe Flex Dashboard
> > >
> > >
> > >
> > >
> > >
> > > in the file StateManager. as line 17
> > > private static var sharedObject: SharedObject = SharedObject.
> > > getLocal("com. esria.sample. dashboard");
> > >  - - - - -
> > > - - - - - - -
> > > - - - -
> > >
> > >
> > > On Tue, Oct 6, 2009 at 9:23 AM, Angelo Anolin  > > yahoo.com <mailto:angelo_anolin@ yahoo.com
> > <mailto:angelo_anolin%40yahoo.com >>>
> wrote:
> > >
> > >
> > > I tried to locate if SharedObject was used in the application but
> > > I am unable to find one.
> > >
> > > I know it is being set somewhere but I just can't pinpoint it at
> > > this stage.
> > >
> > > Would still appreciate your inputs. In the meantime, let me dig
> > > through this haystack for the needle.
> > >
> > > THanks,
> > >
> > > Angelo
> > >
> > >  - - - - - -
> > > *From:* Vivian Richard  > > <mailto:kanps...@gmail. com 
> > > <mailto:kanpsack%40gmail.com
> >>>
> > > *To:* flexcod...@yahoogro ups.com <mailto:flexcod...@yahoogro
> > ups.com <mailto:flexcoders%40yahoogroups.com
> >>
> > > *Sent:* Wednesday, 7 October, 2009 0:02:22
> > > *Subject:* Re: [flexcoders] Adobe Flex Dashboard
> > >
> > >
> > >
> > >
> > > You can do this using SharedObject - I guess they are also
> > > using SharedObject somewhere. Please see this example
> > > here:
> > >
> > > http://livedocs. <http://livedocs./> adobe.com/ flex/3/html/
> help.html?
> > > content=lsos_ 5.html
> > > <http://livedocs. adobe.com/ flex/3/html/ help.html? content=lsos_
> > 5.html
> > <http://livedocs.adobe.com/flex/3/html/help.html?content=l

Re: [flexcoders] Adobe Flex Dashboard

2009-10-06 Thread Vivian Richard
  in the file StateManager.as line 17
  private static var sharedObject:SharedObject =
SharedObject.getLocal("com.esria.sample.dashboard");



On Tue, Oct 6, 2009 at 9:23 AM, Angelo Anolin wrote:

>
>
> I tried to locate if SharedObject was used in the application but I am
> unable to find one.
>
> I know it is being set somewhere but I just can't pinpoint it at this
> stage.
>
> Would still appreciate your inputs. In the meantime, let me dig through
> this haystack for the needle.
>
> THanks,
>
> Angelo
>
> --
> *From:* Vivian Richard 
> *To:* flexcoders@yahoogroups.com
> *Sent:* Wednesday, 7 October, 2009 0:02:22
> *Subject:* Re: [flexcoders] Adobe Flex Dashboard
>
>
>
>
>You can do this using SharedObject - I guess they are also
>using SharedObject somewhere. Please see this example
>here:
>
>http://livedocs. adobe.com/ flex/3/html/ help.html? content=lsos_
> 5.html<http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_5.html>
>
>
>
>
> On Tue, Oct 6, 2009 at 8:44 AM, Angelo Anolin  yahoo.com
> > wrote:
>
>>
>>
>> Hi Flexcoders!
>>
>> I started dabbling with the codes for the Adobe Flex Dashboard 
>> (http://examples.
>> adobe.com/ flex3/devnet/ dashboard/ 
>> main.html<http://examples.adobe.com/flex3/devnet/dashboard/main.html>)
>> and has been able to load properly all the necessary files and components to
>> run the application.
>>
>> My question is that I think the last view settings are being retained but
>> I do not know where these settings are.  For example, in the first tab
>> (Sales Tab), when I minimize all windows except the Yearly Revenue (the
>> first pod) and close the browser and open it again, those pods which have
>> been minimized remains minimized.  If for example I closed the browser and I
>> was on Marketing tab, opening the application will show me that the
>> Marketing tab is the one currently displayed.
>>
>> I am having a hard time figuring out whether there is a setting which
>> retains what the user has last viewed on this application.  Even recompiling
>> the application and replacing the deployed SWF on the server, the view still
>> points back to the last view prior to the browser (application) being
>> closed.
>>
>> What do you call this feature of Flex applications?  Where do I configure
>> it so that I could reset the application to default view (the view when SWF
>> file was first deployed) when I open the application?
>>
>> Appreciate your advise.
>>
>> Thanks.
>>
>> Regards,
>>
>> Angelo
>>
>>
>
>  
>


Re: [flexcoders] Adobe Flex Dashboard

2009-10-06 Thread Vivian Richard
   You can do this using SharedObject - I guess they are also
   using SharedObject somewhere. Please see this example
   here:

   http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_5.html




On Tue, Oct 6, 2009 at 8:44 AM, Angelo Anolin wrote:

>
>
> Hi Flexcoders!
>
> I started dabbling with the codes for the Adobe Flex Dashboard (
> http://examples.adobe.com/flex3/devnet/dashboard/main.html) and has been
> able to load properly all the necessary files and components to run the
> application.
>
> My question is that I think the last view settings are being retained but I
> do not know where these settings are.  For example, in the first tab (Sales
> Tab), when I minimize all windows except the Yearly Revenue (the first pod)
> and close the browser and open it again, those pods which have been
> minimized remains minimized.  If for example I closed the browser and I was
> on Marketing tab, opening the application will show me that the Marketing
> tab is the one currently displayed.
>
> I am having a hard time figuring out whether there is a setting which
> retains what the user has last viewed on this application.  Even recompiling
> the application and replacing the deployed SWF on the server, the view still
> points back to the last view prior to the browser (application) being
> closed.
>
> What do you call this feature of Flex applications?  Where do I configure
> it so that I could reset the application to default view (the view when SWF
> file was first deployed) when I open the application?
>
> Appreciate your advise.
>
> Thanks.
>
> Regards,
>
> Angelo
>
>  
>


Re: [flexcoders] Hot news! Adobe Opens iPhone to Flash Developers

2009-10-05 Thread Vivian Richard
Wow!!! Thanks for sharing the news. I also found this link in
that news :

 http://labs.adobe.com/technologies/flashcs5/appsfor_iphone/




On Mon, Oct 5, 2009 at 12:25 PM, oneworld95  wrote:

>
>
> This Adobe press release suggests that developers can build Flash apps
> (Flash CS5) for the iPhone:
> http://eon.businesswire.com/portal/site/eon/permalink/?ndmViewId=news_view&newsId=20091005006358&newsLang=en
>
> Does this mean Flash Builder 4/Flex 4 will support the iPhone at some
> point?
>
> - Alex C
>
>  
>


Re: [flexcoders] rotate button

2009-10-04 Thread Vivian Richard
   Thanks Tracy. I have tried both ways and they work as long as
   you are not resizing the parent canvas. But my requirement is
   that the parent canvas needs to be resizable. In simple language
   all I am looking for is a vertical label at the left side of the parent
   canvas that will stay at the vertical center even if the parent canvas
   resizes.






On Sun, Oct 4, 2009 at 7:12 PM, Tracy Spratt  wrote:

>
>
>  Two ways to do this.  The one I have used is to put the thing you want to
> rotate on a canvas and assign negative x,y values to it so its center is at
> the 0,0 of the canvas.. Thus, the rotation about the top/left of the parent
> canvas become becomes rotation about the center of the child.
>
>
>
> The other way is to use a matrix transformation.  I have not done this yet,
> but it essentially does the same thing, moving the rotation registration
> point.
>
>
>
> Tracy Spratt,
>
> Lariat Services, development services available
>   --
>
> *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On
> Behalf Of *hworke
> *Sent:* Saturday, October 03, 2009 6:17 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] rotate button
>
>
>
>
>
>
> I am trying to create a vertical button!!! Basically a 90 degree rotation
> and embedded text will do that. But the problem is that rotation="90"
> command will rotate the button centering top left corner which is the x/y
> coordinate of the button. I do want to rotate it at the center of the
> button. How do I do that?
>
> Regards...
>   
>


Re: [flexcoders] Re: Show ProgressBar upon loading Modules

2009-08-28 Thread Vivian Richard
   Can I use moduleloader with httpservice? I have like 3 pods and they
   get populated by httpservice calls. I do want to show different loaders
   on each pod when the httpservice are being processed. What is the
   solution for me? Any idea?





On Fri, Aug 28, 2009 at 8:30 AM, valdhor wrote:
>
>
> The easy way:
>
> private function readyEventHandler(e:ModuleEvent):void
> {
>        pb.visible = false;
>        pb.includeInLayout = false;
> }
>
> --- In flexcoders@yahoogroups.com, "yonghan79"  wrote:
>>
>> Hi all , i need help please..I've suceeded to show progressbar upon
>> loading modules within FlexMDI Window,but i haven't figured out how to
>> hide the progressbar upon ModuleEvent.READY.. I pu the codes here my
>> codes  ..Thanks a lot...
>>
> 


Re: [flexcoders] multiple loader

2009-08-22 Thread Vivian Richard
   Here is a link. But this guy did not put a  comma Ph.D. so could definately
   be wrong ;-)). Here is his link:

  http://blazenewmedia.com/articles/multiple-ajax-loaders/



On Sat, Aug 22, 2009 at 12:37 PM, Fotis
Chatzinikos wrote:
>
>
> eh? Did you try having 3/4 loaders and making them invisible as your 3/4
> httpservices return :-)?
>
> On Sat, Aug 22, 2009 at 10:13 PM, hworke  wrote:
>>
>>
>>
>> Hi Devs,
>>
>> I am working on a dashboard. In my dashboard I have
>> 3/4 pods and all those pods get populated by 3/4
>> httpservices. How can I show different loaders on
>> each pods and as the pods are populated the loader
>> will disappear? I have seen this kind of multiple
>> loader example in ajax sites where every image has
>> its loaders and as the images appear the loaders goes
>> away.
>>
>
>
>
> --
> Fotis Chatzinikos, Ph.D.
> Founder,
> Phinnovation
> fotis.chatzini...@gmail.com,
> 


Re: [flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread Vivian Richard
   You solution works like "MAGIC". Thanks a lot...




On Sat, Aug 15, 2009 at 3:07 AM, Wesley Acheson wrote:
>
>
> I think its because it doesn't know if its an item or a collection
>
> try the following.  If its not this I can't help.
>
>   var f_Array:ArrayCollection = event.result.RDF.item as ArrayCollection;
>   if (f_Array == null) {
>    f_Array = new ArrayCollection([event.result.RDF.item]);
>   }
> myDataGrid.dataProvider = f_Array;
>
>
> On Sat, Aug 15, 2009 at 9:49 AM, hworke  wrote:
>>
>>
>> Hi, when I am trying to read a RSS link with one item node in it I do not
>> get
>> anything but when the RSS link has more then one item node all
>> the nodes show up. Why can't I read when RSS has only one item?
>> How do I solve this problem?
>>
>> here is how I am handling the the result event of the httpservice:
>>
>> private function userUpdateMyplate(event:ResultEvent):void
>> {
>>   var f_Array:ArrayCollection = event.result.RDF.item as ArrayCollection;
>>   myDataGrid.dataProvider = f_Array;
>> }
>>
>>
>>
>> 
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Alternative FAQ location:
>> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>> Search Archives:
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
>
> 


Re: [flexcoders] Re: Java/Flex questions answered by James Ward

2009-08-14 Thread Vivian Richard
   Please follow the instructions in the following link to post this question:

   http://www.jamesward.com/blog/ask-the-ria-cowboy/




On Fri, Aug 14, 2009 at 12:58 PM, ilikeflex wrote:
>
>
> HI
>
> I am using Blazeds. At the start of my application i am making couple of
> request to get the data from the backend. I am tracking my request through
> Charles Debugger. I see that all my initial request are put together in one
> POST request. I want that each service call to backend be a different POST
> request. So that i can get the data fast.
>
> Please have a look at the screen
> shot.(http://4.bp.blogspot.com/_v7fXKpvsYl0/SoW5_0lZl6I/APg/caJ1-RzjZAE/s1600-h/Query.png)
>
> How can i achieve this?
> I am using the Remote Objec to make the calls
>
> indexProfileListRemoteObject = new RemoteObject("indexMasterDAO");
> indexProfileListRemoteObject.addEventListener( ResultEvent.RESULT,
> indexProfileListHandler );
>
> indexListRemoteObject = new RemoteObject("indexMasterDAO");
> indexListRemoteObject.addEventListener( ResultEvent.RESULT, indexListHandler
> );
>
> Thanks
> ilikeflex
>
>
> --- In flexcoders@yahoogroups.com, James Ward  wrote:
>>
>> Thanks for the plug. I'm using StackOverflow.com to manage the questions.
>> Just tag them with "riacowboy" so that I can find them.
>>
>> I'm seeing a big shift from the Adobe forums, flexcoders, etc to Stack
>> Overflow - so hopefully many here will start getting more involved in Stack
>> Overflow.
>>
>> BTW: Here is the "Ask The RIA Cowboy" post:
>> http://www.jamesward.com/blog/ask-the-ria-cowboy/
>>
>> -James
>>
>>
>> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
>> Behalf Of hworke
>> Sent: Friday, August 14, 2009 11:17 AM
>> To: flexcoders@yahoogroups.com
>> Subject: [flexcoders] Java/Flex questions answered by James Ward
>>
>>
>>
>>
>> Hello Devs,
>>
>> James Ward the Technical Evangelist for Flex at Adobe
>> encourages all to post RIA related questions in his
>> blog. I asked him JAVA/LCDS questions before and got
>> instant answer from him. If you have JAVA/BlazeDS/
>> LCDS related questions then you can post it here:
>>
>> http://www.jamesward.com/blog/
>>
>
> 


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   You can set the left and the right gutter to 0 to make the gap smaller and
   also making the axis not that thick.




On Thu, Aug 6, 2009 at 3:28 PM, Richard Rodseth wrote:
>
>
> Yes, that's pretty much what I've got now. It's not bad (and some might even
> prefer not having the chart re-layout to occupy the freed up space when an
> axis is hidden).
>
> Thanks.
>
> On Thu, Aug 6, 2009 at 3:16 PM, Vivian Richard  wrote:
>>
>>
>>
>> Try this code it does make the axis invisible:
>>
>> 
>> 
>> http://www.adobe.com/2006/mxml";>
>> 
>>
>> > color="{smithColor}"
>> weight="8"
>> alpha=".75"
>> caps="square"
>> />
>>
>> > color="{deckerColor}"
>> weight="8"
>> alpha=".75"
>> caps="square"
>> />
>>
>> 
>> 
>> 
>> 
>> 
>>
>> 
>> 
>> 
>>
>> 
>> > visible="{leftBoolean}">
>> {h1Stroke}
>> 
>> > visible="{rightBoolean}">
>> {h2Stroke}
>> 
>> 
>>
>> 
>> > horizontalAxis="{h1}"
>> dataProvider="{SMITH}"
>> yField="close"
>> displayName="SMITH"
>> >
>> 
>> 
>> 
>>
>> 
>> 
>> 
>> 
>> > horizontalAxis="{h1}"
>> dataProvider="{DECKER}"
>> yField="close"
>> displayName="DECKER"
>> >
>> 
>> > maximum="170"/>
>> 
>>
>> 
>> > color="{deckerColor}"
>> weight="4"
>> alpha="1"
>> />
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>>
>> On Thu, Aug 6, 2009 at 3:05 PM, Richard Rodseth wrote:
>> >
>> >
>> > The chart has two sets of dynamically-generated series A & B, one
>> > associated
>> > with the left axis, one with the right. There are two checkboxes
>> > controlling
>> > the visibility. I would like each checkbox to remove the corresponding
>> > series set, and corresponding axis. So you can view none, A (left), B
>> > (right) or A & B (left and right).
>> >
>> > I was able to get rid of the unwanted third (default) axis only if I
>> > defined
>> > the verticalAxisRenderers within the body of the LineChart tag rather
>> > than
>> > using my buidAxisRenderers binding function. If I then call
>> > buildAxisRenderers from within buildSeriesList, the axes disappear, but
>> > the
>> > bogus one reappears as soon as I uncheck both checkboxes.
>> >
>> > My workaround for now is to leave the verticalAxisRenders property
>> > unchanged, but set the visibility flag of each renderer instead. This
>> > means
>> > the chart does not re-layout.
>> >
>> > Thanks.
>> >
>> > On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard 
>> > wrote:
>> >>
>> >>
>> >>
>> >> Do you think that you get this gap, because there is another axis
>> >> there?
>> >> By the way as I understand you need 2 axises - left and right - then
>> >> why
>> >> are you adding another axis on left and then rendering. Why not just
>> >> render the axis that comes with the chart?
>> >>
>> >> On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth
>> >> wrote:
>> >> >
>> >> >
>> >> > I don't think that's it. Seems others have the same issue:
>> >> >
>> >> >
>> >> >
>> >> > http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>> >> >
>> >> > Even if I do what that thread suggests as below, I get a gap on the
>> >> > left
>> >> > when the right axis is added.
>> >> >
>> >> >        private function buildAxisRenderers(showLeftAxis:Boolean,
>> >> > showRightAxis:Boolean):Array {
>> >> >
>> >> >             // Workaround
>> >> >             var verticalAxisRenderer:AxisRenderer = new
>> >> > AxisRenderer();
>> >> >     verticalAxisRenderer.visible = false;
>> >> >     verticalAxisRenderer.h

Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   Try this code it does make the axis invisible:



http://www.adobe.com/2006/mxml";>
  

  

  

  
 

   








{h1Stroke}


{h2Stroke}




   





   

   
   







   

 
 
 




 
  





















On Thu, Aug 6, 2009 at 3:05 PM, Richard Rodseth wrote:
>
>
> The chart has two sets of dynamically-generated series A & B, one associated
> with the left axis, one with the right. There are two checkboxes controlling
> the visibility. I would like each checkbox to remove the corresponding
> series set, and corresponding axis. So you can view none, A (left), B
> (right) or A & B (left and right).
>
> I was able to get rid of the unwanted third (default) axis only if I defined
> the verticalAxisRenderers within the body of the LineChart tag rather than
> using my buidAxisRenderers binding function. If I then call
> buildAxisRenderers from within buildSeriesList, the axes disappear, but the
> bogus one reappears as soon as I uncheck both checkboxes.
>
> My workaround for now is to leave the verticalAxisRenders property
> unchanged, but set the visibility flag of each renderer instead. This means
> the chart does not re-layout.
>
> Thanks.
>
> On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard  wrote:
>>
>>
>>
>> Do you think that you get this gap, because there is another axis there?
>> By the way as I understand you need 2 axises - left and right - then why
>> are you adding another axis on left and then rendering. Why not just
>> render the axis that comes with the chart?
>>
>> On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth wrote:
>> >
>> >
>> > I don't think that's it. Seems others have the same issue:
>> >
>> >
>> > http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>> >
>> > Even if I do what that thread suggests as below, I get a gap on the left
>> > when the right axis is added.
>> >
>> >        private function buildAxisRenderers(showLeftAxis:Boolean,
>> > showRightAxis:Boolean):Array {
>> >
>> >             // Workaround
>> >             var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
>> >     verticalAxisRenderer.visible = false;
>> >     verticalAxisRenderer.height = 0;
>> >     verticalAxisRenderer.width = 0;
>> >     verticalAxisRenderer.setStyle("showLabels", false);
>> >     lineChart.verticalAxisRenderer = verticalAxisRenderer;
>> >
>> >               if (showLeftAxis && showRightAxis)
>> >                   return [ leftAxisRenderer, rightAxisRenderer];
>> >             if (showLeftAxis && !showRightAxis)
>> >                   return [ leftAxisRenderer ];
>> >             if (showRightAxis && !showLeftAxis)
>> >                 return [ rightAxisRenderer ];
>> >             return [ ];
>> >
>> >           }
>> >
>> >
>> > On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard 
>> > wrote:
>> >>
>> >>
>> >>
>> >> I guess you are adding an additional axis. As you know if you
>> >> do not define your axis and put an id for it. The chart will add
>> >> the default axis. Now do not do it that way declare both axis
>> >> and then tie up the axis renderer with it. I guess that will resolve
>> >> you issue.
>> >>
>> >> Here you can see the example:
>> >> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>> >>
>> >> On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth
>> >> wrote:
>> >> >
>> >> >
>> >> > I have a line chart where the user can show/hide the left and right
>> >> > axes
>> >> > (which have custom colours) and the corresponding series.
>> >> >
>> >> >         > >> >         dataProvider="{...}"
>> >> >
>> >> > verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>> >> >         series="{this.buildSeriesList(...)}"
>> >> >         >
>> >> >
>> >> >    Works fine, except I get two left axes, my custom one and the
>> >> > default
>> >> > grey one which never goes away. Any ideas? Thanks in advance.
>> >> >
>> >> >
>> >> >
>> >
>> >
>
> 


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   Do you think that you get this gap, because there is another axis there?
   By the way as I understand you need 2 axises - left and right - then why
   are you adding another axis on left and then rendering. Why not just
   render the axis that comes with the chart?





On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth wrote:
>
>
> I don't think that's it. Seems others have the same issue:
>
> http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>
> Even if I do what that thread suggests as below, I get a gap on the left
> when the right axis is added.
>
>        private function buildAxisRenderers(showLeftAxis:Boolean,
> showRightAxis:Boolean):Array {
>
>             // Workaround
>             var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
>     verticalAxisRenderer.visible = false;
>     verticalAxisRenderer.height = 0;
>     verticalAxisRenderer.width = 0;
>     verticalAxisRenderer.setStyle("showLabels", false);
>     lineChart.verticalAxisRenderer = verticalAxisRenderer;
>
>               if (showLeftAxis && showRightAxis)
>                   return [ leftAxisRenderer, rightAxisRenderer];
>             if (showLeftAxis && !showRightAxis)
>                   return [ leftAxisRenderer ];
>             if (showRightAxis && !showLeftAxis)
>                 return [ rightAxisRenderer ];
>             return [ ];
>
>           }
>
>
> On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard  wrote:
>>
>>
>>
>> I guess you are adding an additional axis. As you know if you
>> do not define your axis and put an id for it. The chart will add
>> the default axis. Now do not do it that way declare both axis
>> and then tie up the axis renderer with it. I guess that will resolve
>> you issue.
>>
>> Here you can see the example:
>> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>>
>> On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth
>> wrote:
>> >
>> >
>> > I have a line chart where the user can show/hide the left and right axes
>> > (which have custom colours) and the corresponding series.
>> >
>> >         > >         dataProvider="{...}"
>> >         verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>> >         series="{this.buildSeriesList(...)}"
>> >         >
>> >
>> >    Works fine, except I get two left axes, my custom one and the default
>> > grey one which never goes away. Any ideas? Thanks in advance.
>> >
>> >
>> >
>
> 


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
I guess you are adding an additional axis. As you know if you
do not define your axis and put an id for it. The chart will add
the default axis. Now do not do it that way declare both axis
and then tie up the axis renderer with it. I guess that will resolve
you issue.

Here you can see the example:
http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html




On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth wrote:
>
>
> I have a line chart where the user can show/hide the left and right axes
> (which have custom colours) and the corresponding series.
>
>                  dataProvider="{...}"
>         verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>         series="{this.buildSeriesList(...)}"
>         >
>
>    Works fine, except I get two left axes, my custom one and the default
> grey one which never goes away. Any ideas? Thanks in advance.
>
>
> 


Re: [flexcoders] Re: Flex Accordion Menu?

2009-08-04 Thread Vivian Richard
   Great Very happy to hear that it worked :-). Cheers.



On Mon, Aug 3, 2009 at 7:31 PM, Ben wrote:
>
>
> Thank you! That works perfectly. I'm using normal buttons for the top level
> items with no children, and I'm using a window shade for top level items
> with children. I also set the verticalGap and the paddingTop to 0 on the
> window shade to remove extra space.
>
> --- In flexcoders@yahoogroups.com, Vivian Richard  wrote:
>>
>> See if this helps
>>
>>
>> http://flexlib.googlecode.com/svn/trunk/examples/WindowShade/WindowShade_Sample.swf
>>
>>
>>
>> On Mon, Aug 3, 2009 at 5:59 PM, Ben wrote:
>> >
>> >
>> > I am creating a website in Flex, and one of the requirements is an
>> > accordion
>> > like menu. See this image for what it needs to look like:
>> > http://i25.tinypic.com/1735hy.png
>> >
>> > The gray items do not have children. The dark blue items are children of
>> > the
>> > light blue item.
>> >
>> > Would someone tell me a good way to make this? I tried using a Tree with
>> > custom item renderers but have so far been unsuccessful.
>> >
>> > Any help is greatly appreciated.
>> >
>> >
>>
>
> 


Re: [flexcoders] Flex Accordion Menu?

2009-08-03 Thread Vivian Richard
   See if this helps


http://flexlib.googlecode.com/svn/trunk/examples/WindowShade/WindowShade_Sample.swf



On Mon, Aug 3, 2009 at 5:59 PM, Ben wrote:
>
>
> I am creating a website in Flex, and one of the requirements is an accordion
> like menu. See this image for what it needs to look like:
> http://i25.tinypic.com/1735hy.png
>
> The gray items do not have children. The dark blue items are children of the
> light blue item.
>
> Would someone tell me a good way to make this? I tried using a Tree with
> custom item renderers but have so far been unsuccessful.
>
> Any help is greatly appreciated.
>
> 


Re: [flexcoders] Re: this group isn't very good

2009-08-03 Thread Vivian Richard
Well, it is true that yahoo search is not as good as google. That is
why I am using gmail. I am using this account for last 2 years and
have all the email here. As of today I have 21000+ emails :-). I just
use my email search to find old emails!!!





On Mon, Aug 3, 2009 at 10:53 AM, Jason B wrote:
>
>
> Yup that works perfect I love google search engine
>
> --- In flexcoders@yahoogroups.com, Howard Fore  wrote:
>>
>> For heaven's sake don't fork the community, just use Google to search the
>> group. Put use the following line in your search terms:
>>
>> site:tech.groups.yahoo.com inurl:flexcoders
>>
>> --
>> Howard Fore, howard.f...@...
>> "The worthwhile problems are the ones you can really solve or help solve,
>> the ones you can really contribute something to. ... No problem is too
>> small
>> or too trivial if we can really do something about it." - Richard P.
>> Feynman
>>
>>
>> On Mon, Aug 3, 2009 at 8:14 AM, mitchgrrt  wrote:
>>
>> > Sorry for the provocative message title. The contents of the group, and
>> > the people who are exchanging information, are fine.
>> >
>> > Yahoo Groups aren't very good. Information is organized poorly, and
>> > Search
>> > doesn't work. I searched for a message I sent last week and it wasn't
>> > found. Searching for my name turns up some messages I sent several
>> > months
>> > ago but no recent ones.
>> >
>> > Google Groups work much better than Yahoo Groups. Information is easier
>> > to
>> > find, and search works. I wish this group were hosted on Google instead
>> > of
>> > Yahoo.
>> >
>> >
>> >
>> > 
>> >
>> > --
>> > Flexcoders Mailing List
>> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> > Alternative FAQ location:
>> >
>> > https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>> > Search Archives:
>> > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
>> > Links
>> >
>> >
>> >
>> >
>>
>
> 


Re: [flexcoders] AIR html component

2009-07-28 Thread Vivian Richard
Thanks Sam. I have also just seen your below reply on june 11th:

--
You can access the HTML DOM of that page like this, and get whatever
you want, just like you can in JS:

var forms:* = browser.domWindow.document.getElementsByTagName("form");
var loginForm:* = null;
for each (var f:* in forms)
{
if (f.innerText.toLowerCase().indexOf("login") >= 0)
{
loginForm = f;
break;
}
}
--

Your examples works fine. But the examples in this adobe link
does not work:
http://labs.adobe.com/wiki/index.php/AIR:Articles:Using_HTML_in_Flex-based_Adobe_AIR_Applications

The complete example in this example does not work!!! And as you
see the map example the call the java script function just like
this html.javaScriptWindow.locateHouse(.) but it does not work

"javaScriptWindow" gives error message!!!





On Tue, Jul 28, 2009 at 6:43 PM, Sam Lai wrote:
>
>
> browser.domWindow where browser is the mx:HTML component.
>
> Don't know if you can call them via that interface though; maybe the
> 'javascript:my_js_function()' in the location bar trick works?
>
> 2009/7/29 hworke :
>
>>
>>
>> Hi if I load www.google.com in a HTML component
>> like this http://www.google.com";>
>>
>> then how can I access the JavaScript functions in the
>> google page?
>>
>>
>>
>> 
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Alternative FAQ location:
>> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>> Search Archives:
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
>>
> 


Re: [flexcoders] Re: how to auto refresh datagrid using httpservice

2009-07-23 Thread Vivian Richard
Here is the code that will work for your need:





http://www.adobe.com/2006/mxml";
layout="absolute" creationComplete="init()">
  

  
  http://localhost:8080/real/test.jsp"/>
  

















On Thu, Jul 23, 2009 at 7:10 AM, postwick wrote:
>
>
> I should have finished reading that blog post before I sent this. I guess
> there is a more "modern" way to do this:
>
> http://livedocs.adobe.com/flex/3/html/help.html?content=08_Dates_and_times_4.html
>
> --- In flexcoders@yahoogroups.com, "postwick"  wrote:
>>
>> You would use setInterval()
>>
>>
>> http://blog.flexexamples.com/2008/02/14/creating-timers-using-the-setinterval-method/
>>
>> However, I recommend looking into LCDS (LiveCycle Data Services). It does
>> this automatically.
>>
>> --- In flexcoders@yahoogroups.com, "Shoukat Ali"  wrote:
>> >
>> > this is my mxml file ::
>> >
>> > --
>> > 
>> > http://www.adobe.com/2006/mxml";
>> > layout="absolute" creationComplete="realData.send()">
>> > > > url="http://localhost:8080/real/test.jsp"/>
>> > > > dataProvider="{realData.lastResult.response.data.row}">
>> > 
>> > 
>> >
>> > --
>> >
>> > i am using jsp as dataprovider, now i want to refresh the page per 5
>> > seconds, so that the jsp is called per 5 sec. and pull the updated data 
>> > from
>> > database. database is being updated regularly by other application.
>> >
>>
>
> 


Re: [flexcoders] HELP PLS

2009-07-03 Thread Vivian Richard
http://www.adobe.com/devnet/flex/videotraining/





On Fri, Jul 3, 2009 at 8:21 AM, veerendra wrote:
>
>
> I'm trying to learn Flex.
> Can anyone guide me, where I can get the information about this.
> I am beginner to Flex
> Thanks in Advance.
>
> 


Re: [flexcoders] Flying text or passing text??

2009-06-16 Thread Vivian Richard
   Where can I view those examples? I have used move effect for canvas
   and panel. The way I used it was - I made the x or y coordinate of the
   moving element to some thing so that it is not visible at all and once
   some event is triggered I just move it in using move effect.

   Are you suggesting that same thing for this text effect?





On Wed, Jun 17, 2009 at 12:29 AM, Tracy Spratt wrote:
>
>
> One way to do this is to use a canvas of fixed width and inside that have a
> lable that is the length of the text, and use a Move effect to move the
> label over the canvas.
>
>
>
> There are examples available.
>
>
>
> Tracy Spratt,
>
> Lariat Services, development services available
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of hworke
> Sent: Wednesday, June 17, 2009 1:04 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Flying text or passing text??
>
>
>
>
>
>
> Hi, I am trying to create an effect using
> text. I do not know what to call it - flying
> text or passing text!! At the bottom of
> the TV screen we always see Headline news
> or stock market info text are moving from
> right to left - I want to do something like
> that. What is the best option for me?
>
> Regards..
>
> 


Re: [flexcoders] Application in Full Screen

2009-06-14 Thread Vivian Richard
I am using this but do not like it, because it will cover everything-
even the task bar at the bottom of the screen!! Also will not show
the native window chrome!!! To see those max, min, close button
you will need to press escape button to make the window smaller
and after that you will be able to minimize, maximize and close
the native air app window. What I would like is instead of full screen,
the window in max mode!!! Any idea???






On Sun, Jun 14, 2009 at 8:55 AM, Rohit Sharma wrote:
>
>
>   Hi,
>
>                 If I am right, you are looking for something like
>
>    Application.application.stage.displayState =
> StageDisplayState.FULL_SCREEN;
>
>
>   Regards,
>   Rohit
>
> On Sun, Jun 14, 2009 at 6:04 PM, christophe_jacquelin
>  wrote:
>>
>>
>> Hello,
>>
>> How to set an application in Full screen (without the navigator buttons) ?
>>
>> Thank you,
>> Christophe,
>>
>
> 


Re: [flexcoders] Flex 4/Catalyst Now Available for Download on Adobe labs? [1 Attachment]

2009-06-01 Thread Vivian Richard
  If any one out there is "smart" like me then you can even
  get a DVD which looks like this YAA BABY!
  :-))








On Mon, Jun 1, 2009 at 10:22 AM, Brad Bueche  wrote:
>
>
> LOL!
>
> I feel like the character Jeff Goldblum played in the Big Chill when he and
> Glenn Close came down stairs after everybody else had eaten breakfast and
> gone out for the day and he said "Are we the first ones up?"
>
> brad
>
> On Mon, Jun 1, 2009 at 11:11 AM, Nate Beck  wrote:
>>
>>
>>
>> http://blog.natebeck.net/2009/05/the-flash-builder-4-and-flash-catalyst-betas-are-out/
>>
>>
>> http://blog.digitalbackcountry.com/2009/05/flash-builder-and-flash-catalyst-betas-now-available/
>>
>> http://www.webkitchen.be/2009/05/31/get-your-flash-catalyst-flash-builder-beta-now/
>>
>> http://butterfliesandbugs.wordpress.com/2009/06/01/flex-4-public-beta-released-its-alive/
>>
>> http://www.coldfusionjedi.com/index.cfm/2009/6/1/Flash-Builder-4-and-Flash-Catalyst-hit-Labs
>>
>> Just to name a few ;)
>>
>>
>> On Mon, Jun 1, 2009 at 8:01 AM, Brad Bueche  wrote:
>>>
>>>
>>> Am I the only one seeing this?  I expected to see a flurry of posts on
>>> this.  Anyway,  wait a few minutes so I can get my stuff downloaded first!
>>> :)
>>>
>>> It must be real because I'm downloading!
>>>
>>> brad
>>
>>
>>
>> --
>>
>> Cheers,
>> Nate
>> 
>> http://blog.natebeck.net
>>
>>
>
> 


Re: [flexcoders] chart "labelRotation" problem

2009-05-24 Thread Vivian Richard
Please see this link --

 http://demo.quietlyscheming.com/ChartSampler/app.html

In the Style folder see the Axis Labels example. You can also
see the code.

Regards






On Sat, May 23, 2009 at 11:02 AM, Jake Churchill  wrote:
>
>
> It seems like I’ve gotten this working before.  At least on the axis I did
> but I had to embed the font for it to work.  I think by default, Flex can
> only rotate the system font or one that’s embedded in the app.
>
>
>
> Here’s a link to the widget I did with this:
>
>
>
> http://www.sonburst.com/lfg/LFG401kAssetAccumulationChart/LFG401kAssetAccumulationChart4.html
>
>
>
> The right vertical axis has rotation applied.
>
>
>
> Jake Churchill
>
> CF Webtools
>
> 11204 Davenport, Ste. 100
>
> Omaha, NE  68154
>
> http://www.cfwebtools.com
>
> 402-408-3733 x103
>
>
>
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of Vikram Singh
> Sent: Saturday, May 23, 2009 5:32 AM
> To: Flex Coders
> Subject: [flexcoders] chart "labelRotation" problem
>
>
>
>
> Hello Friends,
> I am facing problem in "labelRotation" of ColumnChart.
> Can we use labelRotation with ColumnChart ?? If no, which one is suitable
> option?
>
> I want to display label (Text type as well as Numbers) of horizontal axis at
> 45 degree of rotation.
> any idea please
>
> Regards,
> Vikram
>
> 
>
> Cricket on your mind? Visit the ultimate cricket website. Enter now!
>
> 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
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:flexcoders-dig...@yahoogroups.com 
mailto:flexcoders-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [flexcoders] Are you using the Marshall Plan?

2009-05-06 Thread Vivian Richard
   Matt just a question regarding your software development process-
   what exact methodology do you guys(you flex team) follow to develop
   the Flex platform?






On Wed, May 6, 2009 at 1:23 PM, Matt Chotin  wrote:
>
>
> Are you building apps in a modular fashion where those modules need to
> support different Flex versions? Do you have nightmares where Alex is
> explaining SecurityDomains and ApplicationDomains and
> SWFLoader.loadForCompatibility?
>
> Please let me know (email me at mcho...@adobe.com), we're trying to evaluate
> some pain points and whether I need to bribe the Player team to solve them
> ASAP or if it can wait a release.
>
> Matt
>
> 


Re: [flexcoders] 100,000 buttons

2009-05-05 Thread Vivian Richard
:-


On Tue, May 5, 2009 at 7:18 AM, Paul Andrews  wrote:
>
>
> - Original Message -
> From: "ew6014" 
> To: 
> Sent: Tuesday, May 05, 2009 12:18 PM
> Subject: [flexcoders] 100,000 buttons
>
>> hi guys.. any idea why the browser screws up if i were to create 100,000
>> buttons like the example below? ... up to 1000 it works fine. but more
>> then that it goes crazy... any thoughts?
>
> Yes. Don't create 100,000 buttons.
>
> For goodness sake, why would you even try and do that?
>
> Paul
>
> 


Re: [flexcoders] Re: flex builder 3 blazeds and spring

2009-05-03 Thread Vivian Richard
   Please view this link, ,might help-


http://coenraets.org/blog/2009/01/new-springblazeds-integration-test-drive/





On Fri, May 1, 2009 at 10:08 AM, duncmcm  wrote:
>
>
> Thanks Gregor
>
> Would you know of a good article to guide me through the steps of setting up
> blazeds with flex builder 3 standard, and then blazeds to spring-flex and
> java?
>
> Thanks again
>
> Duncan
>
> --- In flexcoders@yahoogroups.com, "Gregor Kiddie"  wrote:
>>
>> Standard is fine, you do not need Pro.
>>
>>
>>
>> Gk.
>>
>> Gregor Kiddie
>> Senior Developer
>> INPS
>>
>> Tel: 01382 564343
>>
>> Registered address: The Bread Factory, 1a Broughton Street, London SW8
>> 3QJ
>>
>> Registered Number: 1788577
>>
>> Registered in the UK
>>
>> Visit our Internet Web site at www.inps.co.uk
>> http://www.inps.co.uk/>
>>
>> The information in this internet email is confidential and is intended
>> solely for the addressee. Access, copying or re-use of information in it
>> by anyone else is not authorised. Any views or opinions presented are
>> solely those of the author and do not necessarily represent those of
>> INPS or any of its affiliates. If you are not the intended recipient
>> please contact is.helpd...@...
>>
>> 
>>
>> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
>> Behalf Of duncmcm
>> Sent: 01 May 2009 14:59
>> To: flexcoders@yahoogroups.com
>> Subject: [flexcoders] flex builder 3 blazeds and spring
>>
>>
>>
>>
>>
>>
>>
>>
>> Hi
>>
>> I hav read a few articles and I am confused as to what I need, flex
>> envirnomental wise, I want to connect to blazeds, spring and java via my
>> flex builder 3 standard edition, but these articles are saying I cannot,
>> and need to use normal eclipse with a flex 3 plugin.
>>
>> Is this correct ??
>>
>> Could anyone advise of any definitive article I can refer to or what IDE
>> versions I need, do I need the flex builder 3 professional edition to do
>> this?
>>
>> Thanks in advance
>>
>> Duncan
>>
>
> 


Re: [flexcoders] Re: Adobe's stimulus package!!!! FREE FLEX BUILDER!!!!

2009-04-09 Thread Vivian Richard
Well you can use it to learn Flex. You can use it to create a prototype
of an application. Once you are an expert of Flex by using this trial
version you can create your whole application using it. But when you
are building it for deployment compile it with free SDK and only deploy
the one that is complied with free SDK. This way you are taking the full
advantage of using the Flex builder to develop your app But when
the app is totally ready compile it with free SDK and deploy
it I guess
this way you will not violate the licence terms but still be able to use
the FB 3 to develop the app. :-)))



On Wed, Apr 8, 2009 at 9:52 PM, stinasius  wrote:
>
>
> let me get this straight, does that mean that i cannot deploy an app
> developed with this version of flex and if the answer is yes, then what am i
> supposed to do with the flex 3 free version?
>
> 


Re: [flexcoders] datagrid cell

2009-03-15 Thread Vivian Richard
   Thanks Tracy,

   actually what I need to do is - I want to
   populate  a datagrid from a 2 dimensional array.
   suppose I have a 2D array which ar[][]. Now I
   want to manually put the content of the array
   in a datagrid. By the way I have already created
   columns by figuring out the width of the 2D array.
   Now all I need to do is iterate through the array
   and put them in the datagrid cell.

   regards...




On Sun, Mar 15, 2009 at 12:38 PM, Tracy Spratt  wrote:
> This is “Red Flag” question.  You do *not* retrieve data from a datagrid
> cell.  Your retrieve data from the datagrid’s dataProvider.
>
>
>
> Do you understand about item renderers and recycling?
>
>
>
> How are you getting “row number”
>
>
>
> Tracy Spratt,
>
> Lariat Services, development services available
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of hworke
> Sent: Sunday, March 15, 2009 3:54 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] datagrid cell
>
>
>
> Hi am trying to retrieve the data from a datagrid
> pointed by its column number and row number. Suppose
> if 4,5 is given I need to find the value that is
> stored in column 4 and row 5. How do I do that.
>
> Regards...
>
> 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
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:flexcoders-dig...@yahoogroups.com 
mailto:flexcoders-fullfeatu...@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
flexcoders-unsubscr...@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



Re: [flexcoders] tree control finding patent node

2009-03-02 Thread Vivian Richard
 thanks a lot!!

On Mon, Mar 2, 2009 at 1:34 PM, Jim Hayes  wrote:
> This actually from a change event, but an itemClicked one is very
> similar ...
> (It presumes that you use xml as the dataprovider for the tree, and
> listen for the event by adding 'change="onTreeChange(event)"' in your
> trees attributes )
>
> private function onTreeChange(event:ListEvent):void
> {
> var targetTree:Tree = event.target as Tree;
>
> var item:XML = XML(targetTree.selectedItem);
>
> var theParent:XML = item.parent();
>
> }
>
> It does seem a bit unintuitive to get an XML object, but normally that
> works fine for what you're likely to want to do, I've found.
>
> Hope that's enough to be helpful!
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of hworke
> Sent: 02 March 2009 21:18
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] tree control finding patent node
>
> Hi, in a tree control if a leaf node if clicked
> how do I find out which folder it belongs to or
> which node is its parent?
>
> Regards...
>
> __
> This communication is from Primal Pictures Ltd., a company registered in
> England and Wales with registration No. 02622298 and registered office: 4th
> Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
> VAT registration No. 648874577.
>
> This e-mail is confidential and may be privileged. It may be read, copied
> and used only by the intended recipient. If you have received it in error,
> please contact the sender immediately by return e-mail or by telephoning
> +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
> contents to any person.
> This email has been scanned for Primal Pictures by the MessageLabs Email
> Security System.
> __
> 


Re: [flexcoders] Re: Gumbo / Flex 4 release date estimate?

2009-02-21 Thread Vivian Richard
 But I guess they already have the beta version of Flex builder 4 ready!
 As I understood Flex Builder 4 beta version was distributed among
 the participant of MAX last year at SF. Am I right?



On Sat, Feb 21, 2009 at 10:35 AM, Jeffry Houser  wrote:
>
>  You can get nightly builds of the Flex SDK from here:
> http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4
>
>  As to when they'll slap a "Beta" name on it or release a lex Builder 4 beta
> is anyone's guess.  Sometimes that occurs 4-6 months before release, so I'd
> expect to see something like that before the end of next quarter.
>
> Vivian Richard wrote:
>
>When the beta version of Flex Builder 4 will be released?
>
>
>
>
> On Sat, Feb 21, 2009 at 1:26 AM, Cato Paus  wrote:
>
>
> How to handle the bugeting, we have the Upgrade Plan and Maintenance on
> Flex builder and LCDS it works greeat each year we pay Adobe a sum, and
> we always have the last software :)
> http://www.adobe.com/support/programs/customer/platinum.html
>
> --- In flexcoders@yahoogroups.com, "Jason"  wrote:
>
>
> I know there is never an official announcement about release dates
>
>
> from
>
>
> Adobe until right before it happens... I have searched the archives
> because I know it was mentioned before, but anyone have a good
> idea/guess when Flexbuilder 4 will be released? Even just your best
> (somewhat informed) idea of what quarter of 2009 it will be?
>
> Budgeting for software for the year is always tough when it comes to
> stuff like this - we just want to know when to put money aside for
> this. Thanks!
>
> Jason Merrill
>
>
>
>
>
> 
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Alternative FAQ location:
> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>
>
>
>
>
>
> --
> Jeffry Houser, Technical Entrepreneur
> Adobe Community Expert: http://tinyurl.com/684b5h
> http://www.twitter.com/reboog711  | Phone: 203-379-0773
> --
> Easy to use Interface Components for Flex Developers
> http://www.flextras.com?c=104
> --
> http://www.theflexshow.com
> http://www.jeffryhouser.com
> --
> Part of the DotComIt Brain Trust
>
> 


Re: [flexcoders] Re: Gumbo / Flex 4 release date estimate?

2009-02-21 Thread Vivian Richard
   When the beta version of Flex Builder 4 will be released?




On Sat, Feb 21, 2009 at 1:26 AM, Cato Paus  wrote:
> How to handle the bugeting, we have the Upgrade Plan and Maintenance on
> Flex builder and LCDS it works greeat each year we pay Adobe a sum, and
> we always have the last software :)
> http://www.adobe.com/support/programs/customer/platinum.html
>
> --- In flexcoders@yahoogroups.com, "Jason"  wrote:
>>
>> I know there is never an official announcement about release dates
> from
>> Adobe until right before it happens... I have searched the archives
>> because I know it was mentioned before, but anyone have a good
>> idea/guess when Flexbuilder 4 will be released? Even just your best
>> (somewhat informed) idea of what quarter of 2009 it will be?
>>
>> Budgeting for software for the year is always tough when it comes to
>> stuff like this - we just want to know when to put money aside for
>> this. Thanks!
>>
>> Jason Merrill
>>
>
> 


Re: [flexcoders] How to set LCDS development enviroment in Eclipse?

2009-01-27 Thread Vivian Richard
   also

   http://coenraets.org/blog/category/lcds/




On Tue, Jan 27, 2009 at 1:39 PM, Vivian Richard  wrote:
>   check this link:
>
>   http://coenraets.org/downloads/max2008/flex-dataservices-tutorial.pdf
>
>
>
>
>
> On Tue, Jan 27, 2009 at 1:25 PM, markflex2007  wrote:
>> Hi,
>>
>> I try to use Eclipse to develop both Flex and Java codes and deploy
>> them to Tomcat 6 automatically.
>>
>> Please give me a idea.
>>
>> Thanks a lot
>>
>> Mark
>>
>> 
>


Re: [flexcoders] How to set LCDS development enviroment in Eclipse?

2009-01-27 Thread Vivian Richard
   check this link:

   http://coenraets.org/downloads/max2008/flex-dataservices-tutorial.pdf





On Tue, Jan 27, 2009 at 1:25 PM, markflex2007  wrote:
> Hi,
>
> I try to use Eclipse to develop both Flex and Java codes and deploy
> them to Tomcat 6 automatically.
>
> Please give me a idea.
>
> Thanks a lot
>
> Mark
>
> 


Re: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Vivian Richard
   Once it is released, if we download the current FB will it come with
   3.3?




On Tue, Jan 27, 2009 at 10:05 AM, Matt Chotin  wrote:
> We haven't shipped yet :-) still a few weeks away.
>
> On 1/27/09 10:03 AM, "Andres Serral"  wrote:
>
> I´cant found the releases notes.
>
> 
> From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
> Behalf Of Matt Chotin
> Sent: Tuesday, January 27, 2009 3:56 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: Flex 3.3
>
> Correct
>
> On 1/27/09 9:44 AM, "securenetfreedom"   > wrote:
>
> So, 3.3 will *not* apply to eclipse FB plugin?
>
> Jeff
>
> --- In flexcoders@yahoogroups.com 
>  , Matt Chotin  wrote:
>>
>> It's all bug fixes, and not a huge number of them. We're not going
> to have an associated Flex Builder release either, just the SDK
> (though we'll get the charts updated).
>>
>> Matt
>>
>>
>> On 1/26/09 1:18 PM, "tntomek"  wrote:
>>
>>
>>
>>
>> Looks like we finally have official 3.3 SDK builds out.
>>
>> http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3
>>
>> This seems to have been a relabeling as changes between last 3.2 build
>> and 3.3 build are very minor.
>>
>> Does anyone know what features or changes 3.3 will bring us?
>>
>
> 


Re: [flexcoders] flex builder student version

2009-01-22 Thread Vivian Richard
reinstall worked. Thanks



On Thu, Jan 22, 2009 at 8:38 AM, Sam Lai  wrote:
> Check that your license.properties file exists in the right location
> with the right key - the locations are here,
> http://blogs.adobe.com/flexdoc/2008/04/extracting_data_visualization.html
>
> If it doesn't a reinstall of FB3 might help.
>
> 2009/1/22 Vivian Richard :
>
>> But Sam I am getting the water mark!!! Do you know why?
>> I put the serial number on help->Manage Flex licenses and
>> I thought it should take care of it. But it did not!!!
>>
>>
>>
>> On Wed, Jan 21, 2009 at 11:47 AM, Sam Lai  wrote:
>>> Yes - I've built an app using a student license from
>>> flexregistration.com and it has no watermarks on the charting
>>> components.
>>>
>>> Even better, there is no limitation if you wish to commercialise your
>>> creation - no need to buy a copy of Flex Builder for commercial
>>> purposes.
>>>
>>> 2009/1/22 hworke :
>>>
>>>>
>>>>
>>>> Hi does the the student/faculty version license of
>>>> flex builder will remove the water mark from the
>>>> flex charting?
>>>>
>>>> Regards
>>>>
>>>>
>>>> 
>>>>
>>>> --
>>>> Flexcoders Mailing List
>>>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>>>> Alternative FAQ location:
>>>>
>>>> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>>>> Search Archives:
>>>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
>>>> Links
>>>>
>>>>
>>>>
>>>>
>>>
>>
>> 
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Alternative FAQ location:
>> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>> Search Archives:
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
>>
> 


Re: [flexcoders] flex builder student version

2009-01-21 Thread Vivian Richard
But Sam I am getting the water mark!!! Do you know why?
I put the serial number on help->Manage Flex licenses and
I thought it should take care of it. But it did not!!!



On Wed, Jan 21, 2009 at 11:47 AM, Sam Lai  wrote:
> Yes - I've built an app using a student license from
> flexregistration.com and it has no watermarks on the charting
> components.
>
> Even better, there is no limitation if you wish to commercialise your
> creation - no need to buy a copy of Flex Builder for commercial
> purposes.
>
> 2009/1/22 hworke :
>
>>
>>
>> Hi does the the student/faculty version license of
>> flex builder will remove the water mark from the
>> flex charting?
>>
>> Regards
>>
>>
>> 
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Alternative FAQ location:
>> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
>> Search Archives:
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
>>
> 


Re: [flexcoders] Re: Looking for LCDS paging for server to datasource Example

2008-12-17 Thread Vivian Richard
   Try this link

   http://coenraets.org/blog/category/lcds/



On Wed, Dec 17, 2008 at 12:35 PM, meteatamel  wrote:
> Hi Bonny,
>
> Here's a reply from Ed Solovey, one of our engineers in the LCDS team:
>
> The first thing you want to do is enable Server-to-data-source paging,
> also referred to as paged-fill, by implementing the useFillPage method
> in your extension of AbstractAssembler:
>
> @Override
> public boolean useFillPage(List fillParameters)
> {
> // enabling paged-fill for all fills
> return true;
> }
>
> LCDS will call this method when a fill request comes in to the server
> to determine whether to call the Assembler fill method variant with
> just a fill parameters argument or the fill method variant with
> additional startIndex, and numberOfRows parameters. You can enable it
> for a subset of fills by returning true/false based on the
> fillParameters argument. Above, I've enabled it for all fills.
>
> Next, you'll want to implement the paged-fill variant of the fill method:
>
> @Override
> public Collection fill(List fillParameters, int startIndex, int
> numberOfRows)
> {
> System.out.println("paged fill called with: " + startIndex + ", "
> + numberOfRows);
>
> ArrayList people = new ArrayList();
> Connection c = null;
>
> c = getConnection();
> Statement s = c.createStatement();
> // use the startIndex and numItems parameters to limit the result set
> // returned by your data source. Details will depend on your
> datasource;
> // we are using MySQL here which supports a "LIMIT" clause
> // to do exactly what we want
> ResultSet rs = s.executeQuery("SELECT * FROM people LIMIT"
> + startIndex + ", " + numberOfRows);
> while (rs.next())
> {
> Person person = new Person();
> person.lastName = rs.getString("lastName");
> person.firstName = rs.getString("firstName");
> person.id = rs.getInt("id");
> people.add(person);
> }
>
> return people;
> }
>
> (error handling is not included above, I'll include a full version of
> the assembler at the bottom).
>
> I am using MySQL in this sample and the line of interest above is
> "ResultSet rs = s.executeQuery("SELECT * FROM people LIMIT " +
> startIndex + ", " + numberOfRows);". Here I am using the startIndex
> and numberOfRows parameters to limit the result set fetched by MySQL
> thus extending paging all the way to the datasource. The exact syntax
> here will depend on your specific datasource.
>
> When you use paged-fill, LCDS can no longer determine the size of the
> fill collection from the result of the first fill request because it
> only returns the first page of your collection. So it is required
> that the count method is implemented when paged-fill is used. Here is
> my method:
>
> @Override
> public int count(List countParameters)
> {
> // when fill paging is enabled, this method will be called
> // after the first fill request comes in because the size of
> // the collection is no longer known from the result of that
> // initial fill request. However, in the cases where a count
> // query is almost as expensive as a full fill query, you may
> // avoid it and return -1. In this case the client's notion of
> // the size will be incremented with each page request causing
> // UI components such as the DataGrid to adjust with each page request
>
> boolean countQueryExpensive = false;
> int count = -1;
>
> if (!countQueryExpensive)
> {
> Connection c = null;
>
> c = getConnection();
> Statement s = c.createStatement();
> ResultSet rs = s.executeQuery("SELECT COUNT(*) count FROM
> people");
> rs.next();
> count = rs.getInt("count");
> }
> System.out.println("count returning: " + count);
> return count;
> }
>
> (again, error handling is not included above, I'll include a full
> version of the assembler at the bottom).
>
> Note the comment at the top of the implementation, if count is
> expensive you may return -1 and LCDS will adjust the collection size
> dynamically.
>
> At this point you should be ready to go. You can configure this
> destination in data-management-config.xml just as you would any other:
>
> 
>  id="java-dao">
> 
>
> 
> 
> paging.PagingAssembler
> application
> 
> 
> 
> 
> 
> 
> 
> 
>
> As you would expect, to use server-to-data-source paging,
> client-to-server paging must also be enabled. Note above that I've
> set my page size to 5. You can now hit access your destination with a
> simple client:
>
> http://www.adobe.com/2006/mxml";
> layout="absolute" applicationComplete="myDS.fill(myCollection)">
> 
> 
> 
> 
>
> In your server output you should initially see:
>
> paged fill called with: 0, 6
> count returning: 25 (or count returning: -1, depending on whether
> your count
> is implemented or you are using dynamic sizing)
> paged fill called with: 5, 6
>
> as you scroll down on your DataGrid you'll see paged fill called with:
> 10, 6
>
> etc...
>
> The documentation regarding this feature is here:
>
> http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/index.html
>
> Hope this helps,
> Ed
>
> package paging;
>

Re: [flexcoders] Re: How many classes are there in flex 3 framework?

2008-12-16 Thread Vivian Richard
By the way this counting does not include charting, adv data grids.
Am I right?




On Tue, Dec 16, 2008 at 3:14 PM, Nate Beck  wrote:
> Yours is probably more accurate. :D
>
> On Tue, Dec 16, 2008 at 3:09 PM, Nate Beck  wrote:
>>
>> I had the same idea... except using ruby:
>> require 'find'
>> dirs =
>> ["/workspaces/flex_sdk/trunk/frameworks/projects/framework/src","/workspaces/flex_sdk/trunk/frameworks/projects"]
>> dirs.each do |dir|
>>   count = 0
>> Find.find(dir) do |path|
>> if (path =~ /(\.as|\.mxml)/)
>>   if(path =~ /\.svn-base/)
>> #ignore
>>   else
>> count += 1
>>   end
>> end
>> end
>>   puts "In #{dir} there are #{count} files that match the filter."
>> end
>> OUTPUT:
>> [/workspaces/flex_sdk/trunk/frameworks/projects/framework/src] 696 matches
>> [/workspaces/flex_sdk/trunk/frameworks/projects] 1366 matches
>>
>>
>> On Tue, Dec 16, 2008 at 3:02 PM, Maciek Sakrejda 
>> wrote:
>>>
>>> Our FlexBuilder may be in perpetual alpha, but on Linux, at least we've
>>> got some basic tools on our platform and don't have to resort to boorish
>>> counting ;)
>>>
>>> find $FLEX_HOME/frameworks/projects/framework/src -name \*.mxml -o -name
>>> \*.as | wc -l
>>> 669
>>>
>>> If I include projects/* instead (including air, rpc, automation), it's
>>> 999.
>>> --
>>> Maciek Sakrejda
>>> Truviso, Inc.
>>> http://www.truviso.com
>>
>> --
>>
>> Cheers,
>> Nate
>> 
>> http://blog.natebeck.net
>>
>>
>
>
>
> --
>
> Cheers,
> Nate
> 
> http://blog.natebeck.net
>
>
> 


Re: [flexcoders] Re: How many classes are there in flex 3 framework?

2008-12-16 Thread Vivian Richard
Please google search flex framework poster and you can download
and view the poster with the class diagrams. Here is a link where you
can see the posters on one of the fellow dev's wall:

http://x-geom.net/blog/wp-content/uploads/2008/04/imag69.jpg

By the way once you download and finish counting the classes
please let me know the number :-). I will also love to know the exact
number of classes.

Best regards





On Tue, Dec 16, 2008 at 1:45 PM, Mic  wrote:
> I read somewhere about 900 as compared to Java's over 15,000 :-)
>
> --- In flexcoders@yahoogroups.com, "devenhariyani" 
> wrote:
>
>>
>> Its kinda a random question, but anyone know approx. how many classes
>> there are in the entire flex framework?
>>
>> I'm trying to optimizing the size of my SWF filesize and I ran a link-
>> report. I'm not sure exactly how to interpret it, but I did notice
>> that I have external-defs on about 45 different classes. Which I don't
>> think is very much, but I want to put it into some sort of context by
>> knowing how many total classes there are in the flex framework.
>>
>> Thanks.
>>
>> --Deven
>>
>
> 


Re: [flexcoders] How to Connect flex To java...

2008-12-12 Thread Vivian Richard
  Please go through this link :

http://coenraets.org/blog/2008/11/my-max-lcdsblazeds-sessions-materials-available/




On Thu, Dec 11, 2008 at 11:37 PM, jayapalkasarla
 wrote:
> i am using Tomcat web server(my Tomcat integrated with LCDS).
>
> can u Give the Folder Structure of my web application using Java...
>
> what are the jar are required and also xml files
>
> and configuration of xml Files.like web.xml,config.xml,services.xml
>
> 


Re: [flexcoders] move effect Flex live doc example does not work

2008-12-02 Thread Vivian Richard
Excellent! Thanks a lot



On Tue, Dec 2, 2008 at 8:30 AM, Chet Haase <[EMAIL PROTECTED]> wrote:
>
>
> I think the problem is that you named your application "move". 'move' is a
> word that's already used in Flex (such as the move() function), so it runs
> into problems when it tries to use that word as a type as well.
>
>
>
> name your application differently and it should work fine (it did for me,
> but I was able to reproduce your error by naming the application 'move'
> instead)
>
>
>
> Chet.
>
>
>
>
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of hworke
> Sent: Tuesday, December 02, 2008 8:05 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] move effect Flex live doc example does not work
>
>
>
> Hello all,
>
> the example in this link does not work.
> http://livedocs.adobe.com/flex/3/langref/mx/effects/Move.html
>
> The exact error message is:
>
> Severity and Description Path Resource Location Creation Time Id
>
> Type was not found or was not a compile-time constant: move.
> [Generated code (use -keep to save): Path: move-generated.as, Line:
> 187, Column: 14] move Unknown 1101999455125 884
>
> Any idea why it is not working in my Flex builder?
>
> Regards...
>
> 


Re: [flexcoders] Re: Chart datatips

2008-11-23 Thread Vivian Richard
   if you are trying to get the charting source data then try "HitData"

   
http://livedocs.adobe.com/flex/3/html/help.html?content=charts_eventsandeffects_03.html




On Sun, Nov 23, 2008 at 2:48 AM, Sefi Ninio <[EMAIL PROTECTED]> wrote:
> Hi Don,
>
> Thanks for the reply.
> This isn't what I'm after though... I'm looking for a way to display the
> datatip but only display the target of the datatip, without the bubble and
> the leading line from the target to the bubble.
> Or if there's a different approach other than datatips...
>
> I would have extended the DataTip or something, but I don't have access to
> the charting source for some reason...
>
> Sefi
>
> On Sun, Nov 23, 2008 at 12:31 PM, Don Kerr <[EMAIL PROTECTED]> wrote:
>>
>> Not clear what you are asking, but did you try dataTipFunction for custom
>> dataTips?
>>
>> It lets you layout your dataTip any way you'd like . Generic example from
>> one of my apps
>> below...
>>
>> public function dtf(hd:HitData):String {
>> return ""+(hd.item.evaldueDate.getMonth()+1).toString() +
>> '/'+ hd.item.evaldueDate.getDate()+"" + ""+
>> hd.item.title + ""
>> +hd.item.crNumber + ""
>> +hd.item.opr + "";
>> }
>>
>> Don
>>
>> --- In flexcoders@yahoogroups.com, "Sefi Ninio" <[EMAIL PROTECTED]> wrote:
>> >
>> > Hey,
>> >
>> > Is it possible to enable datatips on a chart, but to only display the
>> > round
>> > marker on the series item and not the datatip?
>> >
>> > Thanks,
>> > Sefi
>> >
>>
>
> 


Re: [flexcoders] Re: JavaFX and Flex how do we compare?

2008-11-20 Thread Vivian Richard
   Where can I see Catalyst demo video?


On Thu, Nov 20, 2008 at 1:07 AM, rexguo123 <[EMAIL PROTECTED]> wrote:
> I'd say that Flash Catalyst (previously Thermo) will play
> a key role in bridging the gap between designers and developers.
> I've been looking forward to a tool like this for years
> and the Catalyst demo video looks good.
>
> The FXG roundtrip format is a great idea too and is
> similiar in thinking as Autodesk's FBX format that allows
> data transfer between its suite of applications like
> Motion Builder, 3DS MAX and Maya.
>
> .rex
>
> --- In flexcoders@yahoogroups.com, Chet Haase <[EMAIL PROTECTED]> wrote:
>>
>>
>> I would be curious to find out how others view the platforms,
> especially from the standpoint of external application developers, but
> having been on the inside of both of these projects, here are some
> points of comparison. I'm attempting to be objective here and just
> point out some of the areas to consider. But since I used to work at
> Sun on Java/JavaFX and now work on the Flex team at Adobe you should
> filter appropriately.
>>
>>
>> - Maturity: One of the reasons that you haven't heard much
> about JavaFX to date is that it's actually not yet released.
> Supposedly this will happen in the very near future, so maybe we'll
> all hear more about it at that time.
>>
>> - Language: Although many of the underlying capabilities of
> JavaFX rely on the Java SE platform, JavaFX itself is based on a new
> scripting language (not Java, not JavaScript, not ActionScript, but a
> new scripting language entirely). One notable differences between the
> languages of JavaFX and Flex is that Flex uses MXML for its
> declarative aspects, and ActionScript for the programmatic aspects.
> The JavaFX language combines both of these elements, having aspects of
> declarative and programmatic in the same code.
>>
>> - GUI capabilities: Both platforms offer GUI components,
> graphics, animation, and databinding capabilities, thought the
> platforms differ widely in syntax and capabilities of these different
> features.
>>
>> - Tooling: Most of the tooling so far announced for JavaFX
> are more on the code developer side; editing plugins for NetBeans,
> plus export plugins for Illustrator and Photoshop (they produce PNG
> files from the layers in the project). On the Flex side, there's the
> FlexBuilder IDE and the in-development tools such as Flash Catalyst
> for designer/developer workflows and FXG roundtrip import/export
> from/to the CS tools including Catalys for the graphics tags in the
> Gumbo release of the SDK.
>>
>> - Runtime availability: The availability of the JavaFX
> runtime is basically that of the Java platform (if a user's machine
> does not have the proper release of Java (I believe it will require
> the latest updated 10 release), they will need to download/install
> it). The availability of Flex is basically that of the Flash platform
> of the appropriate version (e.g., Gumbo will run on FlashPlayer 10).
>>
>> Chet.
>>
>>
>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On Behalf Of hworke
>> Sent: Tuesday, November 18, 2008 8:19 AM
>> To: flexcoders@yahoogroups.com
>> Subject: [flexcoders] JavaFX and Flex how do we compare?
>>
>>
>> Hi I just read the following news where I found that
>> SUN is also coming up with their RIA technology and
>> it says that it will take on AJAX and Silverlight.
>> It will also have desktop runtime like AIR, I guess!!!
>> SUN was also in MAX, San Francisco and there they also
>> talked about it. Now I want to know how do we compare
>> JavaFX and Flex?
>>
>> http://tech.yahoo.com/news/infoworld/20081118/tc_infoworld/117780
>>
>> http://www.infoworld.com/article/07/05/07/javafx-javaone_1.html
>>
>
> 


Re: [flexcoders] JavaFX and Flex how do we compare?

2008-11-19 Thread Vivian Richard
   I have seen that some people have expressed that since Net Bean is
   free, it will eventually attract more developers than Flex. There are so
   many JAVA developers out there and I guess when they will come
   across to pick a RIA technology may be they will pick JavaFX.

   By the way got some interesting articles:

   http://www.artima.com/lejava/articles/javaone_2007_james_ward.html
   
http://www.hiveminds.co.uk/content/flex-3-vs-silverlight-and-javafx-is-adobe-listening.html
   http://www.insideria.com/2008/02/hello-flex-silverlight-and-jav.html



On Tue, Nov 18, 2008 at 5:35 PM, Josh McDonald <[EMAIL PROTECTED]> wrote:
> Thanks for that info Chet, you're definitely in a unique position to offer
> insight.
>
> Would I be right in saying that compared with FX Script (ie, without writing
> Java2D / Swing code), AS3, Degrafa/FXG and MXML provide a lot more power in
> terms of custom component and skin creation? This is the way it seems, but
> that could be completely the fault of Sun bungling their PR as usual ;-)
>
> I'm also interested in the differences and similarities between JFX's
> bindings and those supported in Flex if you can find the time to elaborate
> on the subject.
>
> Cheers,
>
> -Josh
>
> On Wed, Nov 19, 2008 at 7:15 AM, Chet Haase <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> I would be curious to find out how others view the platforms, especially
>> from the standpoint of external application developers, but having been on
>> the inside of both of these projects, here are some points of comparison.
>> I'm attempting to be objective here and just point out some of the areas to
>> consider. But since I used to work at Sun on Java/JavaFX and now work on the
>> Flex team at Adobe you should filter appropriately.
>>
>>
>>
>> -  Maturity: One of the reasons that you haven't heard much about
>> JavaFX to date is that it's actually not yet released. Supposedly this will
>> happen in the very near future, so maybe we'll all hear more about it at
>> that time.
>>
>> -  Language: Although many of the underlying capabilities of
>> JavaFX  rely on the Java SE platform, JavaFX itself is based on a new
>> scripting language (not Java, not JavaScript, not ActionScript, but a new
>> scripting language entirely). One notable differences between the languages
>> of JavaFX and Flex is that Flex uses MXML for its declarative aspects, and
>> ActionScript for the programmatic aspects. The JavaFX language combines both
>> of these elements, having aspects of declarative and programmatic in the
>> same code.
>>
>> -  GUI capabilities: Both platforms offer GUI components,
>> graphics, animation, and databinding capabilities, thought the platforms
>> differ widely in syntax and capabilities of these different features.
>>
>> -  Tooling: Most of the tooling so far announced for JavaFX are
>> more on the code developer side; editing plugins for NetBeans, plus export
>> plugins for Illustrator and Photoshop (they produce PNG files from the
>> layers in the project). On the Flex side, there's the FlexBuilder IDE and
>> the in-development tools such as Flash Catalyst for designer/developer
>> workflows and FXG roundtrip import/export from/to the CS tools including
>> Catalys for the graphics tags in the Gumbo release of the SDK.
>>
>> -  Runtime availability: The availability of the JavaFX runtime is
>> basically that of the Java platform (if a user's machine does not have the
>> proper release of Java (I believe it will require the latest updated 10
>> release), they will need to download/install it). The availability of Flex
>> is basically that of the Flash platform of the appropriate version (e.g.,
>> Gumbo will run on FlashPlayer 10).
>>
>>
>>
>> Chet.
>>
>>
>>
>>
>>
>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf Of hworke
>> Sent: Tuesday, November 18, 2008 8:19 AM
>> To: flexcoders@yahoogroups.com
>> Subject: [flexcoders] JavaFX and Flex how do we compare?
>>
>>
>>
>> Hi I just read the following news where I found that
>> SUN is also coming up with their RIA technology and
>> it says that it will take on AJAX and Silverlight.
>> It will also have desktop runtime like AIR, I guess!!!
>> SUN was also in MAX, San Francisco and there they also
>> talked about it. Now I want to know how do we compare
>> JavaFX and Flex?
>>
>> http://tech.yahoo.com/news/infoworld/20081118/tc_infoworld/117780
>>
>> http://www.infoworld.com/article/07/05/07/javafx-javaone_1.html
>
>
> --
> "Therefore, send not to know For whom the bell tolls. It tolls for thee."
>
> Like the cut of my jib? Check out my Flex blog!
>
> :: Josh 'G-Funk' McDonald
> :: 0437 221 380 :: [EMAIL PROTECTED]
> :: http://flex.joshmcdonald.info/
> :: http://twitter.com/sophistifunk
> 


Re: [flexcoders] Re: Advanced datagrid dataprovider changing error

2008-11-17 Thread Vivian Richard
   Thanks for pointing that out. Yes one sould be dpHierarchy and the other
   should be dpHierarchy1. But still my code does not work. The following
   solves the issue:





http://www.adobe.com/2006/mxml";>

  






















On Mon, Nov 17, 2008 at 6:26 AM, valdhor <[EMAIL PROTECTED]> wrote:
> I don't have AdvancedDataGrid but I do see a problem in your code:
>
> I assume the two buttons are to change data providers but both buttons
> set the dataprovider to dpHierarchy.
>
> 


Re: [flexcoders] Re: Flex developer and their hourly rate

2008-11-04 Thread Vivian Richard
   OOPS, :-)



On Tue, Nov 4, 2008 at 12:23 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> Yes, hello, do the math. ;)
>
> Tracy
>
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Vivian Richard
> Sent: Tuesday, November 04, 2008 2:05 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: Flex developer and their hourly rate
>
>
>
> But should not an independent consultant get more than the
> salary, since he/she does not get and benefits and also the
> employer does not have any obligations like the regular employee?
>
> On Tue, Nov 4, 2008 at 12:14 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote:
>> And understand, this is an independent contractor rate for billable hours.
>>
>>
>>
>> One rule-of-thumb I have heard is that an independent hourly rate should
>> be
>> one thousandth of what the annual salary would be for the same level of
>> developer.
>>
>>
>>
>> For example if an annual salary is 100K per year, then the hourly rate
>> should be $100 per hour. I am sure 100K is not an unusual salary for an
>> experienced developer in SF.
>>
>>
>>
>> Tracy
>>
>>
>>
>> 
>>
>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf Of Rich Rodecker
>> Sent: Tuesday, November 04, 2008 11:40 AM
>> To: flexcoders@yahoogroups.com
>> Subject: Re: [flexcoders] Re: Flex developer and their hourly rate
>>
>>
>>
>> that's how it goes...you're talking about a much different cost of living
>> than say, Arkansas.
>>
>>
>>
>> On Tue, Nov 4, 2008 at 6:37 AM, nathanpdaniel <[EMAIL PROTECTED]> wrote:
>>
>> $100/hour Man, I'm gonna have to move to SF! HAHAHA :D
>>
>> --- In flexcoders@yahoogroups.com, "Rich Rodecker" <[EMAIL PROTECTED]>
>> wrote:
>>
>>>
>>> That's always a hard question, and mostly depends on a few major
>> points:
>>> location, experience, and additional skill set. SF, and just about
>> every
>>> major city is definitely going to get you a higher rate than say,
>> Tennessee.
>>> How is your portfolio? If you have an impressive body of work
>> that will
>>> also increase your value. On top of that, if your a flex developer
>> that is
>>> highly skilled in additional areas, or have alot of experience
>> building
>>> enterprise-level apps, that will also increase your value.
>>> All that being said, I don't know :) Though I'd esitmate you're
>> going to be
>>> somewhere around $100/hr.
>>>
>>>
>>>
>>
>>> On Mon, Nov 3, 2008 at 12:56 PM, hworke <[EMAIL PROTECTED]> wrote:
>>>
>>> >
>>> >
>>> > Hi Devs,
>>> >
>>> > I do not have any idea about the market hourly
>>> > rate that a Flex developer with 3 years experience
>>> > charges in San Francisco bay area charges. Can
>>> > someone please give me some idea?
>>> >
>>> > Best regards,
>>> >
>>> >
>>> >
>>>
>>
>>
>>
>>
>
> 


Re: [flexcoders] Re: Flex developer and their hourly rate

2008-11-04 Thread Vivian Richard
   But should not an independent consultant get more than the
   salary, since he/she does not get and benefits and also the
   employer does not have any obligations like the regular employee?




On Tue, Nov 4, 2008 at 12:14 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> And understand, this is an independent contractor rate for billable hours.
>
>
>
> One rule-of-thumb I have heard is that an independent hourly rate should be
> one thousandth of what the annual salary would be for the same level of
> developer.
>
>
>
> For example if an annual salary is 100K per year, then the hourly rate
> should be $100 per hour.  I am sure 100K is not an unusual salary for an
> experienced developer in SF.
>
>
>
> Tracy
>
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Rich Rodecker
> Sent: Tuesday, November 04, 2008 11:40 AM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: Flex developer and their hourly rate
>
>
>
> that's how it goes...you're talking about a much different cost of living
> than say, Arkansas.
>
>
>
> On Tue, Nov 4, 2008 at 6:37 AM, nathanpdaniel <[EMAIL PROTECTED]> wrote:
>
> $100/hour Man, I'm gonna have to move to SF! HAHAHA :D
>
> --- In flexcoders@yahoogroups.com, "Rich Rodecker" <[EMAIL PROTECTED]>
> wrote:
>
>>
>> That's always a hard question, and mostly depends on a few major
> points:
>> location, experience, and additional skill set. SF, and just about
> every
>> major city is definitely going to get you a higher rate than say,
> Tennessee.
>> How is your portfolio? If you have an impressive body of work
> that will
>> also increase your value. On top of that, if your a flex developer
> that is
>> highly skilled in additional areas, or have alot of experience
> building
>> enterprise-level apps, that will also increase your value.
>> All that being said, I don't know :) Though I'd esitmate you're
> going to be
>> somewhere around $100/hr.
>>
>>
>>
>
>> On Mon, Nov 3, 2008 at 12:56 PM, hworke <[EMAIL PROTECTED]> wrote:
>>
>> >
>> >
>> > Hi Devs,
>> >
>> > I do not have any idea about the market hourly
>> > rate that a Flex developer with 3 years experience
>> > charges in San Francisco bay area charges. Can
>> > someone please give me some idea?
>> >
>> > Best regards,
>> >
>> >
>> >
>>
>
>
>
> 


Re: [flexcoders] Re: AMFPHP tutorial

2008-10-17 Thread Vivian Richard
Wow Jonnie, simply outstanding!

I can see that you have now a Flex version of WP.
Really cool!! You rock

Your tutorials are also very helpful.

Regards,

Viv.




On Fri, Oct 17, 2008 at 3:10 AM, Jonnie Spratley <[EMAIL PROTECTED]> wrote:
> Here are some tutorials that I created, see if they are what you were
> looking for.
>
> -Jonnie Spratley
>
> Links:
>
> http://jonniespratley.com/2008/10/15/adobe-flex-amfphp-video-tutorial-part-1/
> http://jonniespratley.com/mini-cookbook/
> http://jonniespratley.com/2008/09/21/adobe-flexair-creating-a-serviceproxy-for-amfphp/
>
> If you want to see how to use amfphp with a pretty big project, look at this
>
> http://flexpress.jonniespratley.com/fp-admin/Flexpress.html
>
> Right click for source.
>
> 


Re: [flexcoders] AIR application installation error

2008-10-15 Thread Vivian Richard
   Your hunch it right!!! Very little memory!!





On Wed, Oct 15, 2008 at 1:09 PM, Jim Hayes <[EMAIL PROTECTED]> wrote:
> That can be for all manner of reasons I'm afraid, there is a way that you
> can log the installer in order to get more information.
>
> I don't have the details to hand, but it's along the lines of putting a
> correctly named text file in the right place in your profile folder.
>
>
>
> However, in my experience it is very often due to lack of temp space on your
> hard drive for the installer to expand it's files into.
>
> It's probably worth checking that quickly just in case
>
>
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of hworke
> Sent: 15 October 2008 20:34
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] AIR application installation error
>
>
>
> Hello all - I am not able to install any
> air applications in my system and getiing
> this error message.
>
> "The application could not be installed because the AIR file is
> damaged. Try obtaining a new AIR file from the application author."
>
> __
> This communication is from Primal Pictures Ltd., a company registered in
> England and Wales with registration No. 02622298 and registered office: 4th
> Floor, Tennyson House, 159-165 Great Portland Street, London, W1W 5PA, UK.
> VAT registration No. 648874577.
>
> This e-mail is confidential and may be privileged. It may be read, copied
> and used only by the intended recipient. If you have received it in error,
> please contact the sender immediately by return e-mail or by telephoning
> +44(0)20 7637 1010. Please then delete the e-mail and do not disclose its
> contents to any person.
> This email has been scanned for Primal Pictures by the MessageLabs Email
> Security System.
> __
> 


Re: [flexcoders] Re: Flex poster and Lynda.com free trial

2008-09-30 Thread Vivian Richard
   Hey Paul, Please take a look at Nathan's link. The posters
   do not come unless you request for it!!! You need your flex
   builder's serial number to request for it. Please go there and
   submit a request for it.

   By the way thanks Nathan.

   Regards,









On Tue, Sep 30, 2008 at 8:34 AM, nathanpdaniel <[EMAIL PROTECTED]> wrote:
> Lynda.com site:
> http://www.lynda.com/go/flex3
>
> Fabled Flex 3 Posters:
> http://www.onflex.org/ted/2007/04/want-flex-api-posters.php
>
> :D
>
> --- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote:
>>
>> Hmm. I've heard talk of this fabled Flex 3 poster yet haven't seen
> any info
>> about how to get one. I had thought it might happen automagically
> when I
>> upgraded to Flex 3 from Flex 2 (some time ago), but it didn't. Go
> on give me
>> a clue.. ;-)
>>
>> Paul
>> - Original Message -
>> From: "hworke" <[EMAIL PROTECTED]>
>> To: 
>> Sent: Tuesday, September 30, 2008 3:31 PM
>> Subject: [flexcoders] Flex poster and Lynda.com free trial
>>
>>
>> >
>> > Hello every one. Did you get a free 1 month
>> > lynda.com subscription offer flier with the
>> > flex 3 and AIR posters? If so, could you please
>> > let me know the URL where I need to go to
>> > redeem this new Flex 3 buyer offer. Unfortunately
>> > I lost my flier but I wrote down the offer
>> > code.
>> >
>> > Best regards...
>> >
>> >
>> > 
>> >
>> > --
>> > Flexcoders Mailing List
>> > FAQ:
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> > Alternative FAQ location:
>> > https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-
> 446f-b4cf-1e62079f6847
>> > Search Archives:
>> > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo!
> Groups
>> > Links
>> >
>> >
>> >
>> >
>>
>
> 


Re: [flexcoders] Flex "scheduling framework"

2008-08-30 Thread Vivian Richard
   I agree with you in the point that Flex team is over-burdened and kind
   of abandoned the frame work. But I can guarantee this framework cannot
   be obsolete in the sense that there is a great demand for it. If you take
   a look at old emails you will be able to see that there are many people
   out there who needed a nice functional scheduling framework. My personal
   opinion is that since they have already put a lot of time to develop it,
   they should put a little more time to make it usable. Like you I am
   also hoping that they will come us with some good examples and
   make the API very clear.



On Sat, Aug 30, 2008 at 10:26 AM, Alan <[EMAIL PROTECTED]> wrote:
> I also have been curious about the framework -  my impression is that it has
> been 'lead out to pasture' .  Perhaps it's become obsolete or there isn't
> any demand for it.
>
> No doubt the Flex team is over-burdened ( what dev team isn't ) and working
> on more pressing issues.  Maybe Adobe's management can be persuaded to allow
> the team to put together some basic 'getting started' articles and document
> the API.
> I think that's the best we can hope for.
> Alan
> On Aug 30, 2008, at 1:38 AM, hworke wrote:
>
> I guess Adobe Consulting team should guide us with some
> good examples, articles and with good documentations so that
> this projects do not like a "useless piece of code." I
> personally do like this a lot and believe that it has all
> the potential to become one of the most used compone
>
> 


Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Vivian Richard
   As you said Alex, started a new thread and lets see what happens.



On Fri, Aug 29, 2008 at 8:52 PM, Alex Harui <[EMAIL PROTECTED]> wrote:
> Didn't take much time at all.  Wrote it while running unit tests.  Please
> start a new thread about a scheduling framework and what is missing.  I
> doubt I will have time to do anything, but maybe someone else in the
> community can.
>
>
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Vivian Richard
> Sent: Friday, August 29, 2008 8:14 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX,
> soon Quicktime, and also DHTML and W3C
>
>
>
> Wow Alex you definitely did spent a lot of time to write
> this email. Your time is really precious for the whole user
> group. I am sure you could come up with another excellent
> flex example if you would code during this time!!! :-) Alex
> please develop a good example of flex schedule framework.
> It is been a while that "flex schedule framework" came out
> and there are no good examples out there. Now we
> are looking at you to show us the way. Please give us time
> and develop ALEXIAN example of "flex schedule frame work".
> It is not a rude demand but a humble request. Cheers
>
> On Fri, Aug 29, 2008 at 7:39 PM, Alex Harui <[EMAIL PROTECTED]> wrote:
>> Matt Chotin is away this week and has moved from development to product
>> management and therefore must now choose his words carefully. I'm still in
>> development so maybe I can get away with more.
>>
>>
>>
>> Robert, I don't think we've met, and I haven't gone back to see your past
>> history with Flex, but I would like to ask you to think twice about the
>> way
>> you are trying to get your message across before hitting send. Sending
>> high
>> priority messages, and maybe not having all of your facts straight,
>> discredits your message and invites others to get mad or poke fun or both.
>> I believe your message is that Adobe also sells solutions via Scene7 and
>> Adobe Consulting and could purposefully or accidentally end up competing
>> with independents like yourself, and that there are alternatives to Flex
>> such as OpenLaszlo and Silverlight and Quicktime. That part of your
>> message
>> is not really debatable. I've worked for Lotus and IBM in my past and they
>> also both sold development tools and had solutions teams and there is a
>> fine
>> line they have to walk. Occasionally, they stepped on one of their
>> independents.
>>
>>
>>
>> It is unfortunate that you've been burned in the past, and you and others
>> should definitely keep on the lookout for competition whether from Adobe
>> or
>> other independents. However, the call to arms to have everyone attend a
>> webinar did not warrant "red alert" status. Yellow maybe. And based on
>> your past, I'm surprised you would place so much weight on what you would
>> hear in a webinar or in any public statement by Adobe. This is a fast
>> moving marketplace and Adobe can change its mind right after talking to
>> you. You'll always have to read the tea leaves and be ready to change
>> course yourself.
>>
>>
>>
>> Finally, this forum is not an Adobe forum. There are non-Adobe moderators.
>> As far as I'm concerned, you can get on your soapbox anytime you want, but
>> if you want to reach a wide audience, fire and brimstone may not be the
>> best
>> approach. If you just want to vent, please warn us up front. And when you
>> get on your soapbox, sometimes you just have a clever comeback line or
>> just
>> ignore the hecklers, including me. Yelling back at them is a waste of your
>> energy. Take the high road, choose your technologies, remain nimble and
>> good luck to you.
>>
>>
>>
>> -Alex
>>
>>
>>
>> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>> Behalf Of Robert Thompson
>> Sent: Friday, August 29, 2008 3:50 PM
>> To: flexcoders@yahoogroups.com
>> Cc: flexcoders@yahoogroups.com
>> Subject: Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX,
>> soon Quicktime, and also DHTML and W3C
>>
>>
>>
>> If you would just read your own comments you'd realize I'm posting
>> objectively and angering just the few of you.
>>
>> I'm thankful to the posters the other day who said, essentially, if you're
>> not interested don't read it.
>>
>> If your thankful to get some 

Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX, soon Quicktime, and also DHTML and W3C

2008-08-29 Thread Vivian Richard
Wow Alex you definitely did spent a lot of time to write
this email. Your time is really precious for the whole user
group. I am sure you could come up with another excellent
flex example if you would code during this time!!! :-) Alex
please develop a good example of flex schedule framework.
It is been a while that "flex schedule framework" came out
   and there are no good examples out there. Now we
are looking at you to show us the way. Please give us time
and develop ALEXIAN example of "flex schedule frame work".
It is not a rude demand but a humble request. Cheers







On Fri, Aug 29, 2008 at 7:39 PM, Alex Harui <[EMAIL PROTECTED]> wrote:
> Matt Chotin is away this week and has moved from development to product
> management and therefore must now choose his words carefully.  I'm still in
> development so maybe I can get away with more.
>
>
>
> Robert, I don't think we've met, and I haven't gone back to see your past
> history with Flex, but I would like to ask  you to think twice about the way
> you are trying to get your message across before hitting send.  Sending high
> priority messages, and maybe not having all of your facts straight,
> discredits your message and invites others to get mad or poke fun or both.
> I believe your message is that Adobe also sells solutions via Scene7 and
> Adobe Consulting and could purposefully or accidentally end up competing
> with independents like yourself, and that there are alternatives to Flex
> such as OpenLaszlo and Silverlight and Quicktime.  That part of your message
> is not really debatable.  I've worked for Lotus and IBM in my past and they
> also both sold development tools and had solutions teams and there is a fine
> line they have to walk.  Occasionally, they stepped on one of their
> independents.
>
>
>
> It is unfortunate that you've been burned in the past, and you and others
> should definitely keep on the lookout for competition whether from Adobe or
> other independents.  However, the call to arms to have everyone attend a
> webinar did not warrant "red alert" status.  Yellow maybe.  And based on
> your past, I'm surprised you would place so much weight on what you would
> hear in a webinar or in any public statement by Adobe.  This is a fast
> moving marketplace and Adobe can change its mind right after talking to
> you.  You'll always have to read the tea leaves and be ready to change
> course yourself.
>
>
>
> Finally, this forum is not an Adobe forum.  There are non-Adobe moderators.
> As far as I'm concerned, you can get on your soapbox anytime you want, but
> if you want to reach a wide audience, fire and brimstone may not be the best
> approach.  If you just want to vent, please warn us up front.  And when you
> get on your soapbox, sometimes you just have a clever comeback line or just
> ignore the hecklers, including me.  Yelling back at them is a waste of your
> energy.  Take the high road, choose your technologies, remain nimble and
> good luck to you.
>
>
>
> -Alex
>
>
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Robert Thompson
> Sent: Friday, August 29, 2008 3:50 PM
> To: flexcoders@yahoogroups.com
> Cc: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] OpenLaszlo.org supports Flex, Silverlight, AJAX,
> soon Quicktime, and also DHTML and W3C
>
>
>
> If you would just read your own comments you'd realize I'm posting
> objectively and angering just the few of you.
>
> I'm thankful to the posters the other day who said, essentially, if you're
> not interested don't read it.
>
> If your thankful to get some information to get to the root of the matter,
> look into it.
>
> I spent $1,777 on FLEX 3.0 with ILOG Elixr, and a lot more on Master Suite.
>
> So don't tell me I don't have the right to question the money I've spent and
> the time invested, and cut my losses, and simply make others aware that
> there is a "War of the RIAs going on" and if you care to look into it,
> here's an article on it,
>
> http://counternotions.com/2007/11/15/apple-runtime-answer-2/
>
> I have asked questions about coding. But I'm also looking for the stability
> of the platform. I pushed very hard from someone to step up and create an
> OpenGL framework, and although I'm sure there are others, I was one of them,
> rooting for Adobe, and Macromedia developers like Matt Chotin and a few
> others appreciated it.
>
> Most of these responses are just anger letting outit's the nature of the
> game when posting a controversial warning about the coding your doing and
> it's value 2 years from now when nearly everything can be done (I estimate
> 80% of what is commonly done in eCommerce, will be done using Scene7.com,
> not a FLEX developer earning a living).
>
> Fyi, I made no claim that OpenLaszlo.org is a new effort, it's in version 4,
> but what is happening in version 4i is newer.
>
> Throw the chip on your shoulder at someone else; I'm trying to warn some of
> those out t

Re: [flexcoders] Code Hints in Flex 4 Gumbo

2008-08-21 Thread Vivian Richard
   Hey Sherif is charting working with flex 4 sdk? I know that
   charting is not part of SDK but I guess charts might
   appear with water marks on them.




On Thu, Aug 21, 2008 at 1:58 PM, Sherif Abdou <[EMAIL PROTECTED]> wrote:
> I am using the latest SDK (Gumbo), just wondering if there is a way to
> enable code hints as of yet, I know it's not even alpha yet so not a problem
> but just asking to see If i am doing something wrong
> For example when I do
>
>   I do not get any hints as to what properties are there so I have to
> do everything by memory or checking the source code.
> 


Re: [flexcoders] how to swap two rows in a datagrid

2008-08-05 Thread Vivian Richard
   Thanks Tim and Tracy. I guess I need to make it little clear
   as Tracy suggested. I want to select 2 rows and as I click
   a button those 2 rows will take each other's place. Now one
   more thing I want to do this in a TOUCHSCREEN monitor.
   Now the problem is how do I select 2 rows in a datagrid
   where there is no KEYBOARD?




On Tue, Aug 5, 2008 at 11:01 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> Do you really mean "swap"? Or just re-order, as in move one row to another
> location?  Resequence is pretty simple, swap is more complicated. Either
> way, as Tom says use those Collection API methods.  Be careful with the row
> indexes, since removeItemAt will cause the indexes to change for any row
> "above" it (below from an index standpoint)
>
>
>
> Tracy
>
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of hworke
> Sent: Tuesday, August 05, 2008 11:50 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] how to swap two rows in a datagrid
>
>
>
> Hi,
>
> how can I swap two rows in a datagrid?
>
> 


Re: [flexcoders] sending a text message from air/flex application

2008-08-02 Thread Vivian Richard
   Thanks everyone. As Douglas mentioned, I actually do not need
   or expect any reply. Douglas what did you mean by server+middle
   ware. Can you send me some link where I can learn a little more
   about it. Thanks in advance



On Sat, Aug 2, 2008 at 12:33 PM, Douglas Knudsen
<[EMAIL PROTECTED]>wrote:

>   or you can send via email.  If you are only concerned about sending
> outgoing messages without replies and interaction you can send via email.
> eg, for t-mobile send email to [EMAIL PROTECTED]  Of course you still
> need a server+middle ware to handle the sending.  Without a server you could
> use a mailto link to use the users email client.
>
> DK
>
> On Sat, Aug 2, 2008 at 12:40 AM, Rick Winscot <[EMAIL PROTECTED]>wrote:
>
>>
>> You are going to need to have an SMS Gateway at your disposal. With such a
>> tool of devastation – you can send texts until your enemies tremble!
>> MUWHAHHAAA.
>>
>> Ahem. There are a lot of providers out there... But it would be a good
>> idea to get a base on bridging the gap between http and sms with a quick
>> wiki primer. I've worked on a few projects where providers (for a fee) were
>> willing to allow the use of their gateway – they will provide you with an
>> API/tokens to keep your services chugging along. You see... Depending on
>> your setup – you may actually be making them money (on return texts). Have a
>> read!
>>
>> http://en.wikipedia.org/wiki/SMS_gateway
>>
>> Rick Winscot
>>
>>
>>
>> On 8/1/08 9:22 PM, "hworke" <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>>
>>
>>
>> Sorry-- forgot to mention: I want to send the text
>>  message to a cell phone from AIR/Flex Application
>>
>> Thanks...
>>
>>
>>
>>
>>
>>
>
>
> --
> Douglas Knudsen
> http://www.cubicleman.com
> this is my signature, like it?
>  
>


Re: [flexcoders] Re: Free Flex Gauge Component

2008-07-29 Thread Vivian Richard
   Hey Thomas thanks for informing us about the update
   and as usual very good job!!! BTW I have a question -
   why it is still in .4 version? It looks it works perfect; if
   so then why not version 1.0?

   For everyone else if Thomas's email link (You can see it
here
)

   do not take you to the example, try this link:

  http://www.brightpointinc.com/flexdemos/gauge_v04/gauge_v04.html



On Tue, Jul 29, 2008 at 9:49 AM, twgonzalez <[EMAIL PROTECTED]>wrote:

>   --- In flexcoders@yahoogroups.com, "twgonzalez" <[EMAIL PROTECTED]> wrote:
> Update v.04 released New features: Alert Levels Log Scale BounceEffect
> on/off More accurate tick marks You can see it 
> here
>  .
>
>  
>


Re: [flexcoders] Gumbo

2008-07-21 Thread Vivian Richard
Wow!!! Great Gordon. I feel link suspend my project till Flex 4
comes out. :-)). Really liked Ely's demo.



On Mon, Jul 21, 2008 at 1:07 PM, Gordon Smith <[EMAIL PROTECTED]> wrote:

>Want to know what we've got cookin' for the next major release of Flex,
> codenamed "Gumbo"? Take a look at
>
>
>
> http://opensource.adobe.com/wiki/display/flexsdk/Gumbo
>
>
>
> Deepa's whitepaper on the new Gumbo Component Architecture
>
>
>
>
> http://opensource.adobe.com/wiki/display/flexsdk/Gumbo+Component+Architecture
>
>
>
> is a good overview.
>
>
>
> Gordon Smith
>
> Adobe Flex SDK Team
>
>
>  
>


Re: [flexcoders] How do I position a custom tooltip?

2008-07-14 Thread Vivian Richard
Please take a look at the last example of this link:

http://livedocs.adobe.com/flex/3/html/help.html?content=tooltips_4.html




On Mon, Jul 14, 2008 at 2:43 PM, Jamie S <[EMAIL PROTECTED]> wrote:

>   try making an event handler for the toolTipShow event and
> repositioning it within the handler. not elegant but it works.
>
> jamie
>
>
> On Mon, Jul 14, 2008 at 2:30 PM, luvfotography
> <[EMAIL PROTECTED] > wrote:
> > I'm creating a custom tooltip and there's not enough room in the
> > bottom right
> > corner to display it, how do I change the x and y coordinates in
> > order to
> > move it someplace so it's not off screen and fits?
> > There are examples on how to reposition for a text tooltip in the
> > help,
> > but none for a custom tooltip.
> > thanks,
> > -steve
> > here's a live example:
> > http://designwithflex.com/projects/tooltip/
> >
> > 
> > http://www.adobe.com/2006/mxml";
> > height="300" width="300" layout="absolute">
> > 
> > 
> > 
> > 
> >  > toolTip=" " toolTipCreate="createToolTip(event)" />
> >  > toolTip=" " toolTipCreate="createToolTip(event)"/>
> > 
> > 
> >
> > 
> > 
> > http://www.adobe.com/2006/mxml"; width="200"
> > backgroundColor="red" implements="mx.core.IToolTip" height="100">
> > 
> > 
> > 
> > 
> > 
> >
> >
>  
>


Re: [flexcoders] Re: advanceddatagrid itemrenderer refering current column's data

2008-07-14 Thread Vivian Richard
Hey Alex could not find the background itemrenderer for
ADG in your blog. Could you please send me the link?




On Mon, Jul 14, 2008 at 6:09 PM, Vivian Richard <[EMAIL PROTECTED]> wrote:

>
>
>Tel me try Amy, I will let you know.
>
>Alex I checked most of your examples most likely have seen
>yours. I will try that one too an let you know my impression about it.
>
>
>
>
>
> On Mon, Jul 14, 2008 at 6:03 PM, Amy <[EMAIL PROTECTED]> wrote:
>
>>   --- In flexcoders@yahoogroups.com ,
>> "Vivian Richard" <[EMAIL PROTECTED]>
>> wrote:
>>
>> >
>> > Hey Amy great getting an email from you. Man I guess you
>> > paid google : every time I search anything regarding ADG you
>> > blog pops up. :-) Thanks for taking time to share that with us.
>> >
>> > As I found all your examples are addressing the whole row,
>> > I needed something for individual cells. I tried to work
>> > with your code and put the itemrenderer in ADGColumn but
>> > did not work accordingly. My requirement is very simple: all
>> > my ADGColumn will have the same itemrenderer and if the
>> > Column source has a nonempty string it will put the background
>> > color else leave it as is.
>>
>> I actually didn't provide any examples, just talked about the general
>> principles, unless you're talking about the posts that I linked to
>> that didn't quite do what I wanted.
>>
>> The styleFunction will do whatever you tell it to, so you can very
>> easily use that to style the columns based on the dataField that is a
>> property of the object you get in the second parameter.
>>
>> So you could use something like this:
>>
>> private function styleMyRenderers(data:Object,
>> col:AdvancedDataGridColumn){
>> if (data[col.dataField]=='foo'){
>> return {backgroundColor:0xFF};//red
>> }
>> return {backgroundColor:0x00FF00};//green
>> }
>>
>> HTH;
>>
>> Amy
>>
>>  
>>
>
>


Re: [flexcoders] Re: advanceddatagrid itemrenderer refering current column's data

2008-07-14 Thread Vivian Richard
   Tel me try Amy, I will let you know.

   Alex I checked most of your examples most likely have seen
   yours. I will try that one too an let you know my impression about it.




On Mon, Jul 14, 2008 at 6:03 PM, Amy <[EMAIL PROTECTED]> wrote:

>   --- In flexcoders@yahoogroups.com ,
> "Vivian Richard" <[EMAIL PROTECTED]>
> wrote:
>
> >
> > Hey Amy great getting an email from you. Man I guess you
> > paid google : every time I search anything regarding ADG you
> > blog pops up. :-) Thanks for taking time to share that with us.
> >
> > As I found all your examples are addressing the whole row,
> > I needed something for individual cells. I tried to work
> > with your code and put the itemrenderer in ADGColumn but
> > did not work accordingly. My requirement is very simple: all
> > my ADGColumn will have the same itemrenderer and if the
> > Column source has a nonempty string it will put the background
> > color else leave it as is.
>
> I actually didn't provide any examples, just talked about the general
> principles, unless you're talking about the posts that I linked to
> that didn't quite do what I wanted.
>
> The styleFunction will do whatever you tell it to, so you can very
> easily use that to style the columns based on the dataField that is a
> property of the object you get in the second parameter.
>
> So you could use something like this:
>
> private function styleMyRenderers(data:Object,
> col:AdvancedDataGridColumn){
> if (data[col.dataField]=='foo'){
> return {backgroundColor:0xFF};//red
> }
> return {backgroundColor:0x00FF00};//green
> }
>
> HTH;
>
> Amy
>
>  
>


Re: [flexcoders] Re: advanceddatagrid itemrenderer refering current column's data

2008-07-14 Thread Vivian Richard
Thanks for the response Tracy. By styling you are referring to the
stylefunction? My understanding that that the stylefunction is only
meant for the text not the background color.



On Mon, Jul 14, 2008 at 5:04 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>The new styling in ADG might be a better way to do this.
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Vivian Richard
> *Sent:* Monday, July 14, 2008 7:42 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: advanceddatagrid itemrenderer refering
> current column's data
>
>
>
>
>
>
>Hey Amy great getting an email from you. Man I guess you
>paid google : every time I search anything regarding ADG you
>blog pops up. :-) Thanks for taking time to share that with us.
>
>As I found all your examples are addressing the whole row,
>I needed something for individual cells. I tried to work
>with your code and put the itemrenderer in ADGColumn but
>did not work accordingly. My requirement is very simple: all
>my ADGColumn will have the same itemrenderer and if the
>Column source has a nonempty string it will put the background
>color else leave it as is.
>
>Regards
>
>
>
>  On Mon, Jul 14, 2008 at 3:49 PM, Amy <[EMAIL PROTECTED]>
> wrote:
>
> --- In flexcoders@yahoogroups.com , "hworke"
> <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> > Hi, in a advanceddatagrid I need to put same
> > background color if the the cell value is
> > not empty string. In the itemrenderer all I
> > need to check is if the current column value
> > is null or not. I know how to refer a value
> > of the data object in the itemrenderer like:
> > data.whateverParameter. But in this case I
> > need to refer the current column value not
> > a fixed parameter of the data object. How do
> > I refer to the current column vale in the
> > itemrenderer?
> >
>
> If you implement IDropInListRenderer, you can get access to the
> DataGridListData properties. Also, AdvancedDataGrid supports a style
> function, that you can use from outside the ADG to set styles. For
> more on that http://flexdiary.blogspot.com/2008/06/musings-on-
> advanceddatagrid-part-1.html
>
> HTH;
>
> Amy
>
>
>
>  
>


Re: [flexcoders] Re: advanceddatagrid itemrenderer refering current column's data

2008-07-14 Thread Vivian Richard
   Hey Amy great getting an email from you. Man I guess you
   paid google : every time I search anything regarding ADG you
   blog pops up. :-) Thanks for taking time to share that with us.

   As I found all your examples are addressing the whole row,
   I needed something for individual cells. I tried to work
   with your code and put the itemrenderer in ADGColumn but
   did not work accordingly. My requirement is very simple: all
   my ADGColumn will have the same itemrenderer and if the
   Column source has a nonempty string it will put the background
   color else leave it as is.

   Regards




On Mon, Jul 14, 2008 at 3:49 PM, Amy <[EMAIL PROTECTED]> wrote:

>   --- In flexcoders@yahoogroups.com ,
> "hworke" <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> > Hi, in a advanceddatagrid I need to put same
> > background color if the the cell value is
> > not empty string. In the itemrenderer all I
> > need to check is if the current column value
> > is null or not. I know how to refer a value
> > of the data object in the itemrenderer like:
> > data.whateverParameter. But in this case I
> > need to refer the current column value not
> > a fixed parameter of the data object. How do
> > I refer to the current column vale in the
> > itemrenderer?
> >
>
> If you implement IDropInListRenderer, you can get access to the
> DataGridListData properties. Also, AdvancedDataGrid supports a style
> function, that you can use from outside the ADG to set styles. For
> more on that http://flexdiary.blogspot.com/2008/06/musings-on-
> advanceddatagrid-part-1.html
>
> HTH;
>
> Amy
>
>  
>


Re: [flexcoders] remover water mark from Trial version

2008-07-02 Thread Vivian Richard
   Thanks Rick, that would be too much to ask for. I guess
   only JESUS would do that for some one. :-)))



On Wed, Jul 2, 2008 at 4:17 PM, Rick Winscot <[EMAIL PROTECTED]> wrote:

>Have someone that owns Flex 3 Professional compile it for you… the
> compiled output won't have the watermark.
>
>
>
> Rick Winscot
>
>
>
>
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *hworke
> *Sent:* Wednesday, July 02, 2008 6:22 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] remover water mark from Trial version
>
>
>
> Hi I am using flex 3 trial version and it puts
> a water mark on charting components. Is there
> any way to remove it? I have flex 2 but want to
> use a feature of flex 3 for a presentation.
>
>   
>


Re: [flexcoders] remover water mark from Trial version

2008-07-02 Thread Vivian Richard
   Wrong advices Since I have Flex 2, I guess I just
   need to upgrade it to 3, Instead of buying it 3 :-).
   Just kidding. Well I think that since the trial version
   is going to expire in 60 days there was no point
   of putting the water mark.



On Wed, Jul 2, 2008 at 4:12 PM, Alan Rother <[EMAIL PROTECTED]> wrote:

>   >>>But don't buy just any version. The Standard version doesn't include
> charting components, so you have to buy the $699 Professional version.
>
> Yes, good point, thank you. I did forget to mention that.
> --
> Alan Rother
> Adobe Certified Advanced ColdFusion MX 7 Developer
> Manager, Phoenix Cold Fusion User Group, AZCFUG.org
>  
>


Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
   Yes correct. This exact application works fine but when
   I copied it to another project()the source folder) it started
   giving this error. Still the original works fine.




On Wed, Jun 4, 2008 at 12:47 PM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Ok, that is not a local (filesystem) url so the use-network default
> should be fine.  It really should not be an issue under FB anyway.
>
>
>
> You are running the app from within FB, by clicking the "Run" button
> correct?  And **not** doubleclicking on the app.html file in the Windows
> Explorer, correct?
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Vivian Richard
> *Sent:* Wednesday, June 04, 2008 3:26 PM
>
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: HTTP request sending from IDE(Flex
> Builder) ERROR
>
>
>
>
> This is HTTPService URL:
>
>  url="
> http://localhost:8080/Main/WebSearchRss?xpage=rdf&space=Projects&text=project<http://localhost:8080/Main/WebSearchRss?xpage=rdf&space=Projects&text=project>
> "
> resultFormat="e4x" showBusyCursor="true"/>
>
> Since I did not deploy the application, I do not have an application URL.
> I am sending and handling the result using Cairngorm.
>
>  On Wed, Jun 4, 2008 at 11:32 AM, Tracy Spratt <[EMAIL PROTECTED]>
> wrote:
>
> Viv, ARE you using a local url?
>
>
>
> Post the application url and the data service url.
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Sherif Abdou
> *Sent:* Wednesday, June 04, 2008 3:00 PM
> *To:* flexcoders@yahoogroups.com
>
>
> *Subject:* Re: [flexcoders] Re: HTTP request sending from IDE(Flex
> Builder) ERROR
>
>
>
> Flex Compiler
> under Additional compiler Argument
> do   ("include the - sign  that is before use")
> -use-network= false
>
> - Original Message 
> From: Vivian Richard <[EMAIL PROTECTED]>
> To: flexcoders@yahoogroups.com
> Sent: Wednesday, June 4, 2008 1:22:03 PM
> Subject: Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder)
> ERROR
>
>
>  Amy where do I set this? In project property --> Flex compiler
>  window I do not see this.
>
>  Thanks..
>
>  Viv
>
>  On Wed, Jun 4, 2008 at 10:17 AM, Amy  PROTECTED]>>
> wrote:
>
> Doesn't HTTPRequest need the compile flag use-network= false set to
> run locally? URLRequest will work both ways without any special
> flags set.
>
> HTH;
>
> Amy
>
>
>
> --- In [EMAIL PROTECTED] ups.com , "Tracy
> Spratt" <[EMAIL PROTECTED]> wrote:
> >
> > Precisely what is the error?
> >
> > Tracy
> >
> >
> >
> >  _ _ __
> >
> > From: [EMAIL PROTECTED] ups.com 
> [mailto:[EMAIL PROTECTED] ups.com ] On
> > Behalf Of Vivian Richard
> > Sent: Wednesday, June 04, 2008 1:17 PM
> > To: [EMAIL PROTECTED] ups.com 
> > Subject: Re: [flexcoders] HTTP request sending from IDE(Flex
> Builder)
> > ERROR
> >
> >
> >
> >
> >
> > Thanks Tracy and all.
> >
> > Actually it worked for me all the time. But now as I copied
> > one of my project's source code and created a new project (with
> > exactly
> > the same code) - this error is occurring but the old project
> works
> > fine.
> > That is why I was thinking may be the way the old project was
> set up,
> > it does not have any problem reading from old destination. I
> remember
> > I had this kind of problem before but it was gone after few
> times the
> > error
> > occurred but this time it is not going away!!! Oh by the way the
> very
> > first time I ran the new project it did work though but then I
> > cleaned the
> > whole project - that is when it started to show the error
> message.
> >
> > Regards
> >
> >
> >
> >
>
> > On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]
> > <mailto:[EMAIL PROTECTED]> > wrote:
> >
> > Yes, you should not have to do anything special for this to work
> under
> > FB. Are you saying you have tried and are having problems?
> >
> > Tracy
> >
>
>
>
>
>
>
>
>  
>


Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
This is HTTPService URL:

http://localhost:8080/Main/WebSearchRss?xpage=rdf&space=Projects&text=project
"
resultFormat="e4x" showBusyCursor="true"/>

Since I did not deploy the application, I do not have an application URL.
I am sending and handling the result using Cairngorm.


On Wed, Jun 4, 2008 at 11:32 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Viv, ARE you using a local url?
>
>
>
> Post the application url and the data service url.
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Sherif Abdou
> *Sent:* Wednesday, June 04, 2008 3:00 PM
> *To:* flexcoders@yahoogroups.com
>
> *Subject:* Re: [flexcoders] Re: HTTP request sending from IDE(Flex
> Builder) ERROR
>
>
>
> Flex Compiler
> under Additional compiler Argument
> do   ("include the - sign  that is before use")
> -use-network= false
>
> - Original Message 
> From: Vivian Richard <[EMAIL PROTECTED]>
> To: flexcoders@yahoogroups.com
> Sent: Wednesday, June 4, 2008 1:22:03 PM
> Subject: Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder)
> ERROR
>
>
>  Amy where do I set this? In project property --> Flex compiler
>  window I do not see this.
>
>  Thanks..
>
>  Viv
>
>
>  On Wed, Jun 4, 2008 at 10:17 AM, Amy  PROTECTED]>>
> wrote:
>
> Doesn't HTTPRequest need the compile flag use-network= false set to
> run locally? URLRequest will work both ways without any special
> flags set.
>
> HTH;
>
> Amy
>
>
>
> --- In [EMAIL PROTECTED] ups.com , "Tracy
> Spratt" <[EMAIL PROTECTED]> wrote:
> >
> > Precisely what is the error?
> >
> > Tracy
> >
> >
> >
> >  _ _ __
> >
> > From: [EMAIL PROTECTED] ups.com 
> [mailto:[EMAIL PROTECTED] ups.com ] On
> > Behalf Of Vivian Richard
> > Sent: Wednesday, June 04, 2008 1:17 PM
> > To: [EMAIL PROTECTED] ups.com 
> > Subject: Re: [flexcoders] HTTP request sending from IDE(Flex
> Builder)
> > ERROR
> >
> >
> >
> >
> >
> > Thanks Tracy and all.
> >
> > Actually it worked for me all the time. But now as I copied
> > one of my project's source code and created a new project (with
> > exactly
> > the same code) - this error is occurring but the old project
> works
> > fine.
> > That is why I was thinking may be the way the old project was
> set up,
> > it does not have any problem reading from old destination. I
> remember
> > I had this kind of problem before but it was gone after few
> times the
> > error
> > occurred but this time it is not going away!!! Oh by the way the
> very
> > first time I ran the new project it did work though but then I
> > cleaned the
> > whole project - that is when it started to show the error
> message.
> >
> > Regards
> >
> >
> >
> >
>
> > On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]
> > <mailto:[EMAIL PROTECTED]> > wrote:
> >
> > Yes, you should not have to do anything special for this to work
> under
> > FB. Are you saying you have tried and are having problems?
> >
> > Tracy
> >
>
>
>
>
>
>  
>


Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
 Amy where do I set this? In project property --> Flex compiler
 window I do not see this.

 Thanks..

 Viv



On Wed, Jun 4, 2008 at 10:17 AM, Amy <[EMAIL PROTECTED]> wrote:

>   Doesn't HTTPRequest need the compile flag use-network=false set to
> run locally? URLRequest will work both ways without any special
> flags set.
>
> HTH;
>
> Amy
>
>
> --- In flexcoders@yahoogroups.com , "Tracy
> Spratt" <[EMAIL PROTECTED]> wrote:
> >
> > Precisely what is the error?
> >
> > Tracy
> >
> >
> >
> > ____
> >
> > From: flexcoders@yahoogroups.com 
> [mailto:flexcoders@yahoogroups.com ] On
> > Behalf Of Vivian Richard
> > Sent: Wednesday, June 04, 2008 1:17 PM
> > To: flexcoders@yahoogroups.com 
> > Subject: Re: [flexcoders] HTTP request sending from IDE(Flex
> Builder)
> > ERROR
> >
> >
> >
> >
> >
> > Thanks Tracy and all.
> >
> > Actually it worked for me all the time. But now as I copied
> > one of my project's source code and created a new project (with
> > exactly
> > the same code) - this error is occurring but the old project
> works
> > fine.
> > That is why I was thinking may be the way the old project was
> set up,
> > it does not have any problem reading from old destination. I
> remember
> > I had this kind of problem before but it was gone after few
> times the
> > error
> > occurred but this time it is not going away!!! Oh by the way the
> very
> > first time I ran the new project it did work though but then I
> > cleaned the
> > whole project - that is when it started to show the error
> message.
> >
> > Regards
> >
> >
> >
> >
> > On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]
> > <mailto:[EMAIL PROTECTED]> > wrote:
> >
> > Yes, you should not have to do anything special for this to work
> under
> > FB. Are you saying you have tried and are having problems?
> >
> > Tracy
> >
>
>  
>


Re: [flexcoders] Re: HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
In project properties' Flex compiler section all the parameters
are as same for the both projects.



On Wed, Jun 4, 2008 at 9:28 AM, valdhor <[EMAIL PROTECTED]> wrote:

>   Have you checked the compiler settings for each project? Are they
> different?
>
>
> --- In flexcoders@yahoogroups.com , "Vivian
> Richard" <[EMAIL PROTECTED]> wrote:
> >
> > Thanks Tracy and all.
> >
> > Actually it worked for me all the time. But now as I copied
> > one of my project's source code and created a new project (with
> exactly
> > the same code) - this error is occurring but the old project
> works fine.
> > That is why I was thinking may be the way the old project was set up,
> > it does not have any problem reading from old destination. I remember
> > I had this kind of problem before but it was gone after few times the
> > error
> > occurred but this time it is not going away!!! Oh by the way the very
> > first time I ran the new project it did work though but then I
> cleaned
> > the
> > whole project - that is when it started to show the error message.
> >
> > Regards
> >
> >
> >
> > On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> >
> > > Yes, you should not have to do anything special for this to
> work under
> > > FB. Are you saying you have tried and are having problems?
> > >
> > > Tracy
> > >
> > >
> > > --
> > >
> > > *From:* flexcoders@yahoogroups.com 
> [mailto:flexcoders@yahoogroups.com ] *On
> > > Behalf Of *Anirudh Sasikumar
> > > *Sent:* Wednesday, June 04, 2008 6:36 AM
> > > *To:* flexcoders@yahoogroups.com 
> > > *Subject:* Re: [flexcoders] HTTP request sending from IDE(Flex
> Builder)
> > > ERROR
> > >
> > >
> > >
> > > Hi,
> > >
> > > FlexBuilder automatically trusts the swf file generated by it. So you
> > > shouldn't have any problem accessing urls with HTTPService.
> > >
> > > You can do this manually by right clicking (control-click on mac) on
> > > the swf, clicking on Settings, Privacy tab, click on Advanced, Global
> > > Security Settings, click on Edit Locations popup, Add Location and add
> > > the swf file so that it is trusted by flash player.
> > >
> > > Cheers,
> > > --
> > > Anirudh Sasikumar
> > > http://anirudhs.chaosnet.org/
> > >
> > >
> > >
> >
>
>  
>


Re: [flexcoders] HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
The error is :

 HTTP FAILED Destination: DefaultHTTP Security error accessing url



On Wed, Jun 4, 2008 at 9:57 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Precisely what is the error?
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Vivian Richard
> *Sent:* Wednesday, June 04, 2008 1:17 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] HTTP request sending from IDE(Flex Builder)
> ERROR
>
>
>
>
>
>Thanks Tracy and all.
>
>Actually it worked for me all the time. But now as I copied
>one of my project's source code and created a new project (with exactly
>the same code) - this error is occurring but the old project works fine.
>That is why I was thinking may be the way the old project was set up,
>it does not have any problem reading from old destination. I remember
>I had this kind of problem before but it was gone after few times the
> error
>occurred but this time it is not going away!!! Oh by the way the very
>first time I ran the new project it did work though but then I cleaned
> the
>whole project - that is when it started to show the error message.
>
>Regards
>
>
>  On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]>
> wrote:
>
> Yes, you should not have to do anything special for this to work under FB.
> Are you saying you have tried and are having problems?
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Anirudh Sasikumar
> *Sent:* Wednesday, June 04, 2008 6:36 AM
> *To:* flexcoders@yahoogroups.com
>
>
> *Subject:* Re: [flexcoders] HTTP request sending from IDE(Flex Builder)
> ERROR
>
>
>
> Hi,
>
>
>
> FlexBuilder automatically trusts the swf file generated by it. So you
> shouldn't have any problem accessing urls with HTTPService.
>
> You can do this manually by right clicking (control-click on mac) on
> the swf, clicking on Settings, Privacy tab, click on Advanced, Global
> Security Settings, click on Edit Locations popup, Add Location and add
> the swf file so that it is trusted by flash player.
>
> Cheers,
> --
> Anirudh Sasikumar
> http://anirudhs.chaosnet.org/
>
>
>
>  
>


Re: [flexcoders] HTTP request sending from IDE(Flex Builder) ERROR

2008-06-04 Thread Vivian Richard
   Thanks Tracy and all.

   Actually it worked for me all the time. But now as I copied
   one of my project's source code and created a new project (with exactly
   the same code) - this error is occurring but the old project works fine.
   That is why I was thinking may be the way the old project was set up,
   it does not have any problem reading from old destination. I remember
   I had this kind of problem before but it was gone after few times the
error
   occurred but this time it is not going away!!! Oh by the way the very
   first time I ran the new project it did work though but then I cleaned
the
   whole project - that is when it started to show the error message.

   Regards



On Wed, Jun 4, 2008 at 8:42 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Yes, you should not have to do anything special for this to work under
> FB.  Are you saying you have tried and are having problems?
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Anirudh Sasikumar
> *Sent:* Wednesday, June 04, 2008 6:36 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] HTTP request sending from IDE(Flex Builder)
> ERROR
>
>
>
> Hi,
>
> FlexBuilder automatically trusts the swf file generated by it. So you
> shouldn't have any problem accessing urls with HTTPService.
>
> You can do this manually by right clicking (control-click on mac) on
> the swf, clicking on Settings, Privacy tab, click on Advanced, Global
> Security Settings, click on Edit Locations popup, Add Location and add
> the swf file so that it is trusted by flash player.
>
> Cheers,
> --
> Anirudh Sasikumar
> http://anirudhs.chaosnet.org/
>
>  
>


Re: [flexcoders] resizing unselected child of a container

2008-04-23 Thread Vivian Richard
  Thanks Alex. You are right they do resize but after those children
  opens all the way and then in an instant resize. It looks really odd.
  That is why I guess I do need to do some refresh it so that the children
  resize before they are selected. Please suggest.




On Wed, Apr 23, 2008 at 3:12 PM, Alex Harui <[EMAIL PROTECTED]> wrote:

>You can call getChild to resize, but the others should resize when you
> switch to them
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *hworke
> *Sent:* Wednesday, April 23, 2008 11:42 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] resizing unselected child of a container
>
>
>
>
>
> Hi, how can I resize the unselected children containers
> when the parent container resizes. Such as accordion:
> if accordion resizes, with it only the selected child
> resizes but not the other ones. I guess just need to
> refresh the other children but I do not know how to do
> that. Any idea???
>
>  
>


Re: [flexcoders] Cairngorm ServiceLocator

2008-04-22 Thread Vivian Richard
   Hey Christophe, is it possible that you create some video tutorial of
Prana?
   I guess that way developers will be able to adopt it faster. Just my 2
cents!!!



On Tue, Apr 22, 2008 at 9:07 PM, Christophe Herreman <[EMAIL PROTECTED]>
wrote:

>   Hi Eric,
>
> have you looked at the modified CairngormServiceLocator in Prana?
> http://www.herrodius.com/blog/131
>
> regards,
> Christophe
>
> 2008/4/23 Eric Cancil <[EMAIL PROTECTED]>:
>
> >   I think a little more thought could be put into this class.  Due to
> > the fact that it uses describeType to discover the services that have been
> > added to it, and it is not a dynamic class/ does not have any way to
> > dynamically add services at runtime...it makes it in my view impossible to
> > add say for example services that youve loaded in an initialization file at
> > runtime.  If an accessor method to add service at runtime was added I think
> > it would make this class a lot more dynamic.  Instead it relies on MXML
> > being compiled down to AS and variables automatically being added.
> >
> > Any thoughts?
> > Eric
> >
> > Ps... please dont suggest to roll my own locator, i know ;)
> >
>
>
>
> --
> Christophe Herreman
> http://www.herrodius.com
> http://www.pranaframework.org
> 
>


Re: [flexcoders] crossdomain where is the server root?

2008-04-22 Thread Vivian Richard
   Thanks Tracy.

   For proxying I do need to use BladeDS right? I guess this is also better
as I did
   read that in one of the article. This way you can hide the source of
HTTPService
   url from those users who can reverse engineer your code. After getting
your mail
   I was reading this article and now this article makes sence:

http://www.bloginblack.de/files/MAXKorea2006_KaiKoenig_FDS101.swf

By the way do you know any good source which can guide me to install
BlazeDS on my servelet container.

Best regards





On Tue, Apr 22, 2008 at 8:52 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Yes, the crossdomain restriction only applies to data service calls
> make directly from the Flash Player.  Server processes, like Blaze, or LCDS
> or .net, or whatever do not have that restriction.
>
>
>
> You can avoid the crossdomain restriction by proxying the data service
> calls through the server, in many ways.
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Vivian Richard
> *Sent:* Tuesday, April 22, 2008 1:12 AM
>
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
>
> By the way did you guys try Christophe Coenrates' BlazeDS 30 mins test
> drive
> examples? His tutorial includes a tomcat server with BlazeDS
> installed. I did
> not find the crossdomain.xml file in it!!! and it works :)))
> Here is the link
> if you want to take a look at it...
>
>
> http://coenraets.org/blog/2007/12/blazeds-open-sourcing-remoting-and-messaging/
>
>
>
>  On Mon, Apr 21, 2008 at 9:33 AM, Tracy Spratt <[EMAIL PROTECTED]>
> wrote:
>
> Also, at least for testing, I think you should specify to-ports="*"
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of [EMAIL PROTECTED]
> *Sent:* Monday, April 21, 2008 12:15 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] crossdomain where is the server root?
>
>
>
>
> Yes, stick it under ROOT.
>
> cheers,
>
> David
> x54680
>
> *"Vivian Richard" <[EMAIL PROTECTED]>*
> Sent by: flexcoders@yahoogroups.com
>
> 04/20/2008 06:54 PM
>
> Please respond to
> flexcoders@yahoogroups.com
>
>To
>
> flexcoders@yahoogroups.com
>
> cc
>
>
>
> Subject
>
> Re: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>Thanks for the emails. When I run tomcat and go to
> http://localhost:8080/
>it will take me to the ROOT directory and there is an index.html file
> which
>is show on the browser. So does that mean my root is ROOT directory?
>
>By the way since I did not update the flash player, I did use the older
>
>version of crossdomain.xml file. This one:
>
>  
>   http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
>  
>  
>  
>
>
>
>
>
> On Sun, Apr 20, 2008 at 7:05 AM,  <[EMAIL PROTECTED]> wrote:
>
>
> In tomcat it needs to go in the root webapp, not in the webapps directory.
>
> If you just do http://myserver/, what does it resolve to?
>
> cheers,
>
> David
>
>
> *"Tracy Spratt" <[EMAIL PROTECTED] <[EMAIL PROTECTED]>*>*
> Sent by: flexcoders@yahoogroups.com
>
> 04/20/2008 11:04 AM
>
> Please respond to
> flexcoders@yahoogroups.com
>
>To
>
> 
>
> cc
>
>
>
> Subject
>
> RE: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
>
>
>
>
>
>
>
> It goes wherever the web server domain name resolves to.  In IIS,
> …\inetpub\wwwroot.  In JRUN, …\jrun4\servers\default.  I have never put one
> in a Tomcat installation… hmm, I just went and looked at a tomcat server and
> I would have expected it to go in "webapps", as you said you tried.
>
>
>
> First are you trying a global setting, using wildcards for both the port
> and server?  Also, with the latest versions of the player, yo need a couple
> more entries in tht file.  Here is an example.
>
>
>
> 
>
>  http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
>
> 
>
>
>
>
>
>
>
> 
>
>
>
> That way I figured mine out is to put a global crossdomain in every
> possible location until it worked, then removed them till it broke.
>
>
>
> Tracy
>
>
>
>
>  --
>
>
>
>
>
>
> *From:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
> Behalf Of *hworke
> *Sent:* Friday, April 18, 2008 8:50 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] crossdomain where is the server root?
>
>
>
>
>
> Sorry for asking this question. I am using jetty
> and put the crossdomain.xml in webapps folder but
> look like it is not the root. Also which one is the
> tomcat root? ROOT folder?
>
>
>
>
>
>  
>


Re: [flexcoders] crossdomain where is the server root?

2008-04-21 Thread Vivian Richard
By the way did you guys try Christophe Coenrates' BlazeDS 30 mins test
drive
examples? His tutorial includes a tomcat server with BlazeDS installed.
I did
not find the crossdomain.xml file in it!!! and it works :)))
Here is the link
if you want to take a look at it...


http://coenraets.org/blog/2007/12/blazeds-open-sourcing-remoting-and-messaging/




On Mon, Apr 21, 2008 at 9:33 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>Also, at least for testing, I think you should specify to-ports="*"
>
>
>
> Tracy
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of [EMAIL PROTECTED]
> *Sent:* Monday, April 21, 2008 12:15 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] crossdomain where is the server root?
>
>
>
>
> Yes, stick it under ROOT.
>
> cheers,
>
> David
> x54680
>
>   *"Vivian Richard" <[EMAIL PROTECTED]>*
> Sent by: flexcoders@yahoogroups.com
>
> 04/20/2008 06:54 PM
>
> Please respond to
> flexcoders@yahoogroups.com
>
>To
>
> flexcoders@yahoogroups.com
>
> cc
>
>
>
> Subject
>
> Re: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>Thanks for the emails. When I run tomcat and go to
> http://localhost:8080/
>it will take me to the ROOT directory and there is an index.html file
> which
>is show on the browser. So does that mean my root is ROOT directory?
>
>By the way since I did not update the flash player, I did use the older
>
>version of crossdomain.xml file. This one:
>
>  
>   http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
>  
>  
>  
>
>
>
>
>
> On Sun, Apr 20, 2008 at 7:05 AM,  <[EMAIL PROTECTED]> wrote:
>
>
> In tomcat it needs to go in the root webapp, not in the webapps directory.
>
> If you just do http://myserver/, what does it resolve to?
>
> cheers,
>
> David
>
>
>   *"Tracy Spratt" <[EMAIL PROTECTED] <[EMAIL PROTECTED]>*>*
> Sent by: flexcoders@yahoogroups.com
>
> 04/20/2008 11:04 AM
>
> Please respond to
> flexcoders@yahoogroups.com
>
>To
>
> 
>
> cc
>
>
>
> Subject
>
> RE: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
>
>
>
>
>
>
>
> It goes wherever the web server domain name resolves to.  In IIS,
> …\inetpub\wwwroot.  In JRUN, …\jrun4\servers\default.  I have never put one
> in a Tomcat installation… hmm, I just went and looked at a tomcat server and
> I would have expected it to go in "webapps", as you said you tried.
>
>
>
> First are you trying a global setting, using wildcards for both the port
> and server?  Also, with the latest versions of the player, yo need a couple
> more entries in tht file.  Here is an example.
>
>
>
> 
>
>  http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
>
> 
>
>
>
>
>
>
>
> 
>
>
>
> That way I figured mine out is to put a global crossdomain in every
> possible location until it worked, then removed them till it broke.
>
>
>
> Tracy
>
>
>
>
>  --
>
>
>
>
>
>
> *From:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
> Behalf Of *hworke
> *Sent:* Friday, April 18, 2008 8:50 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] crossdomain where is the server root?
>
>
>
>
>
> Sorry for asking this question. I am using jetty
> and put the crossdomain.xml in webapps folder but
> look like it is not the root. Also which one is the
> tomcat root? ROOT folder?
>
>
>
>
>
>


Re: [flexcoders] Re: Cairngorm ModelLocator array filter...

2008-04-21 Thread Vivian Richard
Thanks for the email Douglas. The problem is "it works" :) here!!!
Actually when
you told me to send some code I wrote this small code mainly to show how
I connected the filter. I was expecting this sample code will not work
either.
But it works as you have seen. So I guess my concept is right, I must
have
made some mistake in my main code and that was why it was not working.
I will find that.

   By the way Douglas, I am having hard time to keep track of all these
different
   event, command, component, factory modules. Is there any way I can
   draw a visual diagram from which I can visually see which event it tied
with
   which command .. etc?

   Best regards,

   Viv



On Mon, Apr 21, 2008 at 5:48 AM, Douglas McCarroll <
[EMAIL PROTECTED]> wrote:

>   Vivian,
>
> I set this up as a project in Flex Builder, ran it, and it works. The
> graph displays the appropriate subsets, and a breakpoint in the filter
> function indicates that it is doing its job.
>
> What's the problem? :)
>
> Douglas
>
> On Fri, Apr 18, 2008 at 10:27 AM, Vivian Richard <[EMAIL PROTECTED]>
> wrote:
>
> >
> >
> >Sorry here is the code
> >
> >
> >
> >
> > On Fri, Apr 18, 2008 at 6:25 AM, Vivian Richard <[EMAIL PROTECTED]>
> > wrote:
> >
> > >
> > >
> > >   Hi Douglas,
> > >
> > >   thanks for your email. Since my code was very big, I tried to write
> > > a very
> > >   small application hoping that it will not work. But in this case
> > > "unfortunately"
> > >   it is working. :-))). So I guess I must have made some mistake some
> > > where
> > >   in my main application. I guess I need to go through that algorithm
> > > and see
> > >   if it was correct. I am attaching the example that I just wrote.
> > > Please suggest
> > >   if I need to make any changes the way I tied the filter function
> > > with the
> > >   ArrayCollection.
> > >
> > >   By the way, it is true that Cairngorm made writing enterprise
> > > application very
> > >   easy but there are just too many classes and I am really having hard
> > > time
> > >   to keep track of what is doing what I guess I need to use UML.
> > > Any
> > >   suggestion which one should I use also if it is possible can I see
> > > an
> > >   example of Cairngorm/flex UML diagram..
> > >
> > >
> > >
> > >
> > >
> > > On Fri, Apr 18, 2008 at 3:17 AM, Douglas McCarroll <
> > > [EMAIL PROTECTED]> wrote:
> > >
> > > >> Any suggestions?
> > > >
> > > > Yes. Show us the code where you are trying to do this.  :)
> > > >
> > > >  On Thu, Apr 17, 2008 at 9:13 PM, Vivian Richard <[EMAIL PROTECTED]>
> > > > wrote:
> > > >
> > > > >
> > > > >
> > > > >
> > > > >In my main application's creation complete event function I
> > > > > assigned
> > > > >one of my Modellocator's arraylist to its filter function. Then
> > > > >the event that triggers the  filtering - that event's command
> > > > > calls
> > > > >arrayCollection.refresh()  function. Unfortunately I do not see
> > > > > any
> > > > >filtering taking place. Any suggestions?
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Tue, Apr 15, 2008 at 12:36 PM, gabriel montagné <
> > > > > [EMAIL PROTECTED]> wrote:
> > > > >
> > > > > >   sorry,
> > > > > >
> > > > > >
> > > > > > On Tue, Apr 15, 2008 at 2:27 PM, gabriel montagné <
> > > > > > [EMAIL PROTECTED] > wrote:
> > > > > > > on a particular view, sorting an array
> > > > > >
> > > > > > ... on the view...
> > > > > >
> > > > > > > would make the most sense.
> > > > > > --
> > > > > > gabriel montagné láscaris comneno
> > > > > > http://rojored.com
> > > > > > t/506.8392.2040
> > > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>  
>


Re: [flexcoders] crossdomain where is the server root?

2008-04-20 Thread Vivian Richard
   Thanks for the emails. When I run tomcat and go to http://localhost:8080/
   it will take me to the ROOT directory and there is an index.html file
which
   is show on the browser. So does that mean my root is ROOT directory?

   By the way since I did not update the flash player, I did use the older
   version of crossdomain.xml file. This one:

 
 http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
 
 
 





On Sun, Apr 20, 2008 at 7:05 AM, <[EMAIL PROTECTED]> wrote:

>
> In tomcat it needs to go in the root webapp, not in the webapps directory.
>
> If you just do http://myserver/, what does it resolve to?
>
> cheers,
>
> David
>
>
>
>  *"Tracy Spratt" <[EMAIL PROTECTED]>*
> Sent by: flexcoders@yahoogroups.com
>
> 04/20/2008 11:04 AM
>  Please respond to
> flexcoders@yahoogroups.com
>
>   To
>   cc
>   Subject
> RE: [flexcoders] crossdomain where is the server root?
>
>
>
>
>
> It goes wherever the web server domain name resolves to.  In IIS,
> …\inetpub\wwwroot.  In JRUN, …\jrun4\servers\default.  I have never put one
> in a Tomcat installation… hmm, I just went and looked at a tomcat server and
> I would have expected it to go in "webapps", as you said you tried.
>
>
>
> First are you trying a global setting, using wildcards for both the port
> and server?  Also, with the latest versions of the player, yo need a couple
> more entries in tht file.  Here is an example.
>
>
>
> 
>
>  http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd";>
>
> 
>
>
>
>
>
>
>
> 
>
>
>
> That way I figured mine out is to put a global crossdomain in every
> possible location until it worked, then removed them till it broke.
>
>
>
> Tracy
>
>
> --
>
>
>
> *From:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
> Behalf Of *hworke
> *Sent:* Friday, April 18, 2008 8:50 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] crossdomain where is the server root?
>
>
>
>
>
> Sorry for asking this question. I am using jetty
> and put the crossdomain.xml in webapps folder but
> look like it is not the root. Also which one is the
> tomcat root? ROOT folder?
>
>
>
>  
>


Re: [flexcoders] Re: Cairngorm ModelLocator array filter...

2008-04-18 Thread Vivian Richard
  Hi Douglas,

  thanks for your email. Since my code was very big, I tried to write a very
  small application hoping that it will not work. But in this case
"unfortunately"
  it is working. :-))). So I guess I must have made some mistake some where
  in my main application. I guess I need to go through that algorithm and
see
  if it was correct. I am attaching the example that I just wrote. Please
suggest
  if I need to make any changes the way I tied the filter function with the
  ArrayCollection.

  By the way, it is true that Cairngorm made writing enterprise application
very
  easy but there are just too many classes and I am really having hard time
  to keep track of what is doing what I guess I need to use UML. Any
  suggestion which one should I use also if it is possible can I see an
  example of Cairngorm/flex UML diagram..




On Fri, Apr 18, 2008 at 3:17 AM, Douglas McCarroll <
[EMAIL PROTECTED]> wrote:

>   > Any suggestions?
>
> Yes. Show us the code where you are trying to do this.  :)
>
> On Thu, Apr 17, 2008 at 9:13 PM, Vivian Richard <[EMAIL PROTECTED]>
> wrote:
>
> >
> >
> >
> >In my main application's creation complete event function I assigned
> >one of my Modellocator's arraylist to its filter function. Then
> >the event that triggers the  filtering - that event's command calls
> >arrayCollection.refresh()  function. Unfortunately I do not see any
> >filtering taking place. Any suggestions?
> >
> >
> >
> >
> >
> > On Tue, Apr 15, 2008 at 12:36 PM, gabriel montagné <
> > [EMAIL PROTECTED]> wrote:
> >
> > >   sorry,
> > >
> > >
> > > On Tue, Apr 15, 2008 at 2:27 PM, gabriel montagné <[EMAIL 
> > > PROTECTED]>
> > > wrote:
> > > > on a particular view, sorting an array
> > >
> > > ... on the view...
> > >
> > > > would make the most sense.
> > > --
> > > gabriel montagné láscaris comneno
> > > http://rojored.com
> > > t/506.8392.2040
> > >
> >
> >
>  
>


Re: [flexcoders] Re: Cairngorm ModelLocator array filter...

2008-04-17 Thread Vivian Richard
   In my main application's creation complete event function I assigned
   one of my Modellocator's arraylist to its filter function. Then
   the event that triggers the  filtering - that event's command calls
   arrayCollection.refresh()  function. Unfortunately I do not see any
   filtering taking place. Any suggestions?




On Tue, Apr 15, 2008 at 12:36 PM, gabriel montagné <
[EMAIL PROTECTED]> wrote:

>   sorry,
>
>
> On Tue, Apr 15, 2008 at 2:27 PM, gabriel montagné <[EMAIL 
> PROTECTED]>
> wrote:
> > on a particular view, sorting an array
>
> ... on the view...
>
> > would make the most sense.
> --
> gabriel montagné láscaris comneno
> http://rojored.com
> t/506.8392.2040
>  
>


Re: [flexcoders] Need help buying Flex licenses in US$ - Intl prices are highway robbery!

2008-04-16 Thread Vivian Richard
   Hi Josh. Sounds weired. But I guess whoever was helping you mixed up
   with Australian dollar verses USD. I do not believe that there is any way
   that Australian will pay 90% more unless there are any Australian tax!!!




On Wed, Apr 16, 2008 at 5:28 PM, Peter Connolly <[EMAIL PROTECTED]>
wrote:

>   That's really weird, given the state of our deflating US dollar.
> Adobe, what's up???
>
>
> On Wed, Apr 16, 2008 at 6:23 PM, Josh McDonald <[EMAIL 
> PROTECTED]>
> wrote:
> >
> >
> >
> >
> >
> >
> > Hi guys,
> >
> > Can anybody point me to a reseller who sells Flex licenses in US$ to
> non-US
> > addressed credit cards? We don't want discs, we're not in Nigeria or
> Russia,
> > and all calls go to the same call centre in India, why the bloody hell
> > should Australians pay 90% more for a 40 character string?
> >
> > -J
> >
> > --
> > "Therefore, send not to know For whom the bell tolls, It tolls for
> thee."
> >
> > :: Josh 'G-Funk' McDonald
> > :: 0437 221 380 :: [EMAIL PROTECTED] 
>  
>


Re: [flexcoders] Cairngorm ModelLocator array filter...

2008-04-15 Thread Vivian Richard
Wow liked both the solutions. One is to make a copy and then add the
filter function and the other one is to add the filer function in
command.

Great thanks.




On Mon, Apr 14, 2008 at 3:26 PM, gabriel montagné <
[EMAIL PROTECTED]> wrote:

>   On Mon, Apr 14, 2008 at 12:49 PM, hworke <[EMAIL 
> PROTECTED]>
> wrote:
> >
> > Hi I am using Cairngorm and in my ModelLocator I do
> > have an array. I want to filter that array with a
> > filter function. My question is where do I put this
> > filter function: in a separate file or in the
> > ModelLocator class?
>
> I personally (and the other guys on my team) we like to keep the models
> with absolutely no logic at all. The beauty of the command pattern is
> that all the logic is kept in small, discrete classes, all nicely tucked
> into their appropriate packages.
>
> If we need to setup sorts and filters or whatever on the data on the
> model, we do it from the commands that set that data initially. If you
> do need to keep changing that filter from time to time, I would further
> abstract it into another event + command pair.
>
> Once we did a search like that. We had a package of commands for
> processing search that would be in charge of taking the query and use it
> to build the custom filters and sorts for the catalog data.
>
> Hope this helps,
> G.
>
> --
> gabriel montagné láscaris comneno
> http://rojored.com
> t/506.8392.2040
>  
>


Re: [flexcoders] Re: some one must know this!!! Please tell me!!!

2008-04-13 Thread Vivian Richard
   Here comes the best part: it worked What Tracy suggested worked
   and I am no more stuck. Thanks Tracy. By the way is it really Tracy
   who is answering most of the questions? How come I never noticed
   that name. The name I see all the time is the mighty "ALEX". Not only
   that did not you see the video my Matt - every one way saying "I do
   not know!!! Go ask Alex!!" Any way you guys are all great.

   Cheers




On Sun, Apr 13, 2008 at 9:23 AM, Tracy Spratt <[EMAIL PROTECTED]> wrote:

>I have to take exception to the suggestion that active participation in
> the community must interfere with getting one's work done!
>
> Tracy
>
>
>
> PS, weekend is almost over, probably time to stop chattering.
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Jamie S
> *Sent:* Sunday, April 13, 2008 12:49 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Re: some one must know this!!! Please tell
> me!!!
>
>
>
> What? You don't have enough work clinkinbeard? :)
>
> Jamie S
>
> On Sat, Apr 12, 2008 at 8:51 PM, ben.clinkinbeard
> <[EMAIL PROTECTED] > wrote:
> >
> >
> >
> >
> >
> >
> > Can someone figure out who has the highest message-per-thread average?
> > I've got to be close to the top of that one. :)
> >
> > Ben
> >
> >
> >
> > --- In flexcoders@yahoogroups.com , "Alex
> Harui" <[EMAIL PROTECTED]> wrote:
> > >
> > > As of early March:
> > >
> > >
> > >
> > > Tracy: 4095
> > >
> > > Matt: 2838
> > >
> > > Alex: 2747
> > >
> > > Gordon: 2387
> > >
> > > Tom Chiverton: 2090
> > >
> > >
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com [mailto:
> flexcoders@yahoogroups.com ] On
> > > Behalf Of Alex Harui
> > > Sent: Saturday, April 12, 2008 7:34 PM
> > > To: flexcoders@yahoogroups.com 
> > > Subject: RE: [flexcoders] some one must know this!!! Please tell me!!!
> > >
> > >
> > >
> > > Someone counted last month. I'm due to pass Matt Chotin any day now,
> > > but Tracy is way far ahead.
> > >
> > >
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com [mailto:
> flexcoders@yahoogroups.com ] On
> > > Behalf Of Doug McCune
> > > Sent: Saturday, April 12, 2008 7:07 PM
> > > To: flexcoders@yahoogroups.com 
> > > Subject: Re: [flexcoders] some one must know this!!! Please tell me!!!
> > >
> > >
> > >
> > > > There is too much traffic on this list to read everything, and we
> > > choose what to read based on whether we think we can help with the
> > > problem expressed in the subject.
> > >
> > > * except for Tracy, who obviously reads every message, especially the
> > > ones with the most exclamation points in the subject. For the best
> > > chance of getting your question answered be sure to use a subject
> > > similar to this: "Flex is broken!!! Plz fix this bug"
> > >
> > > I'm thinking about making a little flexcoders leader board to see who
> > > has answered the most questions on this list. I'm curious to see who
> > > would win between Tracy and Alex Harui.
> > >
> > > Sorry for additional unimportant blabber on the list :) Just wanted to
> > > thank Tracy for his dedication to helping everyone out.
> > >
> >
> >
> >
> >
>
>  
>


Re: [flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Vivian Richard
   Looks very Attractive. But I was not able to see and content inside,
   just saw the interface. I do not know why I am not getting any content.
   May be you did not put any.

   Everything is good but I will suggest that when you resize the middle
panel
   please use effect instead jumping  to the resize state. For some reason I

   find gradual resizing is more attractive compared to instant resizing.
But
   no doubt you got good stuff there!!! Good luck.






On Mon, Apr 7, 2008 at 9:29 PM, Anirudh Sasikumar <
[EMAIL PROTECTED]> wrote:

>   Awesome!
>
> Cheers,
> --
> Anirudh Sasikumar
> http://anirudhs.chaosnet.org/
>  
>


Re: [flexcoders] Re: rss feed not working

2008-04-02 Thread Vivian Richard
   thanks. Yes you are right, my code is more complicated. But since
   I am using Cairngorm, this is the way that I need to do it. In Cairngorm
   architecture you put all you HTTPServices in one file in mxml tags like:

   
   

   You instantiate and send the http request from another file where you
also
   add and declare the fault and result handler. So When you send the
   HTTP request you will dynamically add the result and fault handler during
   run time. That is what I was trying to do

   I guess my main problem is I am not processing the resultEvent proporly




On Wed, Apr 2, 2008 at 1:32 PM, Kevin <[EMAIL PROTECTED]> wrote:

>   I think you're making it more complicated then it needs to be. Try this:
>
>
>  url="{ rssURL }" resultFormat="object"
> showBusyCursor="true"
> result="onResult(event)"
> fault="onFault()"
> />
>
> <** snip **>
>
> public function init():void
> {
> httpRSS.send();
> }
>
> --- In flexcoders@yahoogroups.com , "hworke"
> <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hi am reading an rss file and calling the HTTPService with
> > action script then handling the HTTPService result to a
> > AsyncToken and finally handling the result is onResult function.
> >
> > But for some reason It is not giving me any return.
> > Here is the HTTPService and the function that calls it:
> >
> >  > resultFormat="object" showBusyCursor="true"/>
> >
> >
> > public function init():void
> > {
> > httpRSS.send();
> > var token:AsyncToken = httpRSS.send();
> > var callResponder:Responder = new Responder(onResult,onFault);
> > }
> >
> > public function onResult(event:ResultEvent):void
> > {
> > var tmp:Object = event.result.RDF.item;
> > var items:Array = new Array();
> > for( var i:String in tmp )
> > {
> > items.push( tmp[i] );
> > }
> > externalData = new ArrayCollection( items );
> > }
> >
> > *
> > *
> > *
> >
> > Here is the whole code
> >
> > *
> > *
> > *
> >
> >
> > 
> >
> > http://www.adobe.com/2006/mxml";
> > xmlns:iframe="com.renaun.iframe.*"
> > creationComplete="init()"
> > width="100%" height="100%"
> > paddingLeft="5" paddingRight="5" paddingBottom="5"
> paddingTop="5"
> > horizontalAlign="left"
> > layout="vertical" viewSourceURL="srcview/index.html">
> >
> >  > url="{ rssURL }" resultFormat="object"
> > showBusyCursor="true"/>
> >
> > 
> > 
> > 
> > 
> >  > title="Adobe MXNA Flex Feed (RSS Reader Example #2)"
> > width="100%" height="100%"
> > paddingLeft="5" paddingRight="5" paddingBottom="5"
> paddingTop="5">
> >
> >  > id="newsItems"
> > dataProvider="{ externalData }">
> >  > creationCompleteEffect="Fade">
> >  > textAlign="left"
> > label="{ newsItems.currentItem.title }"
> > click="processURL(
> > event.currentTarget.getRepeaterItem().link )" />
> >  > editable="false"
> > width="98%" cornerRadius="6" height="50"
> > backgroundColor="0xFAFAFA"
> > htmlText="{ newsItems.currentItem.description }"
> > >
> >  > width="98%"
> > textAlign="right"
> > text="{ newsItems.currentItem.creator + ' ' +
> > newsItems.currentItem.date + ' ' + newsItems.currentItem.subject }" />
> >
> > 
> > 
> > 
> > 
> >
>
>  
>


Re: [flexcoders] Digital Clock

2008-03-04 Thread Vivian Richard
   If you are using LED characters for the clock display
   then how do you make the " : " between the hour and
   minute characters blink to indicate that a second has
   passed?



On Tue, Mar 4, 2008 at 10:40 PM, YOGESH JADHAV <[EMAIL PROTECTED]> wrote:

>   just assigning a label date.toString may result in descent digital
> clock.
>
>
> On Tue, Mar 4, 2008 at 10:37 PM, Fidel Viegas <[EMAIL PROTECTED]>
> wrote:
>
> >   On Tue, Mar 4, 2008 at 5:30 PM, Tom Chiverton
> > <[EMAIL PROTECTED] > wrote:
> > > On Tuesday 04 Mar 2008, Fidel Viegas wrote:
> > > > Does anyone have a sample digital clock I can have a look at? Or
> > give
> > > > me a pointer?
> > >
> > > Would this not just be a suitable font and mx:Text ?
> >
> > Yes. Sometimes your brains are so tired that you miss the most obvious
> > things.
> >
> > The timer object didn't even come to my mind. :D
> >
> > Thanks!
> >
>
>
>
> --
>
>
> Regards,
> Yogesh
> 
>


Re: [flexcoders] How do i get rid of the white box?

2008-02-16 Thread Vivian Richard
   So!!! How did you remove it. Please let me know!!!
   Thanks..




On Feb 16, 2008 3:03 PM, Sherif Abdou <[EMAIL PROTECTED]> wrote:

>   never mind, i guess it is called whiteBox who woulda thought it would be
> that easy.
>
> - Original Message 
> From: Sherif Abdou <[EMAIL PROTECTED]>
> To: flexcoders@yahoogroups.com
> Sent: Saturday, February 16, 2008 4:55:49 PM
> Subject: [flexcoders] How do i get rid of the white box?
>
>   Picture is attatched, i have no idea what it is or how to get rid of it.
> Thanks
>
> --
> Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it
> now.
>
>
> --
> Looking for last minute shopping deals? Find them fast with Yahoo! 
> Search.
> 
>


Re: [flexcoders] GOLD color for a bad chart

2008-02-09 Thread Vivian Richard
Thanks for the link. I guess in this page they are just using one
yellow color which is closest to gold color. I have seen Ely's
code where he used color combination which is more close
to gold color. Here is the link:

   http://demo.quietlyscheming.com/ChartSampler/app.html

  please click the style folder and click the Fills-
  as you can see the columns looks very much
  like 3D gold bard but not exactly like GOLD.

 I am sure someone with very good idea about color can combine
 colors to make it exactly look like gold BARS...

 The color combination that Ely used for the above example is:









 regards





On Feb 9, 2008 9:29 PM, Sherif Abdou <[EMAIL PROTECTED]> wrote:

>   look all the way down, it might help
> http://en.wikipedia.org/wiki/Gold_(color
> )
>
> - Original Message 
> From: hworke <[EMAIL PROTECTED]>
> To: flexcoders@yahoogroups.com
> Sent: Saturday, February 9, 2008 11:18:28 PM
> Subject: [flexcoders] GOLD color for a bad chart
>
>
>
> Hi, I am not a color specialist but trying to
> make the bars of my barchart look like GOLD
> bars, just metallic gold color. Which color
> combination do I need for that? Please suggest.
>
> Best regards...
>
>
>
> --
> Never miss a thing. Make Yahoo your 
> homepage.
> 
>


  1   2   >