Re: [flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread Jeremy Lu



don't forget event in Flex2 *bubbles*.you can listen to click event on image inside the item renderer and manually dispatch a "ImageClick" event then it will eventually bubble up to the container DataGrid.
this way your outer application just have to handle this event from DataGrid then display detailed information in other controls.Jeremy.On 6/10/06, 
jpwarmer <[EMAIL PROTECTED]> wrote:









  



--- In flexcoders@yahoogroups.com, "Jim Robson" <[EMAIL PROTECTED]> wrote:

>
I already try that way.the problem is that I can't catch the event
that the renderer dispatch...I don't want that the renderer chatch the
event.The DataGrid must catch it, so i can do something with it...


		width="100%" height="100%" visible="false" sortableColumns="true">
		
		 
	  		
itemRenderer="ImageCellRenderer"  textAlign="center" width="40"
dataField="id"  />
.

The general idea is that when click on the image (and just on the
image, not in the row...i don't care about the selected item at the
moment) an event is dispatched so details over the element are showed
on a diferent panel, the datagrid shows a very small set of data, the
remain information must be obtained by calling a service.

PD:Sorry about my english, it is obvious that is not my native language ;)


__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Flex vs. .Net for RIA database apps; new to both

2006-06-09 Thread Jeremy Lu



well, Flex 2 is surely suitable for database oriented or data-centric application, you can check out the Flex Derby pages here:

http://labs.adobe.com/wiki/index.php/Showcase:Flex_Developer_Derby

lot of applications are data-heavy and co-op with backend technology closely, this is never an issue.

Judging from what you described (database-frontend, form-entry, CRUD
stuff), Flex2 should serves you quite right, check out following topic
in the livedoc/manual:

-RPC in Data Service: this is for data connection with backend using HTTP Get/Post, Web Service, XML or Remoting.

-FORMS: this is for creating user-input Forms, handling all the layout, required field, data validation and so on...

-Validator: there are various built-in Validators (email, credit
card...) to check user-input data before sending back to server.

in my opinio, it's really a snap to build this kind of Form-Entry-CRUD-Stuff with Flex2 :-)

Jeremy.

On 6/10/06, michaellisten <[EMAIL PROTECTED]> wrote:









  



But
most flex example apps are less database oriented and are often showy
shopping carts. Is flex going to be good for what I'm after?Most
examples have little data entry. I posted here about
flex/flashcomboboxes for data entry/selection and didn't get much in
the way offeedback.
 

I am most interested in the approach that is the most productive;
helps the most with data binding, wysisyg designers, error handling,
and so forth. I'm usually asked to create a lot of solid software in a
minimal timeframe, so my priority here will be to choose software that 
simplifies the design/build cycle.


  




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Jeremy Lu




very interesting...

why not trigger a global "ArrayChangedEvent" so each fitlered
ArrayCollection can update itself according to it ? (with some binding
settings this should be feasible)

the trigger point is: when new data are pushed into MasterArray, dispatch it.

Tom: if you have some sample code, I can give it a try.
On 6/10/06, Tim Hoff <[EMAIL PROTECTED]> wrote:









  



I'll
have to take your word on that, but I'm still skeptical.  If what
you say is true, then you could still use the same approach, but
instead have the view listen for updates to the masterArray in the
ModelLocator.  You could do this either by using the changWatcher
utility or Paul Williams' Observe tag:
http://weblogs.macromedia.com/paulw/
When your view hears a change to the masterArray, you would then
refresh the ArrayCollection.  It's a little cumbersome, but since
direct binding doesn't want to work for you, it might be a necessary
step.
-TH--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>> Thanks for trying. An ArrayCollection will not reflect changes made> directly to its source array, so new items pushed onto masterArray do not> show up in my views.
> > -Tom> > On 6/9/06, Tim Hoff [EMAIL PROTECTED] wrote:> >> > Changes to the masterArray in the ModelLocator should be> > automatically reflected in the AC if you use either of the binding
> > methods I posted. If not, sorry. That's all I have.> >> >> > -TH> >> > --- In 
flexcoders@yahoogroups.com , "Tom> > Bray" tombray@ wrote:> > >> > > The problem is that changes to ModelLocator.getInstance> > ().masterArray don't
> > > update the views' dataProviders. In other words, the> > ArrayCollections that> > > use masterArray as their source don't know when new items are> > added to or> > > removed from masterArray. That's why I was thinking that
> > masterArray would> > > actually be masterArrayCollection and I'd bind each of the view's> > > dataProvider ACs to it so they could stay in sync. I bound the> > master AC to
> > > the sub ACs using BindingUtils and was surprised to see the filter> > function> > > on the sub ACs affect the master AC. I posted sample code here:> > > 
http://groups.yahoo.com/group/flexcoders/message/39064?l=1> > >> > > Thanks again!> > >> > > -Tom> > >> > > On 6/9/06, Tim Hoff TimHoff@ wrote:
> > > >> > > >> > > > Something like this should do the trick:> > > >> > > > > > > > > > > > 
> > > >> > > > -TH> > > >> > > >> > > > --- In 
flexcoders@yahoogroups.com > > 
40yahoogroups.com>, "Tom> > > > Bray"  wrote:> > > > >> > > > > Thanks, Tim. That makes sense but there's one limitation I'm> > not sure
> > > > how> > > > > to work around. That master Array of users is going to be> > constantly> > > > updated> > > > > by the server to show who's currenlty online. Since an Array
> > isn't> > > > > bindable, how would you propagate changes from that Array to> > the> > > > filtered> > > > > ArrayCollections that use it as their source?
> > > > >> > > > > -Tom> > > > >> > > > > On 6/9/06, Tim Hoff TimHoff@ wrote:> > > > > >> > > > > > Hey Tom,
> > > > > >> > > > > > In response to this question and the BindingUtils and> > > > > > ArrayCollection.filter question, I offer this suggestion. In> > the
> > > > > > ModelLocator maintain a single master Array of all the> > users. Then> > > > > > in each instance of your view components, create a new bound> > > > > > ArrayCollection (dataProvider), with the master Array as the
> > > > > > underlying source. Each of the ArrayCollections will have a> > > > > > different filterFunction based on the type of view component> > that is> > > > > > instantiated. Because the ArrayCollections don't actually
> > contain> > > > > > any data, just pointers to the underlying Array, I would> > handle the> > > > > > ArrayCollections and filterFunctions in viewHelpers. In a
> > sense,> > > > > > you would be creating separate sub-sets of the master Array> > in each> > > > > > instance of your views. If you preferred, you could maintain
> > each> > > > > > ArrayCollection (Array of ArrayCollections) in the> > ModelLocator as> > > > > > well.> > > > > >> > > > > > I hope that this makes sense,
> > > > > > Tim Hoff> > > > > >> > > > > >> > > > > > --- In 
flexcoders@yahoogroups.com > > 40yahoogroups.com
>,> >> > > >> > > > "Tom> > > > > > Bray" tombray@ wrote:> > > > > > >> > > > > > > Say my model has an ArrayCollection of all the users that
> > are> > > > > > > connected to my Flex app. I then have configurable list> > views that> > > > > > > display different subsets of that collection based on
> > different> > > > > > user> > > > > > > properties (gender, age, location, etc.). Multiple views,> > multiple> > > > > > > filters, all being fed from the same master
> > ArrayCollection of all> > > > > > > connected users. I even want the user to be able to> > dynamically> > > > > > > create new views with different filters.
> > > > > > >> > > > > > > Unless there's something I'm missing, each view 

Re: [flexcoders] beta3- Datagrid gurus?

2006-06-09 Thread Jeremy Lu




is this FB2 ? (there sould be no setValue() method in FB2).

as to the question, you don't necessaryly have to put a radio group in each row to achive what you want.

simply place a RadioButton in the item renderer then toggle it's
"selected" property should do the trick, oh, of course there should be
3 columns/fields in your Model which stores the values for the toggle
status.

pseudo code ( in the item renderer) : 

public override function set data(value:Object):void{
    //datagrid item will be passed in here
    //use this data to toggle each of the radio button's selected property.
}

Jeremy.On 6/10/06, sufibaba <[EMAIL PROTECTED]> wrote:









  



Hi all,

I have a Datagrid with 4 columns. The Dataprovider is bounded to model
locator variable so the rows are being generated on the fly.  I want
to create a distinct radio groupname for each row so that only
Yes/No/either can be selected.  

productYesNo   Either
---
item1 -- radio1 --  radio2 --  radio3
item2 -- radio1 --  radio2 --  radio3
item3 -- radio1 --  radio2 --  radio3
item4 -- radio1 --  radio2 --  radio3
item5 -- radio1 --  radio2 --  radio3

-


variableRowHeight="true" height="100%">		 
  


itemRenderer="RadioButtonCellRenderer"/>

itemRenderer="RadioButtonCellRenderer"/>

width="50" itemRenderer="RadioButtonCellRenderer"/>
  
   

-  RadioButtonCellRenderer.as ---

package 

{
	import mx.controls.RadioButton;
	 
	public class RadioButtonCellRenderer extends RadioButton
	{

		  public function RadioButtonCellRenderer():void{
		  	super();

		  	}		  
		  }
		  
		  public function setValue():void{

		  }
		 
	}
}


  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] Re: Is this a bug?

2006-06-09 Thread Darren Houle
Tracy and Ben, thank you :-)

Darren



>From: "ben.clinkinbeard" <[EMAIL PROTECTED]>
>Reply-To: flexcoders@yahoogroups.com
>To: flexcoders@yahoogroups.com
>Subject: [flexcoders] Re: Is this a bug?
>Date: Fri, 09 Jun 2006 19:44:33 -
>
>Yep, in AS3 everything must be imported no matter what. See #5 here:
>http://labs.adobe.com/wiki/index.php/ActionScript_3:Learning_Tips
>
>Ben




 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff



I'll have to take your word on that, but I'm still skeptical.  If what you say is true, then you could still use the same approach, but instead have the view listen for updates to the masterArray in the ModelLocator.  You could do this either by using the changWatcher utility or Paul Williams' Observe tag:
http://weblogs.macromedia.com/paulw/
When your view hears a change to the masterArray, you would then refresh the ArrayCollection.  It's a little cumbersome, but since direct binding doesn't want to work for you, it might be a necessary step.
-TH--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:>> Thanks for trying. An ArrayCollection will not reflect changes made> directly to its source array, so new items pushed onto masterArray do not> show up in my views.> > -Tom> > On 6/9/06, Tim Hoff [EMAIL PROTECTED] wrote:> >> > Changes to the masterArray in the ModelLocator should be> > automatically reflected in the AC if you use either of the binding> > methods I posted. If not, sorry. That's all I have.> >> >> > -TH> >> > --- In flexcoders@yahoogroups.com , "Tom> > Bray" tombray@ wrote:> > >> > > The problem is that changes to ModelLocator.getInstance> > ().masterArray don't> > > update the views' dataProviders. In other words, the> > ArrayCollections that> > > use masterArray as their source don't know when new items are> > added to or> > > removed from masterArray. That's why I was thinking that> > masterArray would> > > actually be masterArrayCollection and I'd bind each of the view's> > > dataProvider ACs to it so they could stay in sync. I bound the> > master AC to> > > the sub ACs using BindingUtils and was surprised to see the filter> > function> > > on the sub ACs affect the master AC. I posted sample code here:> > > http://groups.yahoo.com/group/flexcoders/message/39064?l=1> > >> > > Thanks again!> > >> > > -Tom> > >> > > On 6/9/06, Tim Hoff TimHoff@ wrote:> > > >> > > >> > > > Something like this should do the trick:> > > >> > > > > > > > > > > > > > > >> > > > -TH> > > >> > > >> > > > --- In flexcoders@yahoogroups.com > > 40yahoogroups.com>, "Tom> > > > Bray"  wrote:> > > > >> > > > > Thanks, Tim. That makes sense but there's one limitation I'm> > not sure> > > > how> > > > > to work around. That master Array of users is going to be> > constantly> > > > updated> > > > > by the server to show who's currenlty online. Since an Array> > isn't> > > > > bindable, how would you propagate changes from that Array to> > the> > > > filtered> > > > > ArrayCollections that use it as their source?> > > > >> > > > > -Tom> > > > >> > > > > On 6/9/06, Tim Hoff TimHoff@ wrote:> > > > > >> > > > > > Hey Tom,> > > > > >> > > > > > In response to this question and the BindingUtils and> > > > > > ArrayCollection.filter question, I offer this suggestion. In> > the> > > > > > ModelLocator maintain a single master Array of all the> > users. Then> > > > > > in each instance of your view components, create a new bound> > > > > > ArrayCollection (dataProvider), with the master Array as the> > > > > > underlying source. Each of the ArrayCollections will have a> > > > > > different filterFunction based on the type of view component> > that is> > > > > > instantiated. Because the ArrayCollections don't actually> > contain> > > > > > any data, just pointers to the underlying Array, I would> > handle the> > > > > > ArrayCollections and filterFunctions in viewHelpers. In a> > sense,> > > > > > you would be creating separate sub-sets of the master Array> > in each> > > > > > instance of your views. If you preferred, you could maintain> > each> > > > > > ArrayCollection (Array of ArrayCollections) in the> > ModelLocator as> > > > > > well.> > > > > >> > > > > > I hope that this makes sense,> > > > > > Tim Hoff> > > > > >> > > > > >> > > > > > --- In flexcoders@yahoogroups.com > > 40yahoogroups.com>,> >> > > >> > > > "Tom> > > > > > Bray" tombray@ wrote:> > > > > > >> > > > > > > Say my model has an ArrayCollection of all the users that> > are> > > > > > > connected to my Flex app. I then have configurable list> > views that> > > > > > > display different subsets of that collection based on> > different> > > > > > user> > > > > > > properties (gender, age, location, etc.). Multiple views,> > multiple> > > > > > > filters, all being fed from the same master> > ArrayCollection of all> > > > > > > connected users. I even want the user to be able to> > dynamically> > > > > > > create new views with different filters.> > > > > > >> > > > > > > Unless there's something I'm missing, each view is going> > to need> > > > > > its> > > > > > > very own ArrayCollection that has its own filter function> > set up.> > > > > > I'm> > > > > > > picturing a wrapper class that provides addFilter() and> > > > > > removeFilter()> > > > > > > methods so that the AC's filter function can traverse an> > array of> > > > > > > other filters -- kind of a CompoundCommand pattern.> > > > > > >> > > > > > > Assuming that's part of the corr

[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread kevin_hammer
I use this function in Flex:

public function callWrapper(f:String, p:String):void {
var m:String = ExternalInterface.call(f, p);
trace(m); 
}

and then I call that function like this:

callWrapper("flashPutTitle", title);

--- In flexcoders@yahoogroups.com, "drome.dario" <[EMAIL PROTECTED]> 
wrote:
>
> Hi people,
> I can not achieve to get any return value from javascript other 
than 
> null.
> In th HTML container I have a functions like this:
> 
> function f(p)
> {
>  alert(p);
>  return(p);
> }
> 
> In my flex app I call the browser function in the following way:
> 
> var ret:*;
> ret = ExternalInterface.call( "f", "Hello" );
> Alert.show( ret.toString() );
> 
> I get an alert in the browser saying "Hello" and another Alert 
from 
> flex saying "null".
> 
> What's wrong?... I think that I should get two alerts shown, no?
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] datatips in datagrid, whats wrong?

2006-06-09 Thread tonyx_788
anybody knows why datatips are to slow or sometimes don't show at all?



















 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread kevin_hammer
I use this function in Flex:

public function callWrapper(f:String, p:String):void {
var m:String = ExternalInterface.call(f, p);
trace(m); 
}

and then I call that function like this:

callWrapper("flashPutTitle", title);

--- In flexcoders@yahoogroups.com, "drome.dario" <[EMAIL PROTECTED]> 
wrote:
>
> Hi people,
> I can not achieve to get any return value from javascript other 
than 
> null.
> In th HTML container I have a functions like this:
> 
> function f(p)
> {
>  alert(p);
>  return(p);
> }
> 
> In my flex app I call the browser function in the following way:
> 
> var ret:*;
> ret = ExternalInterface.call( "f", "Hello" );
> Alert.show( ret.toString() );
> 
> I get an alert in the browser saying "Hello" and another Alert 
from 
> flex saying "null".
> 
> What's wrong?... I think that I should get two alerts shown, no?
>






 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Re: Namespace hell

2006-06-09 Thread Ben Clinkinbeard



Hi Peter,Can you tell me what I am doing wrong here?
var entries:XML = 
http://site.com/Back/DocMetadata">
	
	  5/5/2006 9:56:30 AM
	  RPR
	
	
	  5/3/2006 3:07:27 PM
	  RPR
	
;entries.namespaceDeclarations().toString();   // this returns nothingThanks,BenOn 6/9/06, Peter Farland <
[EMAIL PROTECTED]> wrote:








  






XML namespaceDeclarations does return the default namespace 
for me, but perhaps you have to get this information from the root XML 
"node"?


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of Ben 
ClinkinbeardSent: Wednesday, June 07, 2006 11:43 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Namespace 
hell


Nope, because there is no way to even address the default namespace. Sorry, I 
thought I had mentioned that already but that was in a different thread. 
namespaceDeclarations() does not include default namespaces and 
namespaceDeclarations().length returns 0 when all you have is a default 
namespace. If you can manage to figure out a way to delete a default namespace I 
would be mighty grateful. Thanks,Ben

  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] FLEX2 devs in Detroit Area? // also

2006-06-09 Thread Robert Thompson



[I apologize if this is the wrong place to ask this; if so let me know]I'm looking to either form a small users group for FLEX 2.0, preferably in the Rochester Hills area of Michigan (North of Detroit), or to at least get together with some of them and discuss issues even if it's a conference style.  Part of the reason I'm asking this is I need another FLEX partner to help me take on the barrage of new projects coming my way.  I have a great business manager and attorneys; just need to begin to look into more than 1 programmer (me).I can take care of all the Windows 2003 Server integration.  What I need is someone to help me with my PHP conversion tool (which works amazingly well) and Server at my Linux host running Java and running Flex Data Services from there; per license (will the initial 1 license be only local?  I'd
 rather it be remote so when deploying it's as simple as buying more licenses instead of moving the test bed to the server)Why are so many people against JRun -- what are the alternatives?  I've found it easier to commit to one company and learn the ins and outs (did that with ms w/o reading the history of the early 80's and paid the price).  I've used JRun evaluation and it works fine...what do others use and what is their cost?-r __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Flex vs. .Net for RIA database apps; new to both

2006-06-09 Thread Robert Thompson



I think you might be interpreting the "showy shopping cart" as you call it as really a client side app that manages data mostly on the client side; and maintains integrity through publish & subscribe.If I were you, and anybody out there, I think it's rather obvious that most of us will run into situations where we want to build a Flex Builder 2.0 front end to a WSDL ASP.Net Web Service (by requirement not because it's the fastest) to a SQL Server 2005 database.But in the end, I think you're right, you should invest your time in Flex Data Services because of the publish & subscribe; it's model works far better imho in maintaining data integrity among a group of clients.Apple Computer started the phrase "Publish & Subscribe" back in the eary 1990's, and Mickeysoft followed with OLE.  This was for inter-application communication.SQL Server continued to use the term to maintain distributed
 databases.  I did one for the Ford 150 Demo Drive; hooked up a P&S between LA and Detroit; Ford sales people would ask questions upload to FTP server, agent program would put into database and it would eventually get to Detroit.Well, the Drill-Down interface I created was much appreciated -- but it queried the server every time.  I had the option of .Net for this -- but my opinion .Net is fine for applications; but I've wasted enough time to use it for creating web pages (though non UI Web Services are still something very viable on Windows Server 2003).If I had it my way -- we'd all have a thin client Desktop with something like Flex and then any server a person wants to use.  I still respect both Linux and Windows Server 2003.But when it comes to the client on Windows Desktop and IE and FLEX, I'm afraid the industry is in for another greedy grab by Nicklesoft.  They tried it before; they'll try it again.If you don't
 know ASP.Net for Web Services stick to Data Enterprise Server.-rmichaellisten <[EMAIL PROTECTED]> wrote:  I'm trying to decide which technology to invest my time into, and will  be experimenting with both .net and flex. I like the OS independence  that flex enables on the server side. I'd buy flex builder because I'm  interested in whichever provides the simplest learning curve, and I'm  sure on the flex side of things, flex builder would be a major asset.  Most of the applications that I build are database front ends, and are  not exposed to
 the public; they're usually used over intranet or  internet+vpn. CRUD stuff mostly, not image centric or needing the kind  of graphical wow that one tends to associate with flex/flash. I am not  that fond of the regular browser based format that we've been using for a decade. I am looking forward to the RIA age. If using .net I'd  probably go with winforms and remoting or webservices for the backend.  But most flex example apps are less database oriented and are often  showy shopping carts. Is flex going to be good for what I'm after? Most examples have little data entry. I posted here about flex/flash comboboxes for data entry/selection and didn't get much in the way of feedback.  I am most interested in the approach that is the most productive; helps the most with data binding, wysisyg designers, error handling, and so forth. I'm usually asked to create a lot of solid software in a minimal timeframe, so my
 priority here will be to choose software that  simplifies the design/build cycle.   
 __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tom Bray



Thanks for trying.  An ArrayCollection will not reflect changes made directly to its source array, so new items pushed onto masterArray do not show up in my views.-TomOn 6/9/06, 
Tim Hoff <[EMAIL PROTECTED]> wrote:









  



Changes to the masterArray in the ModelLocator should be 
automatically reflected in the AC if you use either of the binding 
methods I posted.  If not, sorry.  That's all I have.

-TH

--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> The problem is that changes to ModelLocator.getInstance
().masterArray don't
> update the views' dataProviders.  In other words, the 
ArrayCollections that
> use masterArray as their source don't know when new items are 
added to or
> removed from masterArray.  That's why I was thinking that 
masterArray would
> actually be masterArrayCollection and I'd bind each of the view's
> dataProvider ACs to it so they could stay in sync.  I bound the 
master AC to
> the sub ACs using BindingUtils and was surprised to see the filter 
function
> on the sub ACs affect the master AC.  I posted sample code here:
> http://groups.yahoo.com/group/flexcoders/message/39064?l=1
> 
> Thanks again!
> 
> -Tom
> 
> On 6/9/06, Tim Hoff <[EMAIL PROTECTED]> wrote:
> >
> >
> > Something like this should do the trick:
> >
> > 
> > 
> > 
> >
> > -TH
> >
> >
> > --- In flexcoders@yahoogroups.com 
40yahoogroups.com>, "Tom
> > Bray"  wrote:
> > >
> > > Thanks, Tim. That makes sense but there's one limitation I'm 
not sure
> > how
> > > to work around. That master Array of users is going to be 
constantly
> > updated
> > > by the server to show who's currenlty online. Since an Array 
isn't
> > > bindable, how would you propagate changes from that Array to 
the
> > filtered
> > > ArrayCollections that use it as their source?
> > >
> > > -Tom
> > >
> > > On 6/9/06, Tim Hoff TimHoff@ wrote:
> > > >
> > > > Hey Tom,
> > > >
> > > > In response to this question and the BindingUtils and
> > > > ArrayCollection.filter question, I offer this suggestion. In 
the
> > > > ModelLocator maintain a single master Array of all the 
users. Then
> > > > in each instance of your view components, create a new bound
> > > > ArrayCollection (dataProvider), with the master Array as the
> > > > underlying source. Each of the ArrayCollections will have a
> > > > different filterFunction based on the type of view component 
that is
> > > > instantiated. Because the ArrayCollections don't actually 
contain
> > > > any data, just pointers to the underlying Array, I would 
handle the
> > > > ArrayCollections and filterFunctions in viewHelpers. In a 
sense,
> > > > you would be creating separate sub-sets of the master Array 
in each
> > > > instance of your views. If you preferred, you could maintain 
each
> > > > ArrayCollection (Array of ArrayCollections) in the 
ModelLocator as
> > > > well.
> > > >
> > > > I hope that this makes sense,
> > > > Tim Hoff
> > > >
> > > >
> > > > --- In flexcoders@yahoogroups.com 
40yahoogroups.com>,
> >
> > "Tom
> > > > Bray" tombray@ wrote:
> > > > >
> > > > > Say my model has an ArrayCollection of all the users that 
are
> > > > > connected to my Flex app. I then have configurable list 
views that
> > > > > display different subsets of that collection based on 
different
> > > > user
> > > > > properties (gender, age, location, etc.). Multiple views, 
multiple
> > > > > filters, all being fed from the same master 
ArrayCollection of all
> > > > > connected users. I even want the user to be able to 
dynamically
> > > > > create new views with different filters.
> > > > >
> > > > > Unless there's something I'm missing, each view is going 
to need
> > > > its
> > > > > very own ArrayCollection that has its own filter function 
set up.
> > > > I'm
> > > > > picturing a wrapper class that provides addFilter() and
> > > > removeFilter()
> > > > > methods so that the AC's filter function can traverse an 
array of
> > > > > other filters -- kind of a CompoundCommand pattern.
> > > > >
> > > > > Assuming that's part of the correct approach, I want my 
master AC
> > > > to
> > > > > pump changes out to the filtering ACs which pump changes 
out to
> > the
> > > > > views. Is there a way to make the binding mechanism work 
for this?
> > > > > Is there a simpler approach I'm overlooking?
> > > > >
> > > > > Any tips you can send my way would be greatly appreciated.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Tom
> > > > >
> > > >
> > > >
> > > >
> > >
> >
> >  
> >
>


  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and develo

RE: [flexcoders] AJAX to Flex conversion?

2006-06-09 Thread Carson Hager





Unfortunately, the way ThinkCAP works, it won't be that 
easy. The backend and frontend are very tightly coupled and all calls are routed 
throug a controller of sorts that deals with security, page context, etc., 
etc.  The best bet here is to attempt to extract the backend business logic 
and re-expose as pure web services but the business logic is very coupled to the 
ThinkCAP Java framework on the backend as well.
 
 
Carson
   Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com 
  Email:  
[EMAIL PROTECTED] Office:  866-CYNERGY Mobile: 1.703.489.6466 
  
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Tracy 
SprattSent: Friday, June 09, 2006 4:29 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] AJAX to Flex 
conversion?




It seems to me that if 
the AJAX app is architected to have a clean division 
between the business logic tier and the user interface, then only the 
_javascript_/DHTML part would need to be replaced.  The Flex replacement 
would be able to use RPC HTTPService (XML over HTTP) calls to access the 
business logic tier without any modifications at all to that part of the 
app.

I don’t know anything 
about “ThinkCap”.

Tracy





From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan ThatcherSent: Friday, June 09, 2006 6:21 
PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] 
AJAX to Flex conversion?





Let’s say that you have been 
developing an AJAX application 
(using ClearNova’s ThinkCap) and you are displeased with the result.  What 
options might one have to convert that 
AJAX application over to Flex?  
Is there a way to convert an AJAX 
application over to Flex?  What other RIA platforms could be used that 
would allow the AJAX work that has 
been done to not be a total loss?    

My sense is that conversion to Flex 
is a long shot, but I thought I would ask 
anyway.

TIA

Dan  


P.S. sorry if this is a repeat 
post.  I posted this first thing this morning but never saw it appear on 
the list.


Dan ThatcherOnline 
LearningThe American 
Academy of Professional Coders801-238-9893 
(office)801-879-9253 (mobile)



__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] beta3- Datagrid gurus?

2006-06-09 Thread sufibaba
Hi all,

I have a Datagrid with 4 columns. The Dataprovider is bounded to model
locator variable so the rows are being generated on the fly.  I want
to create a distinct radio groupname for each row so that only
Yes/No/either can be selected.  



productYesNo   Either
---
item1 -- radio1 --  radio2 --  radio3
item2 -- radio1 --  radio2 --  radio3
item3 -- radio1 --  radio2 --  radio3
item4 -- radio1 --  radio2 --  radio3
item5 -- radio1 --  radio2 --  radio3


-

  
  




  
   


-  RadioButtonCellRenderer.as ---

package 

{
import mx.controls.RadioButton;
 
public class RadioButtonCellRenderer extends RadioButton
{

  public function RadioButtonCellRenderer():void{
super();

} 
  }
  
  public function setValue():void{

  }
 
}
}







 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] AJAX to Flex conversion?

2006-06-09 Thread Tracy Spratt










It seems to me that if the AJAX app is architected
to have a clean division between the business logic tier and the user
interface, then only the _javascript_/DHTML part would need to be replaced. 
The Flex replacement would be able to use RPC HTTPService (XML over HTTP) calls
to access the business logic tier without any modifications at all to that part
of the app.

 

I don’t know anything about “ThinkCap”.

 

Tracy

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Thatcher
Sent: Friday, June 09, 2006 6:21
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] AJAX to Flex conversion?



 









Let’s
say that you have been developing an AJAX application (using
ClearNova’s ThinkCap) and you are displeased with the result.  What
options might one have to convert that AJAX application over to
Flex?  Is there a way to convert an AJAX application over to
Flex?  What other RIA platforms could be used that would allow the AJAX work
that has been done to not be a total loss?    

 

My sense is
that conversion to Flex is a long shot, but I thought I would ask anyway.

 

TIA

 

Dan  

 

P.S. sorry
if this is a repeat post.  I posted this first thing this morning but
never saw it appear on the list.

 

 

Dan
Thatcher
Online Learning
The American
 Academy
of Professional Coders
801-238-9893 (office)
801-879-9253 (mobile)

 

 








__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Re: SWFLoader.content not populated

2006-06-09 Thread Steve Gilchrist



anyone? It's driving me nuts.On 6/8/06, Steve Gilchrist <[EMAIL PROTECTED]> wrote:
When I create a SWFLoader class in actionscript (see below) the
content property is null. If I use  tag it is set
with the SystemManager object of the loaded swf. Is there something I
need to be doing in actionscript to have content populated? Thanks Steve                



__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread Tim Hoff
Yeah, either way should work.  But, instead of return(p);, try 
return p;

-TH

--- In flexcoders@yahoogroups.com, "drome.dario" <[EMAIL PROTECTED]> 
wrote:
>
> Mmmm... I will test your suggestion but... the documentation 
states 
> that ExternalInterface.call returns (synchronously) the value 
> returned by the javascript function and, moreover, it works in 
that 
> way when FireFox is the browser. I doesn't under MSIEweird.
> 
> Anyway, thanks for your suggestion: I'll post back the results.
> 
> --- In flexcoders@yahoogroups.com, "Tim Hoff"  wrote:
> >
> > To communicate back to the Flex application you have to 
reference 
> it 
> > by its' id (myMXML) in the HTML page.  Something like this:
> > 
> > function f(p)
> > {
> >  alert(p);
> >  document.myMXML.SetVariable(ret,p);
> > }
> > 
> > I haven't tested this, but that's the idea.
> > 
> > -TH
> > 
> > --- In flexcoders@yahoogroups.com, "drome.dario"  
> > wrote:
> > >
> > > Hi people,
> > > I can not achieve to get any return value from javascript 
other 
> > than 
> > > null.
> > > In th HTML container I have a functions like this:
> > > 
> > > function f(p)
> > > {
> > >  alert(p);
> > >  return(p);
> > > }
> > > 
> > > In my flex app I call the browser function in the following 
way:
> > > 
> > > var ret:*;
> > > ret = ExternalInterface.call( "f", "Hello" );
> > > Alert.show( ret.toString() );
> > > 
> > > I get an alert in the browser saying "Hello" and another Alert 
> > from 
> > > flex saying "null".
> > > 
> > > What's wrong?... I think that I should get two alerts shown, 
no?
> > >
> >
>






 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread drome.dario
Mmmm... I will test your suggestion but... the documentation states 
that ExternalInterface.call returns (synchronously) the value 
returned by the javascript function and, moreover, it works in that 
way when FireFox is the browser. I doesn't under MSIEweird.

Anyway, thanks for your suggestion: I'll post back the results.

--- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote:
>
> To communicate back to the Flex application you have to reference 
it 
> by its' id (myMXML) in the HTML page.  Something like this:
> 
> function f(p)
> {
>  alert(p);
>  document.myMXML.SetVariable(ret,p);
> }
> 
> I haven't tested this, but that's the idea.
> 
> -TH
> 
> --- In flexcoders@yahoogroups.com, "drome.dario"  
> wrote:
> >
> > Hi people,
> > I can not achieve to get any return value from javascript other 
> than 
> > null.
> > In th HTML container I have a functions like this:
> > 
> > function f(p)
> > {
> >  alert(p);
> >  return(p);
> > }
> > 
> > In my flex app I call the browser function in the following way:
> > 
> > var ret:*;
> > ret = ExternalInterface.call( "f", "Hello" );
> > Alert.show( ret.toString() );
> > 
> > I get an alert in the browser saying "Hello" and another Alert 
> from 
> > flex saying "null".
> > 
> > What's wrong?... I think that I should get two alerts shown, no?
> >
>







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: How to draw different Flex Controls/Containers at runtime?

2006-06-09 Thread drome.dario
Most of mx controls can be created with AS. The only thing that you 
have to take into account is to add the objects you create to the 
container hierarchy and to set the event listeners accordly with your 
needs

--- In flexcoders@yahoogroups.com, "Jawad Anwar" <[EMAIL PROTECTED]> 
wrote:
>
> Hi Flexcoders,
> I am migrating JSP Front end into Flex and simply it creates 
different 
> html controls at runtime based on my java bean. Now I know one way 
is 
> to use embedded mxml tags in my JSP but I am wondering if there is 
> something better then this.
> Can an Action Script render my Flex controls/containers at runtime?
> For e.g.:
> If 1st object type = "Checkbox" use Flex 
> If 2nd object type= "Text"  use Flex 
> … and so on
> This is a high-traffic site with some 30+ objects on one page and 
> using embedded mxml does not sound feasible to me.
> Any help would be greatly appreciated.
> 
> Kind regards.
> 
> Jawad Anwar
> RIA Developer,
>







 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] AJAX to Flex conversion?

2006-06-09 Thread Dan Thatcher










Let’s say that you have been developing an AJAX application (using
ClearNova’s ThinkCap) and you are displeased with the result.  What
options might one have to convert that AJAX
application over to Flex?  Is there a way to convert an AJAX application over to Flex?  What
other RIA platforms could be used that would allow the AJAX work that has been done to not be a
total loss?    

 

My sense is that conversion to Flex is a long shot, but I
thought I would ask anyway.

 

TIA

 

Dan  

 

P.S. sorry if this is a repeat post.  I posted this first
thing this morning but never saw it appear on the list.

 

 

Dan
Thatcher
Online Learning
The American Academy of Professional Coders
801-238-9893 (office)
801-879-9253 (mobile)

 

 




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] Re: ExternalInterface | How to get called from flash in"xml flavor"?

2006-06-09 Thread drome.dario
Came on guys!... just a suggestion?... even simple?





 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Flex vs. .Net for RIA database apps; new to both

2006-06-09 Thread michaellisten
I'm trying to decide which technology to invest my time into, and will 
be experimenting with both .net and flex. I like the OS independence 
that flex enables on the server side. I'd buy flex builder because I'm 
interested in whichever provides the simplest learning curve, and I'm 
sure on the flex side of things, flex builder would be a major asset.

Most of the applications that I build are database front ends, and are 
not exposed to the public; they're usually used over intranet or 
internet+vpn. CRUD stuff mostly, not image centric or needing the kind 
of graphical wow that one tends to associate with flex/flash. I am not 
that fond of the regular browser based format that we've been using
for a decade. I am looking forward to the RIA age. If using .net I'd 
probably go with winforms and remoting or webservices for the backend.

But most flex example apps are less database oriented and are often 
showy shopping carts. Is flex going to be good for what I'm after?
Most examples have little data entry. I posted here about flex/flash
comboboxes for data entry/selection and didn't get much in the way of
feedback.

I am most interested in the approach that is the most productive;
helps the most with data binding, wysisyg designers, error handling,
and so forth. I'm usually asked to create a lot of solid software in a
minimal timeframe, so my priority here will be to choose software that 
simplifies the design/build cycle.





 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Flex developer position with fun NYC company

2006-06-09 Thread Jim Phelan





Hi 
all,
 
We have an 
opportunity for a Flex developer over here at Stream57. If you're into a 
position that offers great creative opportunities, an unsurpassed work 
environment, and the ability to work on cutting edge collaboration and rich 
media applications with Flex and Flash Media Server, this is the position for 
you. This is full time and located in Manhattan, and we prefer local candidates. 
Good will and inventiveness precede experience - email me your resume and a 
descriptive cover letter: [EMAIL PROTECTED]
 
Best,
 
Jim
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: Flex2 :: \r\n in returned db query :: Tips?

2006-06-09 Thread drome.dario
Have you used a RegExp to locate and replace those character 
secuences by the ones you need?

--- In flexcoders@yahoogroups.com, "Michael Schmalle" 
<[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
> I have had this problem for a long time;
> 
> Is there any technique to get rid of the Windows \r\n other than 
doing a
> split().join() on the text before it is inserted into a TextArea for
> example?
> 
> This is so anoying. I tried condenseWhiteSpace but that didn't work.
> 
> Am I missing something easy?
> 
> Peace, Mike
> 
> -- 
> What goes up, does come down.
>






 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-09 Thread sleekdigital
Saying that you are making a "counter-example" seems like a poor 
excuse for all this off-topic Microsoft bashing.  It seems pretty 
obvious that you have an agenda and using this list to spout 
your "truth" really seems inappropriate to me.  I just joined this 
list and I hope it doesn't deteriorate into this kind of thing.  I 
don't care if you want to bash Microsoft... I'm all for freedom of 
speech. I just don't think this is the right place for it.

I'll go back to lurking now :)

-Steve

--- In flexcoders@yahoogroups.com, Robert Thompson 
<[EMAIL PROTECTED]> wrote:
>
> Valy, I can end this thread in a short statement or a long one.
> 
> SHORT
> Adobe, I believe will play by the rules and they are a reasonable 
biz partner.
> But as Borat might say Microsoft "If she cheat on me, I will Crush 
her!"
> 
> LONG
> Stay with the issue that's been taken off, so we can let this end, 
I responded simply to warn people about things I've leanred in 
nearly 20 years; probably about as long as you've beeen alive 
possibly  the guy who started this thread implied Adobe wasn't a 
reasonable business partner and they are - I was giving a counter-
example of someone proven by law not to be a good business partner: 
Microsoft.
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Viewing HTML

2006-06-09 Thread drome.dario
Glad to be useful.

--- In flexcoders@yahoogroups.com, "Suzy Lawson" <[EMAIL PROTECTED]> 
wrote:
>
> Drome-
>   Thank you so much for your help. I was able to modify your regEx 
to
> make it work for my needs. I just needed to add in a piece for 
return
> characters and form feeds as well. 
> 
> The regex i used was:
>  var pattern:RegExp = /\n|\r|\f/gi
>  var htmlstr : String  = htmlTextString.replace(pattern, "" );
>  var m:String = ExternalInterface.call
("changeDocumentTitle",htmlstr);
> 
> And the code for the js method being:
> 
> 
> function changeDocumentTitle(a) {
>   var generator=window.open('','name','height=400,width=500');
>   generator.document.write(a);
>   generator.document.close();
> return "successful";//this gets assigned to flex 
variable 'm'
> above
> }
> 
> --- In flexcoders@yahoogroups.com, "drome.dario"  
wrote:
> >
> > Just a thing I missed: I think that the effect being experienced 
by 
> > Suzy is a bug in the flex/flash serializer used by 
ExternalInterface.
> > Let's hope that some adobe engineer read this or may exist 
any 
> > effective place where to send a request for bug consideration?
> > 
> > --- In flexcoders@yahoogroups.com, "drome.dario"  
> > wrote:
> > >
> > > Hi,
> > > It is not a problem with whitespace between tags, as Suzy said, 
it 
> > is 
> > > a problem because of the cr/lf in the html code, let me explain:
> > > Supose that we have a string variable named "param" whose value 
> > > is "hello Brian\nHow are you?", then when one uses, i.e., 
> > > ExternalInterface.call("jsFunc", param) flex tell the browser 
to 
> > > evaluate a chunk of javascript code similar to this one:
> > > 
> > > jsFunc("hello Brian
> > > How are you?");
> > > 
> > > that is a totally illegal javascript sentence.
> > > However, if the value of "param" is "hello Brian\\nHow are 
you?", 
> > > then, the javascript code being evaluated would be:
> > > 
> > > jsFunc("hello Brian\nHow are you?");
> > > 
> > > which is good for the javascript interpreter.
> > > 
> > > Thus, the solution is to replace all newline-chars with "\\n" 
> > string:
> > > 
> > > var pattern:RegExp = /\n/gi;
> > > htmlstr = htmlstr.replace(pattern, "\\n" );
> > > ExternalInterface.call("ShowHTML", htmlstr);
> > > 
> > > In that way, the html's original "layout" is not changed and, 
the 
> > > most important: IT WORKS!
> > > 
> > > --- In flexcoders@yahoogroups.com, "Brian Riggs"  
> > > wrote:
> > > >
> > > > One thing you could try is to assign the String to an (e4x) 
XML 
> > > > object, set XML.ignoreWhitespace to true, and then output the 
> > > result 
> > > > using XML.toXMLString().  This should cause whitespace 
between 
> > tags 
> > > > to be stripped out.
> > > > 
> > > > -- Brian
> > > > 
> > > > --- In flexcoders@yahoogroups.com, "Suzy Lawson" 
 
> > > > wrote:
> > > > >
> > > > > Christophe's blog in this case doesn't help. His iFrame 
points 
> > to 
> > > a
> > > > > static HTML page.
> > > > > 
> > > > > I have a String like this:
> > > > > 
> > > > > //whether it be js or Flex...and my string has spaces b/w 
lines 
> > > just
> > > > > like this
> > > > > var htmlString : String = "
> > > > > 
> > > > > testmy 
> > > > > body 
> > > > > ";
> > > > > 
> > > > > there's no way I know of to assign this to a new window or 
Flex 
> > > > object
> > > > > and have it display correctly. If I make the String above 
lal 
> > one
> > > > > line, then it works OK.
> > > > > 
> > > > > --- In flexcoders@yahoogroups.com, "tonyx_788"  
> > wrote:
> > > > > >
> > > > > > hi Suzy i think Phil is talking about coenraets blog,
> > > > > > this is the link   hope it helps
> > > > > > 
> > > > > > http://www.coenraets.com/apps/iframe/index.htm
> > > > > > 
> > > > > > **Saludos**
> > > > > > Tony
> > > > > > 
> > > > > > --- In flexcoders@yahoogroups.com, Phil Marston 
 
> > > > wrote:
> > > > > > >
> > > > > > > Hi Suzy,
> > > > > > > 
> > > > > > > I can't remember which blog I saw it on (one of the 
Adobe 
> > > guys I
> > > > > > think), 
> > > > > > > but I saw an example using an IFrame to load the HTML 
in.  
> > > Then 
> > > > a
> > > > > > custom 
> > > > > > > component in the Flex movie sent messages to Javascript 
so 
> > > the 
> > > > IFrame 
> > > > > > > always appeared in the right place and the right size 
over 
> > > the 
> > > > Flex
> > > > > > page 
> > > > > > > - it worked really nicely and sound like just what you 
> > need - 
> > > > sorry I 
> > > > > > > can't be more help, but perhaps this'll jog the memory 
of 
> > > > someone
> > > > > > who as 
> > > > > > > a memory!
> > > > > > > 
> > > > > > > HTH
> > > > > > > 
> > > > > > > Phil
> > > > > > > 
> > > > > > > Suzy Lawson wrote:
> > > > > > > > Hello Group-
> > > > > > > >   I have an app that receives XML data over the 
socket.
> > > > > Specifically,
> > > > > > > > it is data that is in 2 formats (plain text and HTML).
> > > > > > > >
> > > > > > > > The HTML that gets sent represents the FULL htm

[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff
Changes to the masterArray in the ModelLocator should be 
automatically reflected in the AC if you use either of the binding 
methods I posted.  If not, sorry.  That's all I have.

-TH

--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> The problem is that changes to ModelLocator.getInstance
().masterArray don't
> update the views' dataProviders.  In other words, the 
ArrayCollections that
> use masterArray as their source don't know when new items are 
added to or
> removed from masterArray.  That's why I was thinking that 
masterArray would
> actually be masterArrayCollection and I'd bind each of the view's
> dataProvider ACs to it so they could stay in sync.  I bound the 
master AC to
> the sub ACs using BindingUtils and was surprised to see the filter 
function
> on the sub ACs affect the master AC.  I posted sample code here:
> http://groups.yahoo.com/group/flexcoders/message/39064?l=1
> 
> Thanks again!
> 
> -Tom
> 
> On 6/9/06, Tim Hoff <[EMAIL PROTECTED]> wrote:
> >
> >
> > Something like this should do the trick:
> >
> > 
> > 
> > 
> >
> > -TH
> >
> >
> > --- In flexcoders@yahoogroups.com , "Tom
> > Bray"  wrote:
> > >
> > > Thanks, Tim. That makes sense but there's one limitation I'm 
not sure
> > how
> > > to work around. That master Array of users is going to be 
constantly
> > updated
> > > by the server to show who's currenlty online. Since an Array 
isn't
> > > bindable, how would you propagate changes from that Array to 
the
> > filtered
> > > ArrayCollections that use it as their source?
> > >
> > > -Tom
> > >
> > > On 6/9/06, Tim Hoff TimHoff@ wrote:
> > > >
> > > > Hey Tom,
> > > >
> > > > In response to this question and the BindingUtils and
> > > > ArrayCollection.filter question, I offer this suggestion. In 
the
> > > > ModelLocator maintain a single master Array of all the 
users. Then
> > > > in each instance of your view components, create a new bound
> > > > ArrayCollection (dataProvider), with the master Array as the
> > > > underlying source. Each of the ArrayCollections will have a
> > > > different filterFunction based on the type of view component 
that is
> > > > instantiated. Because the ArrayCollections don't actually 
contain
> > > > any data, just pointers to the underlying Array, I would 
handle the
> > > > ArrayCollections and filterFunctions in viewHelpers. In a 
sense,
> > > > you would be creating separate sub-sets of the master Array 
in each
> > > > instance of your views. If you preferred, you could maintain 
each
> > > > ArrayCollection (Array of ArrayCollections) in the 
ModelLocator as
> > > > well.
> > > >
> > > > I hope that this makes sense,
> > > > Tim Hoff
> > > >
> > > >
> > > > --- In flexcoders@yahoogroups.com ,
> >
> > "Tom
> > > > Bray" tombray@ wrote:
> > > > >
> > > > > Say my model has an ArrayCollection of all the users that 
are
> > > > > connected to my Flex app. I then have configurable list 
views that
> > > > > display different subsets of that collection based on 
different
> > > > user
> > > > > properties (gender, age, location, etc.). Multiple views, 
multiple
> > > > > filters, all being fed from the same master 
ArrayCollection of all
> > > > > connected users. I even want the user to be able to 
dynamically
> > > > > create new views with different filters.
> > > > >
> > > > > Unless there's something I'm missing, each view is going 
to need
> > > > its
> > > > > very own ArrayCollection that has its own filter function 
set up.
> > > > I'm
> > > > > picturing a wrapper class that provides addFilter() and
> > > > removeFilter()
> > > > > methods so that the AC's filter function can traverse an 
array of
> > > > > other filters -- kind of a CompoundCommand pattern.
> > > > >
> > > > > Assuming that's part of the correct approach, I want my 
master AC
> > > > to
> > > > > pump changes out to the filtering ACs which pump changes 
out to
> > the
> > > > > views. Is there a way to make the binding mechanism work 
for this?
> > > > > Is there a simpler approach I'm overlooking?
> > > > >
> > > > > Any tips you can send my way would be greatly appreciated.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Tom
> > > > >
> > > >
> > > >
> > > >
> > >
> >
> >  
> >
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: Question

2006-06-09 Thread Dave Wolf
Just as an interesting side note, JBoss actually uses the Tomcat
servlet container under the covers to handle servlet and JSP
functionality.  

Its worth noting that you dont need a full fledged J2EE container. 
There are servlet based JMS implementations out there as Bob notes. 
They just take some manual munging to get setup.

-- 
Dave Wolf
Cynergy Systems, Inc.
Macromedia Flex Alliance Partner
http://www.cynergysystems.com

Email:  [EMAIL PROTECTED]
Office: 866-CYNERGY

--- In flexcoders@yahoogroups.com, "Bob Tierney" <[EMAIL PROTECTED]> wrote:
>
> Kelly,
> 
> JBOSS is a J2EE container and Flex will run on it. Tomcat on the 
> other hand is NOT a J2EE container. Rather it's a Servlet container. 
> 
> In order for the Flex Data Services to (completely) work , you would 
> need to add some modules to Tomcat. For example, OpenJMS and JOTM 
> could be added to Tomcat to support the complete functionality of FDS
> 
> Regards,
> 
> -bob tierney-
> --- In flexcoders@yahoogroups.com, "Kelly @ Dekayd Media Inc." 
>  wrote:
> >
> > If you need J2EE capabilities then you can use: 
> http://geronimo.apache.org/
> > 
> >  
> > 
> > I think JBoss is J2EE too but I am not sure.
> > 
> >  
> > 
> > Last time I checked (beta 2) FDS is just a .war file and as such 
> can be
> > deployed on Apache Tomcat which is very free.
> > 
> >  
> > 
> >  
> > 
> > I would say stick with whatever language you find most useful if 
> you already
> > have a preference but if you don't have one then consider that FDS 
> itself is
> > written in Java.
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> > --Kelly
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >   _  
> > 
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of Michael Schmalle
> > Sent: Wednesday, June 07, 2006 6:43 PM
> > To: flexcoders@yahoogroups.com
> > Subject: Re: [flexcoders] Question
> > 
> >  
> > 
> > Kelly,
> > 
> > > Java is free.
> > 
> > Am I getting messed up, I thought you needed like jrun or j2ee. 
> Honestly, I
> > did Java 2 years back and I would love to know how I could use it 
> with FDS?
> > 
> > I had got servlets working and things. Do you have any urls that 
> point to
> > what 'free' java would give you using flex. Right now I use php5.
> > 
> > Peace, Mike
> > 
> > On 6/7/06, Kelly @ Dekayd Media Inc.  wrote:
> > 
> > ColdFusion compiles to Java and it doesn't offer all the features 
> of Java.
> > 
> >  
> > 
> > It also costs about $7000 per enterprise license (last time I 
> checked).
> > 
> >  
> > 
> >  
> > 
> > Java is free.
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> > As for any of the other competitors I cannot say.
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >   _  
> > 
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of Brendan Meutzner
> > Sent: Wednesday, June 07, 2006 4:59 PM
> > To: flexcoders@yahoogroups.com
> > Subject: Re: [flexcoders] Question
> > 
> >  
> > 
> > So how about we take this off on a tangent a bit... why would I use 
> Java
> > instead of ColdFusion or vice versa?  The floor is open...  My 
> apologies if
> > this has already been discussed, but I don't remember seeing 
> anything.
> > 
> > 
> > 
> > On 6/7/06, Tracy Spratt  wrote:
> > 
> > Yes.
> > 
> > Tracy
> > 
> >  
> > 
> >   _  
> > 
> > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > Behalf Of nostra72@
> > Sent: Wednesday, June 07, 2006 5:13 PM
> > 
> > 
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Question
> > 
> >  
> > 
> > Does Flex and Java work well together
> > 
> >  
> > 
> > 
> > 
> > 
> > -- 
> > What goes up, does come down.
> >
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tom Bray



The problem is that changes to ModelLocator.getInstance().masterArray don't update the views' dataProviders.  In other words, the ArrayCollections that use masterArray as their source don't know when new items are added to or removed from masterArray.  That's why I was thinking that masterArray would actually be masterArrayCollection and I'd bind each of the view's dataProvider ACs to it so they could stay in sync.  I bound the master AC to the sub ACs using BindingUtils and was surprised to see the filter function on the sub ACs affect the master AC.  I posted sample code here: 
http://groups.yahoo.com/group/flexcoders/message/39064?l=1Thanks again!-TomOn 6/9/06, 
Tim Hoff <[EMAIL PROTECTED]> wrote:









  




Something like this should do the trick:





-TH

--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> Thanks, Tim. That makes sense but there's one limitation I'm not sure
how
> to work around. That master Array of users is going to be constantly
updated
> by the server to show who's currenlty online. Since an Array isn't
> bindable, how would you propagate changes from that Array to the
filtered
> ArrayCollections that use it as their source?
>
> -Tom
>
> On 6/9/06, Tim Hoff [EMAIL PROTECTED] wrote:
> >
> > Hey Tom,
> >
> > In response to this question and the BindingUtils and
> > ArrayCollection.filter question, I offer this suggestion. In the
> > ModelLocator maintain a single master Array of all the users. Then
> > in each instance of your view components, create a new bound
> > ArrayCollection (dataProvider), with the master Array as the
> > underlying source. Each of the ArrayCollections will have a
> > different filterFunction based on the type of view component that is
> > instantiated. Because the ArrayCollections don't actually contain
> > any data, just pointers to the underlying Array, I would handle the
> > ArrayCollections and filterFunctions in viewHelpers. In a sense,
> > you would be creating separate sub-sets of the master Array in each
> > instance of your views. If you preferred, you could maintain each
> > ArrayCollection (Array of ArrayCollections) in the ModelLocator as
> > well.
> >
> > I hope that this makes sense,
> > Tim Hoff
> >
> >
> > --- In flexcoders@yahoogroups.com ,

"Tom
> > Bray" tombray@ wrote:
> > >
> > > Say my model has an ArrayCollection of all the users that are
> > > connected to my Flex app. I then have configurable list views that
> > > display different subsets of that collection based on different
> > user
> > > properties (gender, age, location, etc.). Multiple views, multiple
> > > filters, all being fed from the same master ArrayCollection of all
> > > connected users. I even want the user to be able to dynamically
> > > create new views with different filters.
> > >
> > > Unless there's something I'm missing, each view is going to need
> > its
> > > very own ArrayCollection that has its own filter function set up.
> > I'm
> > > picturing a wrapper class that provides addFilter() and
> > removeFilter()
> > > methods so that the AC's filter function can traverse an array of
> > > other filters -- kind of a CompoundCommand pattern.
> > >
> > > Assuming that's part of the correct approach, I want my master AC
> > to
> > > pump changes out to the filtering ACs which pump changes out to
the
> > > views. Is there a way to make the binding mechanism work for this?
> > > Is there a simpler approach I'm overlooking?
> > >
> > > Any tips you can send my way would be greatly appreciated.
> > >
> > > Thanks,
> > >
> > > Tom
> > >
> >
> >
> >
>


  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] Re: Namespace hell

2006-06-09 Thread Peter Farland





Ben,
 
I'm not an expert on the XML type, nor label functions 
or UI components,  but some things to consider in your 
investigation:
 
1. You can get a list of all of the namespaces from an XML 
instance using:
 
    var namespaces:Array = 
myXML.namespaceDeclarations();var 
ns:Namespace;    for each (ns in 
namespaces)
    {
 // Can 
check through each ns.prefix to find the default NS and get its ns.uri 
property
    if (ns.prefix == 
"")
    
defaultNSURI = ns.uri;
    }
 
2. In 
the methods on the XML type that take an element name to operate on, you don't 
have to pass in a string, you can pass in a QName. So, construct a QName from 
the URI found in the default namespace avoid and pass this to the method on XML 
to perform your search.
 
    var qname:QName = new 
QName(defaultNSURI, "message");    
var messages:XMLList = myXML.child(qname);

 
(Note that using a QName to lookup a property is also valid 
for objects using the square-bracket syntax ... myobj[qname] works just like 
myobj[dynamicPropNameString]... in fact, the public namespace is just a special 
case, most things should theoretically be looked up by QName 
if using other namespaces).
 
 
 
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
ben.clinkinbeardSent: Wednesday, June 07, 2006 5:07 
PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: 
Namespace hell


From what I can gather, default namespaces in XML data simply aren'tvery 
well supported in AS3/Flex 2. Can someone from Adobe chime in toconfirm or 
deny this? Should we simply try to avoid them at all 
costs?Thanks,Ben
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff
If that doesn't work you could try this:





-TH

--- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote:
>
> 
> Something like this should do the trick:
> 
> 
> 
> 
> 
> -TH
> 
> --- In flexcoders@yahoogroups.com, "Tom Bray"  wrote:
> >
> > Thanks, Tim. That makes sense but there's one limitation I'm not 
sure
> how
> > to work around. That master Array of users is going to be 
constantly
> updated
> > by the server to show who's currenlty online. Since an Array 
isn't
> > bindable, how would you propagate changes from that Array to the
> filtered
> > ArrayCollections that use it as their source?
> >
> > -Tom
> >
> > On 6/9/06, Tim Hoff TimHoff@ wrote:
> > >
> > > Hey Tom,
> > >
> > > In response to this question and the BindingUtils and
> > > ArrayCollection.filter question, I offer this suggestion. In 
the
> > > ModelLocator maintain a single master Array of all the users. 
Then
> > > in each instance of your view components, create a new bound
> > > ArrayCollection (dataProvider), with the master Array as the
> > > underlying source. Each of the ArrayCollections will have a
> > > different filterFunction based on the type of view component 
that is
> > > instantiated. Because the ArrayCollections don't actually 
contain
> > > any data, just pointers to the underlying Array, I would 
handle the
> > > ArrayCollections and filterFunctions in viewHelpers. In a 
sense,
> > > you would be creating separate sub-sets of the master Array in 
each
> > > instance of your views. If you preferred, you could maintain 
each
> > > ArrayCollection (Array of ArrayCollections) in the 
ModelLocator as
> > > well.
> > >
> > > I hope that this makes sense,
> > > Tim Hoff
> > >
> > >
> > > --- In flexcoders@yahoogroups.com ,
> "Tom
> > > Bray" tombray@ wrote:
> > > >
> > > > Say my model has an ArrayCollection of all the users that are
> > > > connected to my Flex app. I then have configurable list 
views that
> > > > display different subsets of that collection based on 
different
> > > user
> > > > properties (gender, age, location, etc.). Multiple views, 
multiple
> > > > filters, all being fed from the same master ArrayCollection 
of all
> > > > connected users. I even want the user to be able to 
dynamically
> > > > create new views with different filters.
> > > >
> > > > Unless there's something I'm missing, each view is going to 
need
> > > its
> > > > very own ArrayCollection that has its own filter function 
set up.
> > > I'm
> > > > picturing a wrapper class that provides addFilter() and
> > > removeFilter()
> > > > methods so that the AC's filter function can traverse an 
array of
> > > > other filters -- kind of a CompoundCommand pattern.
> > > >
> > > > Assuming that's part of the correct approach, I want my 
master AC
> > > to
> > > > pump changes out to the filtering ACs which pump changes out 
to
> the
> > > > views. Is there a way to make the binding mechanism work for 
this?
> > > > Is there a simpler approach I'm overlooking?
> > > >
> > > > Any tips you can send my way would be greatly appreciated.
> > > >
> > > > Thanks,
> > > >
> > > > Tom
> > > >
> > >
> > >
> > >
> >
>






 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Re: Namespace hell

2006-06-09 Thread Peter Farland





XML namespaceDeclarations does return the default namespace 
for me, but perhaps you have to get this information from the root XML 
"node"?


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Ben 
ClinkinbeardSent: Wednesday, June 07, 2006 11:43 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Namespace 
hell


Nope, because there is no way to even address the default namespace. Sorry, I 
thought I had mentioned that already but that was in a different thread. 
namespaceDeclarations() does not include default namespaces and 
namespaceDeclarations().length returns 0 when all you have is a default 
namespace. If you can manage to figure out a way to delete a default namespace I 
would be mighty grateful. Thanks,Ben
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff

Something like this should do the trick:





-TH

--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> Thanks, Tim. That makes sense but there's one limitation I'm not sure
how
> to work around. That master Array of users is going to be constantly
updated
> by the server to show who's currenlty online. Since an Array isn't
> bindable, how would you propagate changes from that Array to the
filtered
> ArrayCollections that use it as their source?
>
> -Tom
>
> On 6/9/06, Tim Hoff [EMAIL PROTECTED] wrote:
> >
> > Hey Tom,
> >
> > In response to this question and the BindingUtils and
> > ArrayCollection.filter question, I offer this suggestion. In the
> > ModelLocator maintain a single master Array of all the users. Then
> > in each instance of your view components, create a new bound
> > ArrayCollection (dataProvider), with the master Array as the
> > underlying source. Each of the ArrayCollections will have a
> > different filterFunction based on the type of view component that is
> > instantiated. Because the ArrayCollections don't actually contain
> > any data, just pointers to the underlying Array, I would handle the
> > ArrayCollections and filterFunctions in viewHelpers. In a sense,
> > you would be creating separate sub-sets of the master Array in each
> > instance of your views. If you preferred, you could maintain each
> > ArrayCollection (Array of ArrayCollections) in the ModelLocator as
> > well.
> >
> > I hope that this makes sense,
> > Tim Hoff
> >
> >
> > --- In flexcoders@yahoogroups.com ,
"Tom
> > Bray" tombray@ wrote:
> > >
> > > Say my model has an ArrayCollection of all the users that are
> > > connected to my Flex app. I then have configurable list views that
> > > display different subsets of that collection based on different
> > user
> > > properties (gender, age, location, etc.). Multiple views, multiple
> > > filters, all being fed from the same master ArrayCollection of all
> > > connected users. I even want the user to be able to dynamically
> > > create new views with different filters.
> > >
> > > Unless there's something I'm missing, each view is going to need
> > its
> > > very own ArrayCollection that has its own filter function set up.
> > I'm
> > > picturing a wrapper class that provides addFilter() and
> > removeFilter()
> > > methods so that the AC's filter function can traverse an array of
> > > other filters -- kind of a CompoundCommand pattern.
> > >
> > > Assuming that's part of the correct approach, I want my master AC
> > to
> > > pump changes out to the filtering ACs which pump changes out to
the
> > > views. Is there a way to make the binding mechanism work for this?
> > > Is there a simpler approach I'm overlooking?
> > >
> > > Any tips you can send my way would be greatly appreciated.
> > >
> > > Thanks,
> > >
> > > Tom
> > >
> >
> >
> >
>







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tom Bray



Thanks, Tim.  That makes sense but there's one limitation I'm not sure how to work around. That master Array of users is going to be constantly updated by the server to show who's currenlty online.  Since an Array isn't bindable, how would you propagate changes from that Array to the filtered ArrayCollections that use it as their source?
-TomOn 6/9/06, Tim Hoff <[EMAIL PROTECTED]> wrote:









  



Hey Tom,

In response to this question and the BindingUtils and 
ArrayCollection.filter question, I offer this suggestion.  In the 
ModelLocator maintain a single master Array of all the users.  Then 
in each instance of your view components, create a new bound 
ArrayCollection (dataProvider), with the master Array as the 
underlying source.  Each of the ArrayCollections will have a 
different filterFunction based on the type of view component that is 
instantiated.  Because the ArrayCollections don't actually contain 
any data, just pointers to the underlying Array, I would handle the 
ArrayCollections and filterFunctions in viewHelpers.  In a sense, 
you would be creating separate sub-sets of the master Array in each 
instance of your views.  If you preferred, you could maintain each 
ArrayCollection (Array of ArrayCollections) in the ModelLocator as 
well.

I hope that this makes sense,
Tim Hoff

--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> Say my model has an ArrayCollection of all the users that are
> connected to my Flex app.  I then have configurable list views that
> display different subsets of that collection based on different 
user
> properties (gender, age, location, etc.).  Multiple views, multiple
> filters, all being fed from the same master ArrayCollection of all
> connected users.  I even want the user to be able to dynamically
> create new views with different filters.
> 
> Unless there's something I'm missing, each view is going to need 
its
> very own ArrayCollection that has its own filter function set up.  
I'm
> picturing a wrapper class that provides addFilter() and 
removeFilter()
> methods so that the AC's filter function can traverse an array of
> other filters -- kind of a CompoundCommand pattern.
> 
> Assuming that's part of the correct approach, I want my master AC 
to
> pump changes out to the filtering ACs which pump changes out to the
> views.  Is there a way to make the binding mechanism work for this?
> Is there a simpler approach I'm overlooking?
> 
> Any tips you can send my way would be greatly appreciated.
> 
> Thanks,
> 
> Tom
>


  















__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: Question

2006-06-09 Thread Bob Tierney
Kelly,

JBOSS is a J2EE container and Flex will run on it. Tomcat on the 
other hand is NOT a J2EE container. Rather it's a Servlet container. 

In order for the Flex Data Services to (completely) work , you would 
need to add some modules to Tomcat. For example, OpenJMS and JOTM 
could be added to Tomcat to support the complete functionality of FDS

Regards,

-bob tierney-
--- In flexcoders@yahoogroups.com, "Kelly @ Dekayd Media Inc." 
<[EMAIL PROTECTED]> wrote:
>
> If you need J2EE capabilities then you can use: 
http://geronimo.apache.org/
> 
>  
> 
> I think JBoss is J2EE too but I am not sure.
> 
>  
> 
> Last time I checked (beta 2) FDS is just a .war file and as such 
can be
> deployed on Apache Tomcat which is very free.
> 
>  
> 
>  
> 
> I would say stick with whatever language you find most useful if 
you already
> have a preference but if you don't have one then consider that FDS 
itself is
> written in Java.
> 
>  
> 
>  
> 
>  
> 
> --Kelly
> 
>  
> 
>  
> 
>  
> 
>  
> 
>  
> 
>  
> 
>   _  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Michael Schmalle
> Sent: Wednesday, June 07, 2006 6:43 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Question
> 
>  
> 
> Kelly,
> 
> > Java is free.
> 
> Am I getting messed up, I thought you needed like jrun or j2ee. 
Honestly, I
> did Java 2 years back and I would love to know how I could use it 
with FDS?
> 
> I had got servlets working and things. Do you have any urls that 
point to
> what 'free' java would give you using flex. Right now I use php5.
> 
> Peace, Mike
> 
> On 6/7/06, Kelly @ Dekayd Media Inc. <[EMAIL PROTECTED]> wrote:
> 
> ColdFusion compiles to Java and it doesn't offer all the features 
of Java.
> 
>  
> 
> It also costs about $7000 per enterprise license (last time I 
checked).
> 
>  
> 
>  
> 
> Java is free.
> 
>  
> 
>  
> 
>  
> 
> As for any of the other competitors I cannot say.
> 
>  
> 
>  
> 
>  
> 
>  
> 
>   _  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Brendan Meutzner
> Sent: Wednesday, June 07, 2006 4:59 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Question
> 
>  
> 
> So how about we take this off on a tangent a bit... why would I use 
Java
> instead of ColdFusion or vice versa?  The floor is open...  My 
apologies if
> this has already been discussed, but I don't remember seeing 
anything.
> 
> 
> 
> On 6/7/06, Tracy Spratt <[EMAIL PROTECTED]> wrote:
> 
> Yes.
> 
> Tracy
> 
>  
> 
>   _  
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of [EMAIL PROTECTED]
> Sent: Wednesday, June 07, 2006 5:13 PM
> 
> 
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Question
> 
>  
> 
> Does Flex and Java work well together
> 
>  
> 
> 
> 
> 
> -- 
> What goes up, does come down.
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] Migration: What is the F2 equivalent of "TreeNode"

2006-06-09 Thread Oscar . Cortes
Hi Tracy,

   The Tree component has now a dataDescriptor which you can implement with
your own methods if needed.  For example:




--
MyCustomTreeDataDescriptor .as
package
{
import mx.collections.ICollectionView;
import mx.collections.IViewCursor;

import mx.controls.treeClasses.*;

public class MyCustomTreeDataDescriptor implements ITreeDataDescriptor
{
  // The isBranch method simply returns true if the node is an
// Object with a children field.
// It does not support empty branches, but does support null children
// fields.

public function isBranch(node:Object, model:Object=null):Boolean
{
try
{
if (node is Object)
{
if (node.children != null)
{
return true;
}
}
}
catch (e:Error)
{
trace("[Descriptor] exception checking for isBranch");
}
return false;
}
}


  There is an example in the livedocs for F2B2 that needs minor changes to
have it working in B3




|-+->
| | |
| |  "Tracy Spratt" |
| |  <[EMAIL PROTECTED]>|
| |  Sent by:   |
| |  flexcoders@yahoogroups.com |
| |  06/09/2006 04:11 PM|
| |  Please respond to  |
| |  flexcoders |
| | |
|-+->
  
>-|
  | 
|
  |  To:
|
  |  cc:
|
  |  Subject:  [flexcoders] Migration: What is the F2 equivalent of 
"TreeNode"  |
  
>-|




One of my apps uses the 1.5 TreeNode class and the treeDataProvider methods
to build big  complex treeDataProviders.


Is this gone completely in F2?  Is there any legacy support?


Is long term migration goig to require moving to an e4x tree? Any other
suggestions?


Tracy






---
This e-mail message (including attachments, if any) is intended for the use
of the individual or entity to which it is addressed and may contain
information that is privileged, proprietary , confidential and exempt from
disclosure.  If you are not the intended recipient, you are notified that
any dissemination, distribution or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please notify the sender and erase this e-mail message immediately.
---



 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: finally!!

2006-06-09 Thread ben.clinkinbeard
The 'Expand Messages' link is my other favorite addition. Finally, you
can view a whole thread on one page!

Ben






 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: Viewing HTML

2006-06-09 Thread Suzy Lawson
Drome-
  Thank you so much for your help. I was able to modify your regEx to
make it work for my needs. I just needed to add in a piece for return
characters and form feeds as well. 

The regex i used was:
 var pattern:RegExp = /\n|\r|\f/gi
 var htmlstr : String  = htmlTextString.replace(pattern, "" );
 var m:String = ExternalInterface.call("changeDocumentTitle",htmlstr);

And the code for the js method being:


function changeDocumentTitle(a) {
var generator=window.open('','name','height=400,width=500');
generator.document.write(a);
generator.document.close();
return "successful";//this gets assigned to flex variable 'm'
above
}

--- In flexcoders@yahoogroups.com, "drome.dario" <[EMAIL PROTECTED]> wrote:
>
> Just a thing I missed: I think that the effect being experienced by 
> Suzy is a bug in the flex/flash serializer used by ExternalInterface.
> Let's hope that some adobe engineer read this or may exist any 
> effective place where to send a request for bug consideration?
> 
> --- In flexcoders@yahoogroups.com, "drome.dario"  
> wrote:
> >
> > Hi,
> > It is not a problem with whitespace between tags, as Suzy said, it 
> is 
> > a problem because of the cr/lf in the html code, let me explain:
> > Supose that we have a string variable named "param" whose value 
> > is "hello Brian\nHow are you?", then when one uses, i.e., 
> > ExternalInterface.call("jsFunc", param) flex tell the browser to 
> > evaluate a chunk of javascript code similar to this one:
> > 
> > jsFunc("hello Brian
> > How are you?");
> > 
> > that is a totally illegal javascript sentence.
> > However, if the value of "param" is "hello Brian\\nHow are you?", 
> > then, the javascript code being evaluated would be:
> > 
> > jsFunc("hello Brian\nHow are you?");
> > 
> > which is good for the javascript interpreter.
> > 
> > Thus, the solution is to replace all newline-chars with "\\n" 
> string:
> > 
> > var pattern:RegExp = /\n/gi;
> > htmlstr = htmlstr.replace(pattern, "\\n" );
> > ExternalInterface.call("ShowHTML", htmlstr);
> > 
> > In that way, the html's original "layout" is not changed and, the 
> > most important: IT WORKS!
> > 
> > --- In flexcoders@yahoogroups.com, "Brian Riggs"  
> > wrote:
> > >
> > > One thing you could try is to assign the String to an (e4x) XML 
> > > object, set XML.ignoreWhitespace to true, and then output the 
> > result 
> > > using XML.toXMLString().  This should cause whitespace between 
> tags 
> > > to be stripped out.
> > > 
> > > -- Brian
> > > 
> > > --- In flexcoders@yahoogroups.com, "Suzy Lawson"  
> > > wrote:
> > > >
> > > > Christophe's blog in this case doesn't help. His iFrame points 
> to 
> > a
> > > > static HTML page.
> > > > 
> > > > I have a String like this:
> > > > 
> > > > //whether it be js or Flex...and my string has spaces b/w lines 
> > just
> > > > like this
> > > > var htmlString : String = "
> > > > 
> > > > testmy 
> > > > body 
> > > > ";
> > > > 
> > > > there's no way I know of to assign this to a new window or Flex 
> > > object
> > > > and have it display correctly. If I make the String above lal 
> one
> > > > line, then it works OK.
> > > > 
> > > > --- In flexcoders@yahoogroups.com, "tonyx_788"  
> wrote:
> > > > >
> > > > > hi Suzy i think Phil is talking about coenraets blog,
> > > > > this is the link   hope it helps
> > > > > 
> > > > > http://www.coenraets.com/apps/iframe/index.htm
> > > > > 
> > > > > **Saludos**
> > > > > Tony
> > > > > 
> > > > > --- In flexcoders@yahoogroups.com, Phil Marston  
> > > wrote:
> > > > > >
> > > > > > Hi Suzy,
> > > > > > 
> > > > > > I can't remember which blog I saw it on (one of the Adobe 
> > guys I
> > > > > think), 
> > > > > > but I saw an example using an IFrame to load the HTML in.  
> > Then 
> > > a
> > > > > custom 
> > > > > > component in the Flex movie sent messages to Javascript so 
> > the 
> > > IFrame 
> > > > > > always appeared in the right place and the right size over 
> > the 
> > > Flex
> > > > > page 
> > > > > > - it worked really nicely and sound like just what you 
> need - 
> > > sorry I 
> > > > > > can't be more help, but perhaps this'll jog the memory of 
> > > someone
> > > > > who as 
> > > > > > a memory!
> > > > > > 
> > > > > > HTH
> > > > > > 
> > > > > > Phil
> > > > > > 
> > > > > > Suzy Lawson wrote:
> > > > > > > Hello Group-
> > > > > > >   I have an app that receives XML data over the socket.
> > > > Specifically,
> > > > > > > it is data that is in 2 formats (plain text and HTML).
> > > > > > >
> > > > > > > The HTML that gets sent represents the FULL html code 
> (i.e. 
> > > the
> > > > > > > top-level 'html', 'meta', 'head', 'style', 'div', 'body' 
> > tags
> > > > etc..).
> > > > > > >
> > > > > > > Sometimes the tags have namespaces and even 'class' 
> > attributes
> > > > > > > assigned to them which relate to styles defined w/i the 
> > > 

[flexcoders] Migration: What is the F2 equivalent of "TreeNode"

2006-06-09 Thread Tracy Spratt
Title: Migration: What is the F2 equivalent of "TreeNode"








One of my apps uses the 1.5 TreeNode class and the treeDataProvider methods to build big  complex treeDataProviders.

Is this gone completely in F2?  Is there any legacy support?

Is long term migration goig to require moving to an e4x tree? Any other suggestions?

Tracy


__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread Tim Hoff
To communicate back to the Flex application you have to reference it 
by its' id (myMXML) in the HTML page.  Something like this:

function f(p)
{
 alert(p);
 document.myMXML.SetVariable(ret,p);
}

I haven't tested this, but that's the idea.

-TH

--- In flexcoders@yahoogroups.com, "drome.dario" <[EMAIL PROTECTED]> 
wrote:
>
> Hi people,
> I can not achieve to get any return value from javascript other 
than 
> null.
> In th HTML container I have a functions like this:
> 
> function f(p)
> {
>  alert(p);
>  return(p);
> }
> 
> In my flex app I call the browser function in the following way:
> 
> var ret:*;
> ret = ExternalInterface.call( "f", "Hello" );
> Alert.show( ret.toString() );
> 
> I get an alert in the browser saying "Hello" and another Alert 
from 
> flex saying "null".
> 
> What's wrong?... I think that I should get two alerts shown, no?
>






 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Is this a bug?

2006-06-09 Thread Tracy Spratt










I believe it is required.  From the
Migration doc:

“It is important to understand that you should import
classes with an import statement rather than use the full classname in your
code.”

Tracy

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle
Sent: Friday, June 09, 2006 3:24
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is this a
bug?



 







Why does this...

package org.mycomp.iaclean.vo {
public class LoginVO implements org.nevis.cairngorm.ValueObject {
public var uid : String;
public var password : String;
}
}

Return an "Interface ValueObject was not found" error, but if I
"import" 
first like this...

package org.mycomp.iaclean.vo {
import org.nevis.cairngorm.ValueObject;
public class LoginVO implements ValueObject {
public var uid : String;
public var password : String;
}
}

It works fine?

Maybe I'm just used to Java, but shouldn't you be able to specify the 
classpath after "implements" without using "import" or is
it a requirement 
in AS 3 that you first "import" packages prior to referencing them?

I'm usually in the habit of using just the classpath unless I have to 
specify it more than once, then I import it. I also specify the full path 
in case there's ever two class names that are the same and I need to 
differentiate. I guess I just need to know where and when I can use the 
path, and in what cases I must "import" first.

Thanks,
Darren






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Re: Is this a bug?

2006-06-09 Thread ben.clinkinbeard
Yep, in AS3 everything must be imported no matter what. See #5 here:
http://labs.adobe.com/wiki/index.php/ActionScript_3:Learning_Tips

Ben






 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] finally!!

2006-06-09 Thread Clint Modien










Improved search!!! Yahoo!

 

http://groups.yahoo.com/local/news.html

 

 

 


 
  
  Clint Modien
  http://esria.com
  p. 1.877.TRY.ESRIA
  ext 706
  c.
  1.408.489.0750
  f.
  1.877.828.4436
  [EMAIL PROTECTED]
  
  
  
  
 


 




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] Re: stupid question, CSS and XML

2006-06-09 Thread Antonio Silva



could you post an example i'm using Flex 2 B1 __Correo Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/ 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff
Hey Tom,

In response to this question and the BindingUtils and 
ArrayCollection.filter question, I offer this suggestion.  In the 
ModelLocator maintain a single master Array of all the users.  Then 
in each instance of your view components, create a new bound 
ArrayCollection (dataProvider), with the master Array as the 
underlying source.  Each of the ArrayCollections will have a 
different filterFunction based on the type of view component that is 
instantiated.  Because the ArrayCollections don't actually contain 
any data, just pointers to the underlying Array, I would handle the 
ArrayCollections and filterFunctions in viewHelpers.  In a sense, 
you would be creating separate sub-sets of the master Array in each 
instance of your views.  If you preferred, you could maintain each 
ArrayCollection (Array of ArrayCollections) in the ModelLocator as 
well.

I hope that this makes sense,
Tim Hoff


--- In flexcoders@yahoogroups.com, "Tom Bray" <[EMAIL PROTECTED]> wrote:
>
> Say my model has an ArrayCollection of all the users that are
> connected to my Flex app.  I then have configurable list views that
> display different subsets of that collection based on different 
user
> properties (gender, age, location, etc.).  Multiple views, multiple
> filters, all being fed from the same master ArrayCollection of all
> connected users.  I even want the user to be able to dynamically
> create new views with different filters.
> 
> Unless there's something I'm missing, each view is going to need 
its
> very own ArrayCollection that has its own filter function set up.  
I'm
> picturing a wrapper class that provides addFilter() and 
removeFilter()
> methods so that the AC's filter function can traverse an array of
> other filters -- kind of a CompoundCommand pattern.
> 
> Assuming that's part of the correct approach, I want my master AC 
to
> pump changes out to the filtering ACs which pump changes out to the
> views.  Is there a way to make the binding mechanism work for this?
> Is there a simpler approach I'm overlooking?
> 
> Any tips you can send my way would be greatly appreciated.
> 
> Thanks,
> 
> Tom
>







 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Event when Data is Loaded ?

2006-06-09 Thread Tim Hoff
Hi Jean-Luc,

I'm handling a similar situation in the onResult function of the 
command that gets the data.  In the function, I'm casting the 
lastResult from the RPC call to the VO in the ModelLocator and then 
changing the view's state to display the data grid.  This way the 
grid isn't displayed until all of the data has been returned and  
populated through binding.

-TH


--- In flexcoders@yahoogroups.com, "Jean-Luc ESSER" <[EMAIL PROTECTED]> wrote:
>
> I'm not loading data via URLLoader. Maybe you got me wrong. Sorry 
if i wasn't clear.
> Whichever data is sent to my DataGrid's dataProvider, i want to 
handle an event after the datagrid has loaded all this data.
> In my specific case, my dataProvider is binded to a valueObject in 
the ModelLocator (cairngorm).
> On creationComplete, my DataGrid dispatches an event which calls a 
command to populate my ValueObject.
> I want my DataGrid to become visible once all data has been 
loaded, and once all its itemRenderers have been populated.
> 
> Best,
> JL
> 
> 
>   - Original Message - 
>   From: Jim Robson 
>   To: flexcoders@yahoogroups.com 
>   Sent: Friday, June 09, 2006 1:32 PM
>   Subject: RE: [SPAM] [flexcoders] Event when Data is Loaded ?
> 
> 
> 
>   Jean-Luc,
> 
> 
> 
>   How about if you initialize the DataGrid's visible property to 
false until the data is loaded, and write a handler for the complete 
event of the URLLoader class that sets the DataGrid's visible 
property to true when all the data is loaded? Would that work? Docs 
on the complete event:
> 
> 
> 
>   
http://livedocs.macromedia.com/labs/1/flex/langref/flash/net/URLLoade
r.html#event:complete
> 
> 
> 
>   Jim
> 
> 
> 
> 
> ---
---
> 
>   From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Jean-Luc ESSER
>   Sent: Friday, June 09, 2006 6:29 AM
>   To: flexcoders@yahoogroups.com
>   Subject: [SPAM] [flexcoders] Event when Data is Loaded ?
> 
> 
> 
>   Hi there,
> 
> 
> 
>   I'm trying to show a component on stage only when its 
dataProvider has finished populating the component.
> 
>   Let's take for exemple a datagrid with an itemRenderer. How 
would i set my datagrid property to visible only when all data from 
its dataProvider has been loaded and its itemRenderers have been 
layed out ?
> 
>   None of the events avalaible are made for that. Render Event 
would be the closest, but it's not made for that.
> 
> 
> 
>   Any ideas ?
> 
> 
> 
>   Best,
> 
>   Jean-Luc.
>






 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





RE: [flexcoders] Flex and e-forms

2006-06-09 Thread David Mendels





Hi Jonathan,
 
I run both LiveCycle and Flex at Adobe.  We are 
working on bringing them together in a few interesting ways.  It might be 
good to have you talk offlist with some folks herewe might not have an 
answer for you today, but it would help inform us for the future and make sure 
we get the product right.
 
Ping me offlist if interested,
 
David

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan 
  BezuidenhoutSent: Friday, June 09, 2006 12:22 PMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Flex and 
  e-forms
  Hi everyone,I know this question is a bit nebulous - but 
  not as bad as how long is a piece of string.Has anyone had any 
  experience of integrating e-forms with Flex?  In our case, we want our 
  users to be able to create their own forms, fill them in, and display that 
  info back to them - and also be able to extract some of that info.  Oh 
  yes, and also seamlessly integrate that with our Flex app. For 
  example, Adobe LifeCycle is one of these products - it uses 
  HTML/PDF:http://www.adobe.com/products/livecycle/Any 
  ideas/suggestions for other approaches? 
  ThanksJonathan 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Is this a bug?

2006-06-09 Thread Darren Houle
Why does this...

package org.mycomp.iaclean.vo {
 public class LoginVO implements org.nevis.cairngorm.ValueObject {
  public var uid : String;
  public var password : String;
  }
 }

Return an "Interface ValueObject was not found" error, but if I "import" 
first like this...

package org.mycomp.iaclean.vo {
 import org.nevis.cairngorm.ValueObject;
 public class LoginVO implements ValueObject {
  public var uid : String;
  public var password : String;
  }
 }

It works fine?

Maybe I'm just used to Java, but shouldn't you be able to specify the 
classpath after "implements" without using "import" or is it a requirement 
in AS 3 that you first "import" packages prior to referencing them?

I'm usually in the habit of using just the classpath unless I have to 
specify it more than once, then I import it.  I also specify the full path 
in case there's ever two class names that are the same and I need to 
differentiate.  I guess I just need to know where and when I can use the 
path, and in what cases I must "import" first.

Thanks,
Darren




 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





RE: [flexcoders] flex2b3 - flexbuilder codegen errors

2006-06-09 Thread Tracy Spratt










How do you know what to comment out?  When
I get the cdoegen error, no file is identified.

 

Tracy

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972
Sent: Friday, June 09, 2006 10:31
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] flex2b3 -
flexbuilder codegen errors



 







Hi again
I thought i might mention this as well (as i've seen it recently).

Sometimes when i compile my flex app, i get a codegen error. i dont 
think there is a problem because when i comment out the 
code ..build...then uncomment and re-build the problem goes away.






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] [OT] astroturf (was: Adobe as biz partner)

2006-06-09 Thread John Dowdell
Robert Thompson wrote:
> By the way, you may want to make sure he doesn't have an alias named "Steve 
> Barkto" (Google "Steve Barkto Incident" :-)

Whoa. I didn't know about that one, although I had "met" Rick about that 
time on CompuServe, and I still read his weblog today.

http://lists.essential.org/1998/am-info/msg01529.html
http://www.pjprimer.com/jihad.html
http://ricksegal.typepad.com/
http://ricksegal.typepad.com/pmv/2005/10/macromedia_corp.html

I'm astonished. Thanks for the link.

jd





 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: stupid question, CSS and XML

2006-06-09 Thread jpwarmer
I believe the error is because of the accent...you should use

[flexcoders] Binding to Datagrid.columns

2006-06-09 Thread Brendan Meutzner
Hi All,

Before I dive in, I'd like to make not that this thread is sort of a
continuation on:

http://groups.yahoo.com/group/flexcoders/message/33238?l=1

I'm looking at binding some container widths to the widths of my
individual DataGrid columns.  I'm putting a drop down box above each
datagrid column which when changed, changes the content for that
column.  Hopefully you get the picture.

Anyway, I've come up against some difficulties in making the
containers that house my comboboxes the same width as the datagrid
column they represent.  I've tried the following:

1) Tried setting the width property on my container to
width="{myGrid.columns[X].width}" and of course I get the usual
warning that "Data binding will not be able to detect changes when
using square bracket operator.  For Array, please use
ArrayCollection.getItemAt() instead."  Fair enough... gues that won't
work.

2) Tried casting wrapping myGrid.columns in an ArrayCollection like so:
width="{DataGridColumn(ArrayCollection(grid.columns).getItemAt(1)).width}"
and I end up with a run-time error stating: "Type Coercion failed:
cannot convert [EMAIL PROTECTED] to mx.collections.ArrayCollection."  So
obviously ArrayCollection doesn't like the DataGridColumns that make
up my array.

So I've written a function to run on the columnStretch/resize event
for my datagrid which manually updates the widths of my containers
which house my comboboxes.  BUT... I'd rather get the binding to
work... any suggestions?

Thanks in advance,

Brendan





 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread Stacey Mulcahy










I think you need to look at
IDropinItemRenderer or something like that…

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jpwarmer
Sent: Friday, June 09, 2006 1:25
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
ItemRenderer and Events



 







--- In [EMAIL PROTECTED]ups.com,
"Jim Robson" ...> wrote:
>
I already try that way.the problem is that I can't catch the event
that the renderer dispatch...I don't want that the renderer chatch the
event.The DataGrid must catch it, so i can do something with it...

"{valuesArray}"
resize="true" 
width="100%" height="100%" visible="false"
sortableColumns="true">



itemRenderer="ImageCellRenderer"
textAlign="center" width="40"
dataField="id" />
.

The general idea is that when click on the image (and just on the
image, not in the row...i don't care about the selected item at the
moment) an event is dispatched so details over the element are showed
on a diferent panel, the datagrid shows a very small set of data, the
remain information must be obtained by calling a service.

PD:Sorry about my english, it is obvious that is not my native language ;)

> Can you just use the buttonMode and click attributes?
> 
> 
> 
> true"
> click="imageItemEventHandler():">
> 
> 
> 
> _ 
> 
> From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of jpwarmer
> Sent: Friday, June 09, 2006 11:01 AM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] ItemRenderer and Events
> 
> 
> 
> Hi, 
> 
> I got a DataGrid with an ImageItemRenderer (that`s a custom component
> that shows an image on the cell). I want to dispatch an event when
> users click on the image. 
> 
> How can I do that???
> 
> TIA,
> 
> JP
>






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Camera object

2006-06-09 Thread Andrew Trice










Anybody have any ideas on this, or know of
any documentation?  The API doesn’t say anything about it really.

 

Thanks,

Andy

 



_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andrew Trice
Sent: Friday, June 09, 2006 11:17
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Camera
object



 









Hi Everyone,

 

Does anyone
the specifics of what defines a “camera” to the Camera object?
 Webcams work great, but what if I have other devices that stream video
content?  Is there a specification anywhere that states the
interface/criteria that the device must adhere to in order to be detected by
the flash player?  Currently, I only have a webcam connected to my machine
and I am wondering what else I can connect.  

 

Will a
camcorder work?  

Will a video
capture/tv decoder card work?

 

In the
windows device manager, I see my webcam listed in the “Imaging
devices” category… Does any hardware that is detected by the OS as
an “Imaging device” work within the flash player?

 

All feedback
appreciated!

 

Thanks,

Andy

 

_

Andrew Trice

Cynergy
Systems, Inc.

http://www.cynergysystems.com

 

Email: [EMAIL PROTECTED]

Office:
866-CYNERGY 

 

 








__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] stupid question, CSS and XML

2006-06-09 Thread tonyx_788



Hi,anyone knows how i can make a specific text (in a textarea) boldhere is part of theXML*   353 Libro de Edmundo Batres Ledón, 353Roque Ballinas Ballinas, 353Francisco Fonz Chan, consta de 75 pp. La edición fue de 1,000 ejemplares.and the***CSSB    {font-family: Arial;font-size:16.5;font-weight:bold}iwant it to look like this:*353 Libro de Edmundo Batres Ledón, 353 Roque Ballinas Ballinas,353 Francisco Fonz Chan, consta de 75 pp. *main.mxml.                     id="areadetexto" text="{datagrid.selectedItem.desc}" editable="false"                    wordWrap="true" backgroundImage="FONDOS/fondo.gif"                    textAlign="justify" fontStyle="main.css">                        when i compileError: code:Client.CouldNotDecode string:'Error #1096: XML parser failure: Unterminated element' detail:'null'    at mx.rpc.http::HTTPService/http://www.macromedia.com/2005/flex/mx/internal::processResult()    at mx.rpc::AbstractInvoker/http://www.macromedia.com/2005/flex/mx/internal::resultHandler()    at flash.events::EventDispatcher/dispatchEvent()    at mx.rpc::Producer/acknowledge()    at C:\dev\enterprise_beta1\frameworks\libs\framework.swc(mx/validators/Validator)$132::DirectHTTPMessageResponder/completeHandler()    at flash.events::EventDispatcher/dispatchEvent()    at flash.net::URLLoader/flash.net:URLLoader::onComplete()

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] BindingUtils and ArrayCollection.filter questions

2006-06-09 Thread Tom Bray
If you run the sample code below and click the "Update Filter" button,
both lists get filtered but I only want the one on the right to be
filtered.  I have two ArrayCollections, one bound to the other via
BindingUtils and I didn't expect that filtering the target AC would
also filter the source AC.  In other words, I assumed the notification
of change events was a one-way street from source to target.  How
would you approach this problem?


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














  




 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Is it posible to bind this xml to textarea?

2006-06-09 Thread tonyx_788
is it posible to bind this kind of xml to a FLEX Textarea?



A orillas de una laguna.


Libro de Edmundo Batres Ledón, Roque
Ballinas Ballinas, Francisco Fonz Chan, José Francisco Fonz Prott,
Pedro Hernández Franco, Víctor Hernández Hernández, Edgar Hidalgo
Bocanegra, Ramón León Flores, Leticia Ulín Rodríguez y Carlos López
Castro, editado por la ujat
a través dacs;
consta de 75 pp. La edición fue de 1,000 ejemplares.








 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





RE: [flexcoders] Convert AJAX to Flex?

2006-06-09 Thread Carson Hager





Dan,
 
We know quite a bit about ThinkCAP as well as Flex. 
Unfortunately, this is going to be a manual process. There really is no good way 
to go from TC to Flex or any other RIA. That being said, I'd agree that what 
you're doing in principle is a wise choice.
 
 
Carson
 
   Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com 
  Email:  
[EMAIL PROTECTED] Office:  866-CYNERGY Mobile: 1.703.489.6466 
  
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of gwilowSent: 
Friday, June 09, 2006 10:21 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Convert AJAX to 
Flex?


Lets say that you have been developing an AJAX application 
(usingClearNova's ThinkCap) and you are displeased with the result. 
Whatoptions might one have to convert that AJAX application over to 
Flex?Is there a way to convert an AJAX application over to Flex? If 
Flexis not a good option for working with or converting from AJAX, 
whatother RIA platforms could be used that would allow the AJAX work 
thathas been done to not be a total loss? My sense is that 
conversion to Flex is a long shot, but I thought Iwould ask 
anyway.TIADan 
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread jpwarmer
--- In flexcoders@yahoogroups.com, "Jim Robson" <[EMAIL PROTECTED]> wrote:
>
I already try that way.the problem is that I can't catch the event
that the renderer dispatch...I don't want that the renderer chatch the
event.The DataGrid must catch it, so i can do something with it...






 

.

The general idea is that when click on the image (and just on the
image, not in the row...i don't care about the selected item at the
moment) an event is dispatched so details over the element are showed
on a diferent panel, the datagrid shows a very small set of data, the
remain information must be obtained by calling a service.

PD:Sorry about my english, it is obvious that is not my native language ;)

> Can you just use the buttonMode and click attributes?
> 
>  
> 
>  click="imageItemEventHandler():">
> 
>  
> 
>   _  
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of jpwarmer
> Sent: Friday, June 09, 2006 11:01 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] ItemRenderer and Events
> 
>  
> 
> Hi, 
> 
> I got a DataGrid with an ImageItemRenderer (that`s a custom component
> that shows an image on the cell). I want to dispatch an event when
> users click on the image. 
> 
> How can I do that???
> 
> TIA,
> 
> JP
>







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Convert AJAX to Flex?

2006-06-09 Thread gwilow
Lets say that you have been developing an AJAX application (using
ClearNova's ThinkCap) and you are displeased with the result.  What
options might one have to convert that AJAX application over to Flex?
 Is there a way to convert an AJAX application over to Flex? If Flex
is not a good option for working with or converting from AJAX, what
other RIA platforms could be used that would allow the AJAX work that
has been done to not be a total loss?  

 

My sense is that conversion to Flex is a long shot, but I thought I
would ask anyway.

 

TIA

 

Dan  







 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] CDT GDB debugger with fdb

2006-06-09 Thread maxym.hryniv
I'm trying to use gdb-compatible environment from cdt eclipse plugin 
with flex debugger fdb.exe. Does anyone know how to configure the cdt 
to work with fdb






 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-09 Thread Michael Schmalle



Where is the moderator when you need him! STEVE!


__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-09 Thread Robert Thompson



Valy, I can end this thread in a short statement or a long one.SHORTAdobe, I believe will play by the rules and they are a reasonable biz partner.But as Borat might say Microsoft "If she cheat on me, I will Crush her!"LONGStay with the issue that's been taken off, so we can let this end, I responded simply to warn people about things I've leanred in nearly 20 years; probably about as long as you've beeen alive possibly  the guy who started this thread implied Adobe wasn't a reasonable business partner and they are - I was giving a counter-example of someone proven by law not to be a good business partner: Microsoft.I am a .Net programmer both large medical apps and sites; and flash since 1997primarily as sites, but now as apps.  I've  taught entire companies how to use
 Flash.Flash is becoming a truly beautiful programming environment with FLEX 2.0..NET controls, if you've worked with the plethora of them as I have, cannot even begin to compare in visual appeal as a Flash app integrating FLEX.Enter "Sparkle" and my earlier comments.And as far as this word you brought up "conspiracy" what does that quick-overused-defense have to do with a sheet of paper that has things written on it from whom you call m$ have anything to do with the topic.I'm simply putting out a fact based warning regarding "a good business partner" and that, as just one example, that MS is not a good business partner as they licensed Sun's java and then they hacked it to perform badly as a JVM in IE, they were caught and paid $20m for it. Same with Quicktime years before, same with Blue Mountain v Microsoft just several years ago using Outlook as the preventing mechanism
 <<< they have ways to impede FLEX and THEY WILL TRY.  Old Bills don't learn new tricks they just wither.There are dozens of example more; you obviously have a ways to go in learning about both companies and how Microsoft fights an "enemy" << by the way, that's a word, not a conspiracy, so is the word "club" and the word "head" and "dead" and "desktop" and so is ray Ozzie's baby "notes" -- that enough for you to see this is a dangerous company with a front?  I know facts you don't.And if you don't think MS looks at Adobe as an enemy, read up.  Also realize Eolas just won a lawsuit against ms regarding it's use of ActiveX in IE effecting Flash but there is a working around by using the popular "flashobject" (Google or Yahoo it, stay away from MSN if you like your Favorites Folder not to be retrieved (it's fact that it's possible in some version of IE to do this Valey not
 conspiracy); fact is fact, conspiracy as a defense is ignorance (no harm implied it's simply the only word, or should I say ignorance is bliss).MS hardly ever gives in to lawsuits, they're paying EU $1M a day still because they won't comply with equal competitive rules.It all comes down to Sparkle.  I research this stuff regularly as part of my duties.  MS has been caught recent making very jealous statements at 2 companies: Google and Adobe.  And nearly all editors agree right now, there is an upcoming battle of Adobe v Microsoft.Microsoft, well Bill's not really a programmer as he claims (QBasic doesn't qualify, while Jobs is Smalltalk and variants do qualify), and the other guy has seemed to lost every truth of hair left on his head.I'm not one bit afraid or intimidated by anyone at Microsoft.  I've loved them and now I only use their tools when asked to by a client, or there's a particular reason.I
 simply believe we have a FRESH Platform from Adobe and I believe in it and I don't want anyone to be mis-lead, in fact I want people to be on the lookout so some of the hold outs can be informed and more of the truth many have seen in documents with their own eyes can be told to the pubic.Innovative Inventors & Patent TROLLSThe Truth About Microsoft Patents and ISVsA call to all MS ISVs to check your State LawsDue 2007.Anyone who copies the title before it's published -- thanks for the PR.One of the many titles I'm considering for my book.-rValy Sivec <[EMAIL PROTECTED]> wrote:  Robert, I'm kinda reluctant when I see people that know absolute truth and see all sorts of conspiracy around them. I believe M$ did a lot to this industry ( I'm not even a .net programmer ) in terms of innovation and software development and at this moment Adobe(Macromedia) still have to grow to be at that level. I'm not saying Flex is not a great product, just can't say Flex is best when still need workarounds for a lot of  things. BTW, some workarounds are presented as "patterns" or "features", look no further than "singleton" pattern.  Flex has great potential, but it will be interesting to see if Adobe will be able to create a great product. Historically speaking, JRun is/was a decent product but never GREATHope Flex will became a GREAT product along other products. In case
 Flex will the ONLY GREAT product, then we''ll see Adobe acting as M$ does now ( remember Flex pricing scheme). I'm done

RE: [flexcoders] Flex 1.5 LineChart question

2006-06-09 Thread Ely Greenfield





 
 

    

    
 

 

    

 
Ely.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
jgraham_usSent: Thursday, June 08, 2006 8:53 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex 1.5 LineChart 
question


I have a LineChart, I want to hide the horizontal and vertical axis, and 
basically just show the line. Whats the easiest way to do this? I 
haven't found anything that seems straightforward.
__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Flex and e-forms

2006-06-09 Thread Jonathan Bezuidenhout



Hi everyone,I know this question is a bit nebulous - but not as bad as how long is a piece of string.Has anyone had any experience of integrating e-forms with Flex?  In our case, we want our users to be able to create their own forms, fill them in, and display that info back to them - and also be able to extract some of that info.  Oh yes, and also seamlessly integrate that with our Flex app.
For example, Adobe LifeCycle is one of these products - it uses HTML/PDF:http://www.adobe.com/products/livecycle/Any ideas/suggestions for other approaches?
ThanksJonathan

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Ely Greenfield





 
 
 
flipping the skins in an editor and reapplying them is 
probably the right answer. But you could try just setting the scale of the 
scrollbar to -1 ;)
 
Ely.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Daniel 
TuppenySent: Friday, June 09, 2006 3:48 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flipping vertical 
scrollbars on left hand edge?




The default 
 component in flex isn't symetrical - it has rounded corners 
on the "outside edge". Is there a way to flip this over, because my scrollbar is 
on the left hand side (next to the axis of a chart), and it just doesn't look 
quite right.
 
I tried setting 
rotation="180", but it means offsetting the location, and this seems a little 
messy. Is there some property I'm missing to tell the scrollbar it's on the left 
hand edge?
 
Thanks,
 
Danny 
Tuppeny


The 
information contained in this e-mail and/or any attachments is confidential and 
intended only for the individual(s) to which it is addressed. If you are not 
named as an addressee you must not disclose, copy or take any action in reliance 
of this transmission. This e-mail and its attachments have been scanned for 
viruses by MessageLabs Ltd. 

 
__This 
email has been scanned by the MessageLabs Email Security System.For more 
information please visit http://www.messagelabs.com/email 
__

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] ItemRenderer and Events

2006-06-09 Thread Jim Robson










Can you just use the buttonMode and click
attributes?

 



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jpwarmer
Sent: Friday, June 09, 2006 11:01
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] ItemRenderer
and Events



 







Hi, 

I got a DataGrid with an ImageItemRenderer (that`s a custom component
that shows an image on the cell). I want to dispatch an event when
users click on the image. 

How can I do that???

TIA,

JP






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] ItemRenderer and Events

2006-06-09 Thread jpwarmer
Hi, 

I got a DataGrid with an ImageItemRenderer (that`s a custom component
that shows an image on the cell). I want to dispatch an event when
users  click on the image. 

How can I do that???

 
TIA,

JP





 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: FDB usage

2006-06-09 Thread maxym.hryniv
No! I'm looking for a GUI, that supports gdb to use it with fdb.
--- In flexcoders@yahoogroups.com, Andriy Panas <[EMAIL PROTECTED]> wrote:
>
> Hello maxym.hryniv,
> 
> mh> OOps. Sorry, GDB.
> 
> Are you looking at GDB as a rival debugger to FDB?!
> 
> May I ask why?!
> 
> 
> 
> 
> -- 
> Best regards,
>  Andriymailto:[EMAIL PROTECTED]
>






 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




RE: [flexcoders] flex2b3 - keydown re-visted

2006-06-09 Thread Matt Horn
You can add the listener to the stage object:

stage.addEventListener(KeyboardEvent.KEY_DOWN, keydown_handler); 

Or you can set the focus on the app in init():

application.addEventListener(KeyboardEvent.KEY_DOWN,
keydown_handler); 
application.setFocus();

Hth,

Matt Horn
Flex docs

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972
> Sent: Friday, June 09, 2006 10:26 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] flex2b3 - keydown re-visted
> 
> Hi,
> 
> i had this problem in flex2b2 but now have decided to tackle 
> this again in b3.
> 
> In this example (see below),
> 1) set focus on the label (using your mouse), and then hit 
> your keyboard...nothing happens
> 2) now try again but this time set focus on the button (using 
> mouse) and then hit your keyboard..this time you trap 
> keyboard events.
> 
> The problem is keyDown events are not trapped unless you have 
> selectable gui (ie anything which can have a tabIndex eg Button,
> TextInput) ..which you can first focus on with your mouse.
> 
> if your component/application has non selectable gui (eg 
> Labels, other containers), then no matter how many times you 
> click/mouseDown on thes object..you will never trigger 
> keydown events.
> 
> In flex 1.5 i had this problem but was able to solve it by using
> Key.addListener() function.
> 
> All i want to do is be able trap keydown events, where ever 
> my mouse focuses on.
> 
> code
> http://www.adobe.com/2006/mxml 
>  " 
> creationComplete="init()">
> 
> 
> 
>  
> 
>  backgroundColor="red">
> 
> 
>  
> 
> 
> 
> 
> 
>  
> 


 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] beta3 -- E4x to Actionscript objects

2006-06-09 Thread sufibaba
Dear All,

I am trying to decode an E4x XMLList into actionscript objects. In
mx.rpc.xml.SimpleXMLDecoder,  there exists a decodeXML() function that
converts an XMLNode but doesn't seem to work for E4x.  Has anyone had
experiences with this type of situation?

Thanks in advance,

Tim





 Yahoo! Groups Sponsor ~--> 
Home is just a click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Flex2B3 :: Panel anti-aliasing :: How do I get it back

2006-06-09 Thread Michael Schmalle



OK,

To those that might have this problem or find it in the future.

For what I can tell, Flex is changing the cacheHeuristic property of the popup when it is gettng resized.

For me to solve my problem completly, I have to reassign this property in the creationCOmplete handler. 

Adobe, I would say this is a bug. I am using a resizable window algo
that seems to be chaning it. I am now going to look at UIComponent to
see exactly what is going on.

Peace, MikeOn 6/6/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
>Are you embedding the fonts?

No, see the weird thing is, I have an app with two panels, standard
left 250 right 100%. anything in thoses panels smooth the text. I am
not talking about emebed font anti-alias, just the players smooth
anti-alias.

But is seems that when I use the PopUpMnager to create a popup of a
mxml component of TItleWindow, all the fonts of the window, title,
content are all as jagged as you can get.

see;

http://www.flex2components.com/screenshots/documentfx/anti-aliasMess.jpg


Thanks,


Mike

On 6/6/06, Jason Hawryluk <[EMAIL PROTECTED]> wrote:










  



Are you embedding the fonts?

Perhaps a screen shot of the worst case so we can see the extent of the
problem.

Jason

-Message d'origine-
De : flexcoders@yahoogroups.com [mailto:

flexcoders@yahoogroups.com]De la
part de Michael Schmalle
Envoyé : lundi 5 juin 2006 19:12
À : flexcoders@yahoogroups.com
Objet : [flexcoders] Flex2B3 :: Panel anti-aliasing :: How do I get it back

Hi,

I have been having this problem a lot. When I create my own Panels IE
TitleWindows, they look bad becasue there is no anti-aliasing going on. I
mean the text looks ragged.

I see a lot of other apps out there and they look the way they should,
smooth.

What am I doing wrong, dosn't make sense becasue I am not going out of my
way to set something different. Most I am loading components into them.

Peace, Mike

--
What goes up, does come down.

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt


Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

SPONSORED LINKS Web site design development Computer software development
Software design and development
Macromedia flex Software development best practice

YAHOO! GROUPS LINKS

Visit your group "flexcoders" on the web.

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

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


  













-- What goes up, does come down.

-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Jeff Tapper
Take a look at the resizable panel: 
http://jeff.mxdj.com/sizeabletitlewindow.htm  and panel with 
buttons:http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm for some ideas.

At 11:25 AM 6/9/2006, jpwarmer wrote:

>Hi, i did something like that with the Panel Class, let me tell you
>what I did...
>
>I extend the Panel class an add a few instance variables (the image
>for the controls)
>
>mx_internal var minimizeButton:Image;
>
>mx_internal var maximizeButton:Image;
>
>mx_internal var mediumButton:Image;
>
>I use Images because i dont want to have issues with skinning
>buttons..then i override a few methodshere is a sample (is just a
>portion)...
>
>override protected function createChildren():void
>{
>super.createChildren();//To draw the panel default childrens
>if (!minimizeButton) //I did the same for the other buttons
>{
>minimizeButton = new Image();
>minimizeButton.automationComposite = this;
>minimizeButton.styleName = this;
>//I pass the source as a style...so you need to declare it as metadata
>//( [Style(name="minimizedIcon", type="String", inherit="no")] ) after
>// the imports declaration
>minimizeButton.source = getStyle("minimizedIcon");
>
>minimizeButton.focusEnabled = false;
>minimizeButton.visible = true;
>minimizeButton.enabled = enabled;
>//I define a callback function to perform the animation
>minimizeButton.addEventListener(MouseEvent.CLICK,
>minimizeButton_clickHandler);
>
>titleBar.addChild(minimizeButton);
>}
>}
>
>override protected function layoutChrome(unscaledWidth:Number,
>unscaledHeight:Number):void
>{
>super.layoutChrome(unscaledWidth, unscaledHeight);
>
>var bm:EdgeMetrics = borderMetrics;
>
>var x:Number = bm.left;
>var y:Number = bm.top;
>
>var headerHeight:Number = getHeaderHeight();
>if (headerHeight > 0 && height >= headerHeight)
>{
>//basically, this section puts the buttons on the right corner of the
>panel bar
>minimizeButton.setActualSize(
>minimizeButton.getExplicitOrMeasuredWidth(),
>minimizeButton.getExplicitOrMeasuredHeight());
>
>minimizeButton.move(
>unscaledWidth - x - bm.right - 35 -
>minimizeButton.getExplicitOrMeasuredWidth(),
>(headerHeight -
>minimizeButton.getExplicitOrMeasuredHeight()) / 2);
>
>//Put the other buttons here
>
>}
>
>var leftOffset:Number = 10;
>var rightOffset:Number = 10;
>var h:Number;
>var offset:Number;
>
>}
>
>}
>
>And finally you mas implements the callback functions...
>
>private function minimizeButton_clickHandler(event:MouseEvent):void
>{
>var resize:Resize = new Resize(this);
>resize.heightTo = getHeaderHeight();
>resize.duration = 250;
>resize.play();
>
>}
>
>the you can use it like...
>
>dropShadowEnabled="true"
>paddingTop="2" paddingBottom="2" paddingLeft="2" paddingRight="2"
>minimizedIcon="@Embed('/assets/image/miniIcon.gif')"
> >
>
>I hope it helps you
>
>--- In flexcoders@yahoogroups.com, 
>Jesús Iglesias <[EMAIL PROTECTED]> wrote:
> >
> > Nobody has made somthing similar?
> >
> > -Mensaje original-
> > De: Jesús Iglesias [mailto:[EMAIL PROTECTED]
> > Enviado el: miércoles, 07 de junio de 2006 17:29
> > Para: 'flexcoders@yahoogroups.com'
> > Asunto: resizable, maximize and minimize TileWindow
> >
> >
> > Hi all,
> >
> > Have any of you made a TileWindow component with resize, maximize and
> > minimize controls?
> > Can you give me any idea on how to do it?
> >
> > Thanks.
> >
> > Jesús Iglesias
> > Alvento Soluciones Móviles
> > Poeta Querol, 5 - 2
> > 46002 Valencia (España)
> > [tel]: (+34) 96.353.02.15
> > [fax]: (+34) 96.353.08.09
> > [e-mail]:  [EMAIL PROTECTED]
> > [web]: <http://www.alvento.com/> www.alvento.com
> >
> > Este correo electrónico y, en su caso, cualquier fichero anexo al mismo,
> > contiene información de carácter confidencial exclusivamente dirigida a
> > su destinatario o destinatarios y propiedad de Alvento Soluciones S.A.
> > Queda prohibida su divulgación, copia o distribución a terceros sin la
> > previa autorización escrita de Alvento Soluciones S.A., en virtud de la
> > legislación vigente. En el caso de haber recibido este correo
> > electrónico por error, se ruega notificar inmediatamente esta
> > circunstancia mediante reenvío a la dirección electrónica del remitente
> > y la destrucción del mismo.
> >
> >
> > The information in this e-mail and in any attachments is classified as
> > Alvento Soluciones S.A. Confidential and Proprietary Information and
> > solely for the attention and use of the named addressee(s). You are
> > hereby notified that any dissemination, distribution or copy of this
> > communication is prohibited without the prior written consent of Alvento
> > Soluciones S.A. and it is strictly prohibited by law. If you have
> > received this communication by error, please, notify the sender by
> > replying e-mail.
> >
>
>
>
>No virus found in this incoming message.
>Checked by AVG Anti-Virus.
>Version: 7.1.394 / Virus Database

Re: [flexcoders] Re: FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv,

mh> OOps. Sorry, GDB.

Are you looking at GDB as a rival debugger to FDB?!

May I ask why?!




-- 
Best regards,
 Andriymailto:[EMAIL PROTECTED]



 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: FDB usage

2006-06-09 Thread maxym.hryniv
OOps. Sorry, GDB.
--- In flexcoders@yahoogroups.com, Andriy Panas <[EMAIL PROTECTED]> wrote:
>
> Hello maxym.hryniv,
> 
> mh> Can anyone suggest me a graphic environment for windows (or 
better
> mh> eclipse) that support gde??? I want to use it with fdb debugger
> 
> What is gde?
> 
> 
> 
> 
> 
> -- 
> Best regards,
>  Andriymailto:[EMAIL PROTECTED]
>







 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Multithreading?

2006-06-09 Thread Scott Langeberg



Well, there is no (process) blocking in Flash, so I'm not sure how you could ever freeze the user interface (other than endless loops!).
 
Flash is basically an asynchronous, event-based VM.
 
In MVC parlance, your controller would be set up to listen for events dispatched by the user interface (view). Any processes running in the background should proceed, undisturbed. However, in that case, the possiblities for some kind of data collisions (in model) are wide open (no thread locking).

 
[Please correct me, if I'm off.]
 
Scott 
On 6/9/06, n51red <[EMAIL PROTECTED]> wrote:






Is there any mechanism for multithreading in Flex(2.0), such that client side processing can continue without freezing the user interface?Thanks,N51
 -- : : ) Scott 

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Flex2 :: \r\n in returned db query :: Tips?

2006-06-09 Thread Michael Schmalle



Hi,

I have had this problem for a long time;

Is there any technique to get rid of the Windows \r\n other than doing
a split().join() on the text before it is inserted into a TextArea for
example?

This is so anoying. I tried condenseWhiteSpace but that didn't work.

Am I missing something easy?

Peace, Mike-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Return value from ExternalInterface.call method

2006-06-09 Thread drome.dario
Hi people,
I can not achieve to get any return value from javascript other than 
null.
In th HTML container I have a functions like this:

function f(p)
{
 alert(p);
 return(p);
}

In my flex app I call the browser function in the following way:

var ret:*;
ret = ExternalInterface.call( "f", "Hello" );
Alert.show( ret.toString() );

I get an alert in the browser saying "Hello" and another Alert from 
flex saying "null".

What's wrong?... I think that I should get two alerts shown, no?








 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread jpwarmer
Hi, i did something like that with the Panel Class, let me tell you
what I did...

I extend the Panel class an add a few instance variables (the image
for the controls) 

mx_internal var minimizeButton:Image; 

mx_internal var maximizeButton:Image; 

mx_internal var mediumButton:Image;

I use Images because i dont want to have issues with skinning
buttons..then i override a few methodshere is a sample (is just a
portion)...

override protected function createChildren():void
{
super.createChildren();//To draw the panel default childrens
   if (!minimizeButton) //I did the same for the other buttons
{
minimizeButton = new Image();
minimizeButton.automationComposite = this;
minimizeButton.styleName = this;
//I pass the source as a style...so you need to declare it as metadata
//( [Style(name="minimizedIcon", type="String", inherit="no")] ) after 
// the imports declaration
minimizeButton.source = getStyle("minimizedIcon");

minimizeButton.focusEnabled = false;
minimizeButton.visible = true;
minimizeButton.enabled = enabled;
//I define a callback function to perform the animation
minimizeButton.addEventListener(MouseEvent.CLICK,
  minimizeButton_clickHandler);

titleBar.addChild(minimizeButton);
}
}




override protected function layoutChrome(unscaledWidth:Number,
 unscaledHeight:Number):void
{
super.layoutChrome(unscaledWidth, unscaledHeight);

var bm:EdgeMetrics = borderMetrics;

var x:Number = bm.left;
var y:Number = bm.top;

var headerHeight:Number = getHeaderHeight();
if (headerHeight > 0 && height >= headerHeight)
{
//basically, this section puts the buttons on the right corner of the
panel bar
minimizeButton.setActualSize(

minimizeButton.getExplicitOrMeasuredWidth(),

minimizeButton.getExplicitOrMeasuredHeight());

minimizeButton.move(
unscaledWidth - x - bm.right - 
35 -

minimizeButton.getExplicitOrMeasuredWidth(),
(headerHeight -

minimizeButton.getExplicitOrMeasuredHeight()) / 2);

//Put the other buttons here

}

var leftOffset:Number = 10;
var rightOffset:Number = 10;
var h:Number;
var offset:Number;

}

}


And finally you mas implements the callback functions...

private function minimizeButton_clickHandler(event:MouseEvent):void
{
var resize:Resize = new Resize(this);
resize.heightTo = getHeaderHeight();
resize.duration = 250;
resize.play();

}


the you can use it like...



I hope it helps you






--- In flexcoders@yahoogroups.com, Jesús Iglesias <[EMAIL PROTECTED]> wrote:
>
> Nobody has made somthing similar?
>  
> -Mensaje original-
> De: Jesús Iglesias [mailto:[EMAIL PROTECTED] 
> Enviado el: miércoles, 07 de junio de 2006 17:29
> Para: 'flexcoders@yahoogroups.com'
> Asunto: resizable, maximize and minimize TileWindow
> 
> 
> Hi all, 
>  
> Have any of you made a TileWindow component with resize, maximize and
> minimize controls?
> Can you give me any idea on how to do it?
>  
> Thanks.
> 
> Jesús Iglesias
> Alvento Soluciones Móviles
> Poeta Querol, 5 - 2
> 46002 Valencia (España)
> [tel]: (+34) 96.353.02.15
> [fax]: (+34) 96.353.08.09
> [e-mail]:   [EMAIL PROTECTED]
> [web]:   www.alvento.com
>  
> Este correo electrónico y, en su caso, cualquier fichero anexo al mismo,
> contiene información de carácter confidencial exclusivamente dirigida a
> su destinatario o destinatarios y propiedad de Alvento Soluciones S.A.
> Queda prohibida su divulgación, copia o distribución a terceros sin la
> previa autorización escrita de Alvento Soluciones S.A., en virtud de la
> legislación vigente. En el caso de haber recibido este correo
> electrónico por error, se ruega notificar inmediatamente esta
> circunstancia mediante reenvío a la dirección electrónica del remitent

[flexcoders] Need help to select multiple item from a list

2006-06-09 Thread Sukhminder Singh
Hi there...

I have 2 lists. First list contains all the items, from which a user can
drag and drop items into his selected list. Then I want to capture all the
items a user has in his selected list.

Anyone out there knows how to get all the items IDs from the second list
which will be later stored in DB.?? My list if like follows:





Thanks
Sukhminder



 Yahoo! Groups Sponsor ~--> 
Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Tree getIsOpen Where is it?

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 16:01, [EMAIL PROTECTED] wrote:
> There was a getIsOpen method in 1.5 to test if a node was open. How can we
> this in F2B3?

http://livedocs.macromedia.com/labs/1/flex20beta3/langref/mx/controls/Tree.html#isItemOpen()

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards



 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] Camera object

2006-06-09 Thread Andrew Trice










Hi Everyone,

 

Does anyone the specifics of what defines a “camera”
to the Camera object?  Webcams work great, but what if I have other
devices that stream video content?  Is there a specification anywhere that
states the interface/criteria that the device must adhere to in order to be
detected by the flash player?  Currently, I only have a webcam connected
to my machine and I am wondering what else I can connect.  

 

Will a camcorder work?  

Will a video capture/tv decoder card work?

 

In the windows device manager, I see my webcam listed in the
“Imaging devices” category… Does any hardware that is detected
by the OS as an “Imaging device” work within the flash player?

 

All feedback appreciated!

 

Thanks,

Andy

 

_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 

 




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





Re: [flexcoders] FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv,

mh> Can anyone suggest me a graphic environment for windows (or better
mh> eclipse) that support gde??? I want to use it with fdb debugger

What is gde?





-- 
Best regards,
 Andriymailto:[EMAIL PROTECTED]



 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle



PS,

If all he wants to do is add buttons, he can find the answer in my last
post about using addChild() with the titleBar instance and overriding
layoutChrome()

Peace. MikeOn 6/9/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
Yeah,

That might have been me, but the source isn't available since it's a composite component that belongs in a set comming out.

Peace, MikeOn 6/9/06, Doug Lowder <
[EMAIL PROTECTED]> wrote:









  



Flex 1.5?
http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/

I know someone on this list has created one for Flex 2, but I'm not sure if the source is available.
 
Doug
--- In flexcoders@yahoogroups.com, Jesús Iglesias <[EMAIL PROTECTED]> wrote:
>> Nobody has made somthing similar?> > -Mensaje original-> De: Jesús Iglesias [mailto:

jesus@...] > Enviado el: miércoles, 07 de junio de 2006 17:29> Para: '

flexcoders@yahoogroups.com'> Asunto: resizable, maximize and minimize TileWindow> > > Hi all, > > Have any of you made a TileWindow component with resize, maximize and> minimize controls?
> Can you give me any idea on how to do it?> > Thanks.> > Jesús Iglesias> Alvento Soluciones Móviles> Poeta Querol, 5 - 2> 46002 Valencia (España)> [tel]: (+34) 
96.353.02.15> [fax]: (+34) 96.353.08.09> [e-mail]: jesus@... [EMAIL PROTECTED]> [web]: <
http://www.alvento.com/> 

www.alvento.com> > Este correo electrónico y, en su caso, cualquier fichero anexo al mismo,> contiene información de carácter confidencial exclusivamente dirigida a> su destinatario o destinatarios y propiedad de Alvento Soluciones 
S.A.> Queda prohibida su divulgación, copia o distribución a terceros sin la> previa autorización escrita de Alvento Soluciones S.A., en virtud de la> legislación vigente. En el caso de haber recibido este correo
> electrónico por error, se ruega notificar inmediatamente esta> circunstancia mediante reenvío a la dirección electrónica del remitente> y la destrucción del mismo.> > > The information in this e-mail and in any attachments is classified as
> Alvento Soluciones S.A. Confidential and Proprietary Information and> solely for the attention and use of the named addressee(s). You are> hereby notified that any dissemination, distribution or copy of this
> communication is prohibited without the prior written consent of Alvento> Soluciones S.A. and it is strictly prohibited by law. If you have> received this communication by error, please, notify the sender by
> replying e-mail.>

  













-- What goes up, does come down.

-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Michael Schmalle



AH!!!

That was one other thing I was going to try!!!

mouseChildren.

I couldn't get why it would matter. That is what you get for trying to multi-task.

Rob, I gave it my best ;-)

Peace, MikeOn 6/9/06, Peter Baird <[EMAIL PROTECTED]> wrote:









  






Manish Jenathi blogged about this a while back, but I'm not seeing the blog entry anymore.

Anyway, the following works, and I believe is the recommended approach:


 useHandCursor="true"
 buttonMode="true"
 mouseChildren="false"
  />

Per Manish's explanation (as best I remember), the component needs to know that it has no "mouseChildren" to listen for.

-Peter  


On 6/9/06 10:26 AM, "Jim Robson" <[EMAIL PROTECTED]> wrote:

 
 
 

Hi Mike,
 
Thanks for looking into this. I tried your suggestion, but the cursor
still turns back into an arrow when it gets over the text field. My
code is below; if I did not correctly follow your suggestion, please
let me know where I went wrong:
 

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











 

 





From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3: useHandCursor property of Text control
 


Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



xmlns:mx="http://www.adobe.com/2006/mxml" 
layout="vertical" 
creationComplete="onInit(event)">












Adjust to what you need but, there is a hack here. 

Peace, Mike


On 6/9/06, Jean-Luc ESSER <[EMAIL PROTECTED]  
 > wrote:

I have the exact same problem, and do not have a solution.

If you put handCursor on a Box where you text resides, it does not work either.

 

Best,

JL

 

- Original Message - 

From: Jim Robson 
  

To: flexcoders@yahoogroups.com
 

Sent: Friday, June 09, 2006 3:18 PM 

Subject: [flexcoders] F2B3: useHandCursor property of Text control

 

Per
the docs, the useHandCursor property is inherited from the Sprite
class. However, it doesn't seem to work on the Text control. When set
to "true", the mouse cursor remains an arrow instead of changing to a
button when over the text field:



What am I missing?





/ \®   
PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\  AIM: pbaird00 | Y!IM: pbaird00







  













-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] The End, A: YES, YES >> Is Adobe a reasonable business partner?

2006-06-09 Thread Valy Sivec



Robert, I'm kinda reluctant when I see people that know absolute truth and see all sorts of conspiracy around them. I believe M$ did a lot to this industry ( I'm not even a .net programmer ) in terms of innovation and software development and at this moment Adobe(Macromedia) still have to grow to be at that level. I'm not saying Flex is not a great product, just can't say Flex is best when still need workarounds for a lot of  things. BTW, some workarounds are presented as "patterns" or "features", look no further than "singleton" pattern.  Flex has great potential, but it will be interesting to see if Adobe will be able to create a great product. Historically speaking, JRun is/was a decent product but never GREATHope Flex will became a GREAT product along other products. In case Flex will the ONLY GREAT product, then we''ll see Adobe acting as M$ does now ( remember Flex pricing scheme). I'm done with this posting and hope that
 flexcodders won't be offended in anyway, it wasn't my intention.Best regards,ValyRobert Thompson <[EMAIL PROTECTED]> wrote:  Okay Valy, let's end it here...I did not start the commentary.The response was from a message to someone asking if Adobe is a reasonable business partner -- a pretty serious accusation and there's plenty of room for response to this accusation; and that's all.Although I agree commentary should not be going on a lot, that was a serious implying sort of suggestion -- that they are not, when in fact Adobe and the Macromedia
 developers are great business partners.  I've been involved in Flash since 1997 so I have a lot of history here.Microsoft is not a reasonble business partner and that's the only thing I added, and mark my words they intend to use DirectX and Direct3D (something I myself programmed in the past) and Sparkle to minimize Flash.  And then have a viewer on the Macintosh.  Why all this?  Because FLEX 2.0 is very powerful at Applications.I've seen evidence of this  regarding Lotus Notes that I don't even think Ray Ozzie who is there now has seen, and words perhaps like "kill the enemy" and "club them over the head with the Windows desktop" are words that you should think about -- I'm not saying anything beyond that, but I know how they compete and I've done my research.And if you don't know about the upcoming battle re: Sparkle and MS's plan to at the very least minimize Flash as a true
 cross-platform client server solution on to of the very same Java they were proven to have licensed and then hacked [and those are very deceitful motives], then you should read up my friend and not continue your own commentary when the issue was already answered.I did not start it.  Maybe you can stop it and relax a littleread a little about the issues that will be coming upand they willand I'm sure you know I'm rooting for Adobe.  They are everything MS is not -- look at the inability of MS to come out with even  the least Graphics program; or the way graphcs are dealt with in Word Sad.  Finally we have a great competitor in the market who's not guilty of breaking the law.Uh...kind regards...and consider perhaps my eyes have seen things yours have not...then go back to the guy who asked the question.  Any further commentary is your own and would be frankly
 hypocr.-rValy Sivec <[EMAIL PROTECTED]> wrote:  Is this kind of message adding any value to the flexcoders comunity? I don't think so. I think that this  forum should stay focused on Flex core issues and let time speak about how successfull is Flex vs.others or how much better is Adobe vs.other software vendors.Kind regards,ValyRobert Thompson <[EMAIL PROTECTED]> wrote:  You guys at ADOBE are doing great and are going far above what many organizations will do.  And most of all YOU CAN BE TRUSTED.Anyone (like this guy) who complains about  support in a Beta
 should have a little more patience.  By the way, you may want to make sure he doesn't have an alias named "Steve Barkto" (Google "Steve Barkto Incident" :-)Plus, everyone is into FLEX 2.0 and it's spreading fast -- I'm an unofficial "evangelist" for Flash --- and for 4th of July, I'm going to warn everyone of  the dangers of trusting sparklers too close to their eyes -- WARNING, WARNING only works on Dindows full of security holes...use Java FLASHERS they're cooler and they got an infusion of $20 Million from a lawbreaker...his name is...well I mentioned him above.Just sit back and watch the FLEX 2.0 show and build a long-term solution with a Partner that CAN BE TRUSTED client and server.  I'm  finally excited about development again.I'm 38; CS maj. lots of experience with Mick Softy (again that gangster guy) and I'd say the next 10 years of the development part of my life are dedicated to helping Adobe win the upcoming  "War for the
 Desktop [mobile top]".As Dvorak said "They're now an Albatross".  Ha, that was my nick name in track and field when I ran an 8:52 2 mile 

RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson










No problem, Mike, it happens all the time.
The price I pay for having a first name embedded in my last name. J

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 11:07
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3:
useHandCursor property of Text control



 







opps,

Jim, looked at your last name :)

Mike



On 6/9/06, Michael
Schmalle <[EMAIL PROTECTED]>
wrote:



AH!!!

That was one other thing I was going to try!!!

mouseChildren.

I couldn't get why it would matter. That is what you get for trying to
multi-task.

Rob, I gave it my best ;-)

Peace, Mike





 



On 6/9/06, Peter
Baird <
[EMAIL PROTECTED]> wrote:











Manish Jenathi blogged about
this a while back, but I'm not seeing the blog entry anymore.

Anyway, the following works, and I believe is the recommended approach:


 useHandCursor="true"
 buttonMode="true"
 mouseChildren="false"
  />

Per Manish's explanation (as best I remember), the component needs to know that
it has no "mouseChildren" to listen for.

-Peter  








On 6/9/06 10:26 AM, "Jim Robson" <[EMAIL PROTECTED]>
wrote:






 
 

Hi Mike,
 
Thanks for looking into this. I tried your suggestion, but the cursor still
turns back into an arrow when it gets over the text field. My code is below; if
I did not correctly follow your suggestion, please let me know where I went
wrong:
 

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












 

 















From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3:
useHandCursor property of Text control







Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the
component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



xmlns:mx="http://www.adobe.com/2006/mxml" 
layout="vertical" 
creationComplete="onInit(event)">












Adjust to what you need but, there is a hack here. 

Peace, Mike







On 6/9/06, Jean-Luc
ESSER <[EMAIL PROTECTED]
 
 > wrote:






I have the exact same problem, and do not have a solution.

If you put handCursor on a Box where you text resides, it does not work
either.



Best,

JL










- Original Message - 

From: Jim Robson 
 

To: flexcoders@yahoogroups.com


Sent: Friday, June 09,
2006 3:18 PM 

Subject: [flexcoders] F2B3:
useHandCursor property of Text control



Per the docs, the useHandCursor property is inherited from the Sprite
class. However, it doesn't seem to work on the Text control. When set to
"true", the mouse cursor remains an arrow instead of changing to a
button when over the text field:



What am I missing?













/ \®    PETER BAIRD
888/   \888
   User
Experience Consultant
88/
 /  \88    Adobe Consulting | Adobe
Systems, Inc
8/
 /8\  \8    275 Grove St. Newton, MA
/
 /888\  \    Office: 617.219.2126 |
Cell: 617.803.6804
  \8\  AIM:
pbaird00 | Y!IM: pbaird00



























-- 
What goes up, does come down. 








-- 
What goes up, does come down. 






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle



Yeah,

That might have been me, but the source isn't available since it's a composite component that belongs in a set comming out.

Peace, MikeOn 6/9/06, Doug Lowder <[EMAIL PROTECTED]> wrote:









  



Flex 1.5?
http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/

I know someone on this list has created one for Flex 2, but I'm not sure if the source is available.
 
Doug
--- In flexcoders@yahoogroups.com, Jesús Iglesias <[EMAIL PROTECTED]> wrote:
>> Nobody has made somthing similar?> > -Mensaje original-> De: Jesús Iglesias [mailto:
jesus@...] > Enviado el: miércoles, 07 de junio de 2006 17:29> Para: '
flexcoders@yahoogroups.com'> Asunto: resizable, maximize and minimize TileWindow> > > Hi all, > > Have any of you made a TileWindow component with resize, maximize and> minimize controls?
> Can you give me any idea on how to do it?> > Thanks.> > Jesús Iglesias> Alvento Soluciones Móviles> Poeta Querol, 5 - 2> 46002 Valencia (España)> [tel]: (+34) 
96.353.02.15> [fax]: (+34) 96.353.08.09> [e-mail]: jesus@... [EMAIL PROTECTED]> [web]: <
http://www.alvento.com/> 
www.alvento.com> > Este correo electrónico y, en su caso, cualquier fichero anexo al mismo,> contiene información de carácter confidencial exclusivamente dirigida a> su destinatario o destinatarios y propiedad de Alvento Soluciones 
S.A.> Queda prohibida su divulgación, copia o distribución a terceros sin la> previa autorización escrita de Alvento Soluciones S.A., en virtud de la> legislación vigente. En el caso de haber recibido este correo
> electrónico por error, se ruega notificar inmediatamente esta> circunstancia mediante reenvío a la dirección electrónica del remitente> y la destrucción del mismo.> > > The information in this e-mail and in any attachments is classified as
> Alvento Soluciones S.A. Confidential and Proprietary Information and> solely for the attention and use of the named addressee(s). You are> hereby notified that any dissemination, distribution or copy of this
> communication is prohibited without the prior written consent of Alvento> Soluciones S.A. and it is strictly prohibited by law. If you have> received this communication by error, please, notify the sender by
> replying e-mail.>

  













-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson










Peter:

 

That works perfectly, and it’s not
even a workaround! Thanks very much!

 

Jim

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Baird
Sent: Friday, June 09, 2006 11:01
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3:
useHandCursor property of Text control



 







Manish Jenathi blogged about
this a while back, but I’m not seeing the blog entry anymore.

Anyway, the following works, and I believe is the recommended approach:


 useHandCursor="true"
 buttonMode="true"
 mouseChildren="false"
  />

Per Manish’s explanation (as best I remember), the component needs to
know that it has no “mouseChildren” to listen for.

-Peter  


On 6/9/06 10:26 AM, "Jim Robson" <[EMAIL PROTECTED]>
wrote:




 
 

Hi Mike,
 
Thanks for looking into this. I tried your suggestion, but the cursor still
turns back into an arrow when it gets over the text field. My code is below; if
I did not correctly follow your suggestion, please let me know where I went
wrong:
 

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












 

 







From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3:
useHandCursor property of Text control


Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the
component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



xmlns:mx="http://www.adobe.com/2006/mxml"

layout="vertical" 
creationComplete="onInit(event)">












Adjust to what you need but, there is a hack here. 

Peace, Mike


On 6/9/06, Jean-Luc ESSER
<[EMAIL PROTECTED]  
> wrote:

I have the exact same problem, and do not have a solution.

If you put handCursor on a Box where you text resides, it does not work
either.



Best,

JL






- Original Message - 

From: Jim Robson 
 

To: flexcoders@yahoogroups.com 

Sent: Friday, June 09,
2006 3:18 PM 

Subject: [flexcoders] F2B3:
useHandCursor property of Text control



Per the docs, the useHandCursor property is inherited from the Sprite
class. However, it doesn't seem to work on the Text control. When set to
"true", the mouse cursor remains an arrow instead of changing to a
button when over the text field:



What am I missing?











/ \®   PETER BAIRD
888/   \888
   User
Experience Consultant
88/
 /  \88    Adobe Consulting | Adobe
Systems, Inc
8/
 /8\  \8    275 Grove St. Newton, MA
/
 /888\  \    Office: 617.219.2126 |
Cell: 617.803.6804
  \8\  AIM:
pbaird00 | Y!IM: pbaird00








__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Tree getIsOpen Where is it?

2006-06-09 Thread Oscar . Cortes
There was a getIsOpen method in 1.5 to test if a node was open. How can we
this in F2B3?

Thanks


---
This e-mail message (including attachments, if any) is intended for the use
of the individual or entity to which it is addressed and may contain
information that is privileged, proprietary , confidential and exempt from
disclosure.  If you are not the intended recipient, you are notified that
any dissemination, distribution or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please notify the sender and erase this e-mail message immediately.
---



 Yahoo! Groups Sponsor ~--> 
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Michael Schmalle



opps,

Jim, looked at your last name :)

MikeOn 6/9/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
AH!!!

That was one other thing I was going to try!!!

mouseChildren.

I couldn't get why it would matter. That is what you get for trying to multi-task.

Rob, I gave it my best ;-)

Peace, MikeOn 6/9/06, Peter Baird <
[EMAIL PROTECTED]> wrote:









  






Manish Jenathi blogged about this a while back, but I'm not seeing the blog entry anymore.

Anyway, the following works, and I believe is the recommended approach:


 useHandCursor="true"
 buttonMode="true"
 mouseChildren="false"
  />

Per Manish's explanation (as best I remember), the component needs to know that it has no "mouseChildren" to listen for.

-Peter  


On 6/9/06 10:26 AM, "Jim Robson" <[EMAIL PROTECTED]> wrote:

 
 
 

Hi Mike,
 
Thanks for looking into this. I tried your suggestion, but the cursor
still turns back into an arrow when it gets over the text field. My
code is below; if I did not correctly follow your suggestion, please
let me know where I went wrong:
 

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











 

 





From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3: useHandCursor property of Text control
 


Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



xmlns:mx="http://www.adobe.com/2006/mxml" 
layout="vertical" 
creationComplete="onInit(event)">












Adjust to what you need but, there is a hack here. 

Peace, Mike


On 6/9/06, Jean-Luc ESSER <[EMAIL PROTECTED]  

 > wrote:

I have the exact same problem, and do not have a solution.

If you put handCursor on a Box where you text resides, it does not work either.

 

Best,

JL

 

- Original Message - 

From: Jim Robson 
  

To: flexcoders@yahoogroups.com
 

Sent: Friday, June 09, 2006 3:18 PM 

Subject: [flexcoders] F2B3: useHandCursor property of Text control

 

Per
the docs, the useHandCursor property is inherited from the Sprite
class. However, it doesn't seem to work on the Text control. When set
to "true", the mouse cursor remains an arrow instead of changing to a
button when over the text field:



What am I missing?





/ \®   

PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\  AIM: pbaird00 | Y!IM: pbaird00







  













-- What goes up, does come down.

-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] AMF & server-side page redirection

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 13:10, niladri_gupta wrote:
> Is server-side redirection possible through AMF in Flex 2.0 Beta 3
> possible?

No, however the Flash app can alter the URL.

> For example, after the user enters his Login name and password, the
> business delegate will do the server-side authentication. On success,
> what do I need to do to carry his account-details to another MXML page?

Why not have the login prompt as a modal dialogue or 2nd view in the main 
app ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards



 Yahoo! Groups Sponsor ~--> 
Everything you need is one click away.  Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 11:47, Jesús Iglesias wrote:
> Nobody has made somthing similar?

There was a post just the other day, or you could do worse than look at how 
the 'drawer' GUI elements are constructed here:
http://examples.kuwamoto.org/drawer/v0.6/DrawerDemo.html
(right click for source)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards



 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




[flexcoders] FDB usage

2006-06-09 Thread maxym.hryniv
Can anyone suggest me a graphic environment for windows (or better 
eclipse) that support gde??? I want to use it with fdb debugger





 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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




Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Peter Baird
Title: Re: [flexcoders] F2B3: useHandCursor property of Text control





Manish Jenathi blogged about this a while back, but I’m not seeing the blog entry anymore.

Anyway, the following works, and I believe is the recommended approach:


 useHandCursor="true"
 buttonMode="true"
 mouseChildren="false"
  />

Per Manish’s explanation (as best I remember), the component needs to know that it has no “mouseChildren” to listen for.

-Peter  


On 6/9/06 10:26 AM, "Jim Robson" <[EMAIL PROTECTED]> wrote:

 
 
 

Hi Mike,
 
Thanks for looking into this. I tried your suggestion, but the cursor still turns back into an arrow when it gets over the text field. My code is below; if I did not correctly follow your suggestion, please let me know where I went wrong:
 

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












 

 





From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3: useHandCursor property of Text control
 

Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



xmlns:mx="http://www.adobe.com/2006/mxml" 
layout="vertical" 
creationComplete="onInit(event)">












Adjust to what you need but, there is a hack here. 

Peace, Mike


On 6/9/06, Jean-Luc ESSER <[EMAIL PROTECTED]   > wrote:

I have the exact same problem, and do not have a solution.

If you put handCursor on a Box where you text resides, it does not work either.

 

Best,

JL

 

- Original Message - 

From: Jim Robson   

To: flexcoders@yahoogroups.com 

Sent: Friday, June 09, 2006 3:18 PM 

Subject: [flexcoders] F2B3: useHandCursor property of Text control

 

Per the docs, the useHandCursor property is inherited from the Sprite class. However, it doesn't seem to work on the Text control. When set to "true", the mouse cursor remains an arrow instead of changing to a button when over the text field:



What am I missing?





/ \®   PETER BAIRD
888/   \888    User Experience Consultant
88/  /  \88    Adobe Consulting | Adobe Systems, Inc
8/  /8\  \8    275 Grove St. Newton, MA
/  /888\  \    Office: 617.219.2126 | Cell: 617.803.6804
  \8\  AIM: pbaird00 | Y!IM: pbaird00




__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Doug Lowder



Flex 1.5?
http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/
I know someone on this list has created one for Flex 2, but I'm not sure if the source is available.
 
Doug
--- In flexcoders@yahoogroups.com, Jesús Iglesias <[EMAIL PROTECTED]> wrote:>> Nobody has made somthing similar?> > -Mensaje original-> De: Jesús Iglesias [mailto:[EMAIL PROTECTED] > Enviado el: miércoles, 07 de junio de 2006 17:29> Para: 'flexcoders@yahoogroups.com'> Asunto: resizable, maximize and minimize TileWindow> > > Hi all, > > Have any of you made a TileWindow component with resize, maximize and> minimize controls?> Can you give me any idea on how to do it?> > Thanks.> > Jesús Iglesias> Alvento Soluciones Móviles> Poeta Querol, 5 - 2> 46002 Valencia (España)> [tel]: (+34) 96.353.02.15> [fax]: (+34) 96.353.08.09> [e-mail]: > [web]:  www.alvento.com> > Este correo electrónico y, en su caso, cualquier fichero anexo al mismo,> contiene información de carácter confidencial exclusivamente dirigida a> su destinatario o destinatarios y propiedad de Alvento Soluciones S.A.> Queda prohibida su divulgación, copia o distribución a terceros sin la> previa autorización escrita de Alvento Soluciones S.A., en virtud de la> legislación vigente. En el caso de haber recibido este correo> electrónico por error, se ruega notificar inmediatamente esta> circunstancia mediante reenvío a la dirección electrónica del remitente> y la destrucción del mismo.> > > The information in this e-mail and in any attachments is classified as> Alvento Soluciones S.A. Confidential and Proprietary Information and> solely for the attention and use of the named addressee(s). You are> hereby notified that any dissemination, distribution or copy of this> communication is prohibited without the prior written consent of Alvento> Soluciones S.A. and it is strictly prohibited by law. If you have> received this communication by error, please, notify the sender by> replying e-mail.>

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Flex 2 Beta 3 Charting component

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 13:54, Tarun Telang wrote:
> How can I get the Serial Number for Flex 2 Beta 3 Charting component?

Wait tell the end of the month when it's released and buy a license :-)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards



 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





[flexcoders] Re: Datagrid Help

2006-06-09 Thread s_hernandez01
Thanks, Tracy, I've been getting alot of feedback saying that the
datagrid is not functioned to perform that way, looks like I'm going
to have to do a grid manually.  Thanks for the help anyway.

Ciao
Sal

--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>
> If you really want horizontal columns, with vertical row functionality,
> then I don't think the dataGrid will work.  (But that sounds like a
> useful control for someone to make!)
> 
>  
> 
> If you just want to display the values in a "crosstab" style view, you
> can manually rearrange the data.  Depending on the structure of the xml,
> this could be easy or hard.  I don't know how e4x is at respecting orded
> when it returns its XMLLists.  If it does not, You will need to manually
> loop over the nodes.
> 
>  
> 
> Tracy
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Stacey Mulcahy
> Sent: Thursday, June 08, 2006 12:57 PM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Datagrid Help
> 
>  
> 
> Can you do that with a db>? Wouldn't you be better to look at charts or
> a horizontal tile list ?
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of s_hernandez01
> Sent: Thursday, June 08, 2006 12:19 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Datagrid Help
> 
>  
> 
> Hey everybody
> 
> I created a datagrid and the data source is from an xml file. 
> However, I want the data to be displayed vertically instead of
> horizontally. For example:
> 
> Item | Product 1
> Price | $11.99
> Item # | 1256
> ...
> ...
> 
> I appreciate any help I can get.
> 
> Thanks
> 
> Sal
>







 Yahoo! Groups Sponsor ~--> 
You can search right from your browser? It's easy and it's free.  See how.
http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
~-> 

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

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

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

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





RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson










Never mind my last post – I had
missed the creationComplete attribute in the Application tag. It works now!

 

Thanks Mike!

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle
Sent: Friday, June 09, 2006 9:48
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] F2B3:
useHandCursor property of Text control



 







Hi,

1) the internal textfield has no useHandCursor property, this kills one hack.
2) Text control has no border, so there is nothing to hit when you set the
component's useHandCursor to true.
3) The internal textfield is eating the event
4) wrap it with a VBOX or the like

This does work



    xmlns:mx="http://www.adobe.com/2006/mxml"

    layout="vertical" 
    creationComplete="onInit(event)">
    
    
        
    

    
        
    
    



Adjust to what you need but, there is a hack here. 

Peace, Mike






On 6/9/06, Jean-Luc
ESSER <[EMAIL PROTECTED]
> wrote:













I have the exact same problem,
and do not have a solution.





If you put handCursor on a Box where
you text resides, it does not work either.





 





Best,





JL









 







- Original Message - 





From: Jim Robson 





To: flexcoders@yahoogroups.com 





Sent: Friday,
June 09, 2006 3:18 PM 





Subject:
[flexcoders] F2B3: useHandCursor property of Text control





 







Per the docs, the useHandCursor property is inherited
from the Sprite class. However, it doesn't seem to work on the Text control.
When set to "true", the mouse cursor remains an arrow instead of
changing to a button when over the text field:



What am I missing?






















-- 
What goes up, does come down. 






__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






  1   2   >