RE: [flexcoders] FlexBuilder Flintstone

2006-10-12 Thread Dirk Eismann





Hi 
Ralf,
 
last 
time I checked the only publicly available information/documentation was the 
Code Model / Design Model API for Flex Builder 2. It in the Help System of FB2 
(Help > Help Contents > Adobe Flex Builder 2 
Extensibility)
 
I 
agree that we need more documentation if Adobe wants the community to add 
features to FB2. If there's no public API and we're building extensions just by 
try/guess, those extensions may not work with future versions of FB2. When I 
created the TODO/FIXME plugin for FB2 I had absolutely no clue where to 
hook into the product and in the end (and by the help of some very smart people) 
it's all done by setting up rather weird construct listens for 
MXML/AS getting opened and then it parses the contents. All without using 
the Code Model - simply because I did not know there's any information abozut it 
at all!
 
Dirk.

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Ralf 
  BokelbergSent: Thursday, October 12, 2006 8:40 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] FlexBuilder 
  Flintstone
  To implement a plugin like Bjorn asked for, we would need 
  documentation and maybe source of the flexbuilder plugin. Is it available 
  somewhere? For example to mark occurences, we would need to be able to 
  walk the syntax tree of the current class. CheersRalf. 

  On 10/12/06, Matt 
  Chotin <[EMAIL PROTECTED]> 
  wrote:
  


Those are features 
we'd hope to add in the future.  Also folks are welcome to write 
extensions and plugins that might add that functionality J 
 




From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bjorn 
SchultheissSent: 
Wednesday, October 11, 2006 5:52 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] FlexBuilder 
Flintstone

 




Hey 
guys,

 

Obviously many of you have 
known this before,

But our Java guys were just 
showing me the Refactoring, Mark Occurance and more features of 
Eclipse.

 

I 
must admit I felt slightly inferior and dissapointed when i 
went back to FlexBuilder and noticed that i cant make use of these 
features.

 

Whats the 
deal,

I'm starting to feel like 
Barney Rubble chizzeling away at my keyboard in the stoneage era (i hope you 
guys have a sense of humour).

 

If i reinstall and use Eclipse 
with FB plugin will i get these features?

 
Regards, Bjorn 
Schultheiss 

 -- Ralf Bokelberg <[EMAIL PROTECTED]>Flex 
  & Flash Consultant based in Cologne/Germany  
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-12 Thread Tom Chiverton
On Thursday 12 October 2006 02:31, Andrew D. Goodfellow wrote:
> "select" multiple dates, I want to "indicate" there is some data on certain
> dates _if_ one of those dates were to be selected by the user.

So use the select or change events to update either selectedRanges, or some 
other control.

-- 
Tom Chiverton
Helping to widespreadedly embrace viral methodologies



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.



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Re: Cairngorm commands - best practise

2006-10-12 Thread Tom Chiverton
On Wednesday 11 October 2006 20:48, Tim Hoff wrote:
> WTF, since when do Delagates know about the ModelLocator?  Tom, I'm
> sorry to disagree with you here, 

Go right ahead and disagree :-)

> a proxy for a service call; a layer of abstraction to help
> encapsulate the Commands. 

Delegates encapsulate commands ? It's the other way around - the Delegate hide 
all the gubbins of how the command is run at the other end, and that for me 
means passing an auth. token (username).


> event. But I don't beleive that this is the intended best practice.
> I think that events should only carry temporary data and the
> ModelLocator (VO's) should hold persistant data. 

With you so far.

> the searchString is temporary, but is held in the VO because it
> might be needed for user notification of a failed search attempt.
> IMHO, Delegates shouldn't know about the ModelLocator at all and
> Views should only know about the ModelLocator through binding.  The
> Commands should do all of the work.

But, but, but... either I scatter my requirement for the first argument to a 
Remoteing call to be a particular string all over my code (in the VO and the 
Command), or in one place (the Delegate). 
I don't see the harm in binding my Delegate to a specific Model property as I 
can't see us ever changing the security mechanism.

-- 
Tom Chiverton
Helping to quickly enhance interdependent segments



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.



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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




[flexcoders] [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread João Fernandes










Hi there,

 

I have a datagrid binded to an ArrayCollection which
is filled by a DS destination. 

When I add an item and commit, my datagrid ID column
doesn’t get updated but if I check the value in my ArrayCollection, the
ID property is correctly updated.

 

If I sort my datagrid, the new value shows up. 

 

This doesn’t happen to clients who are
connected to the same destination. They see the right behaviour.

 

Any thoughts?

 

Thanks,

 

João Fernandes




__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] Internationalization best practices

2006-10-12 Thread Sergey Kovalyov
Hi All!

Could you please share some approaches toward internationalization in
Flex 2 applications? Any articles, tutorials and code samples are
welcome!

Sergey.


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread nathanpdaniel
I see these are image ENcoders, are there any image DEcoders 
available?

--- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> 
wrote:
>
> Thanks Darron,
> 
> I had downloaded them from
> http://labs.adobe.com/wiki/index.php/Source:getearlier but they were
> very old files.
> 
> Rich
> 
> On 10/11/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:
> >
> >  They're in the Adoeb Labs SVN:
> >
> >
> > 
http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/a
ctionscript3/com/adobe/images/
> >
> > -d
> >
> > Rich Tretola wrote:
> >
> >  Anyone have a new copy of JPEGEncoder.as?
> >
> > Rich*
> > *
> >
> >
> > 
> >
> 
> 
> 
> -- 
> Rich Tretola
> 
> http://www.EverythingFlex.com
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Clearing or resetting a datagrid bound to a web service

2006-10-12 Thread dsfhsdfjsdfj
Tracy,

Thanks a ton, thats exactly what I needed, and it works perfect!

This is my 1st flex app, and I have a background in CF for about 6
years now.  I didnt even consider Flex 1.X due to its cost, but I got
my company to purchase the Flex builder 2 without too much problem. 
Thanks again for your help!

Chris


>
> Set myDataGrid.dataProvider = [];
> 
>  
> 
> This assumes you are not binding directly to the data service result,
> but are instead using a result handler function to assign the
> dataProvider.  If the resultHandler sets a globla variable, to which
> your DG is bound, then set that variable to an empty array.
> 
>  
> 
> If you are binding directly to the lastResult object, don't.
> 
>  
> 
> Tracy
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of dsfhsdfjsdfj
> Sent: Wednesday, October 11, 2006 3:58 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Clearing or resetting a datagrid bound to a web
> service
> 
>  
> 
> I have a simple form in flex, and I am coding a reset button. To 
> populate my datagrid, I use a CFC based webservice that returns a 
> query. I need to be able to clear that datagrid when the user presses 
> the reset button. Any suggestions?
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] DataGrid: How do I select and copy text for a DataGrid cell?

2006-10-12 Thread mukulneetika
Hi,

How do I select and copy (to clipboard) text from a DataGrid cell?

I don't want to use itemRenderer?

Thanks,
 Mukul.




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Datagrid Checkbox binding to selectedItems?

2006-10-12 Thread haravallabhan
Try using itemRenderer inside a DataGridColumn. inside which you can 
add a check box.
like








--- In flexcoders@yahoogroups.com, "wayneposner" <[EMAIL PROTECTED]> 
wrote:
>
> Howdy all...
> 
> Is it possible to have a checkbox in a datagrid act as the method for 
> making multiple selections (updating the selectedItems array)?
> 
> I want to add a column of checkboxes to my datagrid that is not bound 
> to any data provider and use the checkboxes to simply select multiple 
> items.
> 
> 
> Thanks!
> Wayne
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Help with class

2006-10-12 Thread Karthik J



Hi,I am new to Flex2. I have a class called test.as. I am trying to create object in mxml script tag by var t:test = new test();If I try to access any the prop of object itz throwing error.But if I define the same inside a function itz working fine.Why is it so? I cant use that object outside the function.Is there any solution or is it like that. 
Regards,
JK








  

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


Re: [flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-12 Thread Alexander Lamb


Definitely Flex for Cocoa developers! Show the similarities or differences in the handling of events and bindings. --Alexander LambService d'Informatique MédicaleHôpitaux Universitaires de Genève[EMAIL PROTECTED]On Oct 12, 2006, at 7:13 AM, Matt Chotin wrote:Re the Addendum, if there are folks out there interested in writing these kinds of books we’re certainly interested in hearing from you.  There are plenty of publishers out there looking to build Flex book lines… --- ADDENDUM: Another idea I had, because I know the documentation teamhas nothing to do, is to create some documents along the lines of"Flex For Java Developers", "Flex For PHP Developers", "Flex For ASPDevelopers", etc. You know, like, how it can help them. And have itdescribe where what they already know in their language will overlapin Flex and AS3.
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain



it seems good solution  for .net custom class object and Flex   http://blog.shrefler.net/?p=5     but Why Adobe dont support :@ .net Tim Hoff <[EMAIL PROTECTED]> wrote:  Hmmm, something about glass houses comes to mind. Matias, it's far more useful to make constructive comments. Concerning IIS configuration, there are plenty of resources online that can help you with this. I suggest Google. However, it sounds like your
 local path to the .Net framwork might be different than the framework path on the server. That's all I can offer since this really isn't related to Flex.Cheers,Tim Hoff--- In [EMAIL PROTECTED]ups.com, "Matias Nicolas Sommi" <[EMAIL PROTECTED]..> wrote:>> Tim, it's a joke, please don't hungry! I know that its only a simple code,> and the best practices don't match with the article purpuoses.> > 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED]..>:> >> > In this page say "flex and NET don't play well together"... after I readed> > the "ASP NET" code, I think that this flex programmer (who write the doc)> > don't play well with .NET... :P> > PD: I don't play very well with the english, sorry.> > --> > Matías Nicolás Sommi> >> >
 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:> > >> > > Hi Sajid,> > >> > > Datasets returned from .Net aren't natively recognized by Flex. To> > > solve this, you can either use a stored procedure with FOR XML AUTO, or cast> > > your dataset to a class. Here is a casting example:> > >> > > http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1> > >> > >> > > -TH> > >> > > P.S. Yes, WebOrb allows you to return datasets.> > >> > > --- In [EMAIL PROTECTED]ups.com, Sajid Hussain >> > > wrote:> > > >> > > > Hi to all .> >
 > > I am new to flex Development ,I am stuck with following concepts> > > >> > > > I have one webservice method who is returning DataSet ,What will be> > > the best way to retrive Datafrom it I m getting player parsing error> > > >> > > > Is necceasry to get Data as Custom Objects from .net to flex> > > > I saw one example whos is getting data ftom .net but giving customs to> > > Objects ..> > > > How we will bind Custom Objects attributes with Flex ??> > > > Is there any way to get .net DataTable to Flex> > > >> > > > plz suggest me help withour weborb...> > > > Please do reply ..> > > > Thanks> > > >> > > > __> > > > Do You
 Yahoo!?> > > > Tired of spam? Yahoo! Mail has the best spam protection around> > > > http://mail. yahoo.com> > > >> > >> > > > > >> >> > > -- > Matías Nicolás Sommi> 
	

	
		Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business.

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Problems with styles of type Class (embedded assets)

2006-10-12 Thread genuinexeal
Hello there,

The styles used by Flex components can be specified either as
properties of a component (i.e. "paddingTop") or - even better -
inside a 

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain



HI to all ...     hmm Thanks Guyz ... Matías Nicolás Sommi that links seems good but missing Flex code :) ,infact I read one article in Andrew Stopford's Weblog  at  http://weblogs.asp.net/astopford/articles/106476.aspx its about flex 1.5 but ur given  link code and his structure is same ,but the problem which I have ... how I will deal my custom class objecs from .net to flex   could u give me one sample code of that accesing autthors class object in flex 2?        What is Json? its about serlization flex and .net    www.json.org,   with .net  http://www.newtonsoft.com/products/json/     I have two more questions   Cant we
 write application like weborb ?  Flourine Remoting objects  howo they works with flex 2 ?                       Tim Hoff <[EMAIL PROTECTED]> wrote:  Hmmm, something about glass houses comes to mind. Matias, it's far more useful to make constructive comments. Concerning IIS configuration, there are plenty of resources online that can help you with this. I suggest Google.
 However, it sounds like your local path to the .Net framwork might be different than the framework path on the server. That's all I can offer since this really isn't related to Flex.Cheers,Tim Hoff--- In [EMAIL PROTECTED]ups.com, "Matias Nicolas Sommi" <[EMAIL PROTECTED]..> wrote:>> Tim, it's a joke, please don't hungry! I know that its only a simple code,> and the best practices don't match with the article purpuoses.> > 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED]..>:> >> > In this page say "flex and NET don't play well together"... after I readed> > the "ASP NET" code, I think that this flex programmer (who write the doc)> > don't play well with .NET... :P> > PD: I don't play very well with the english, sorry.> > --> > Matías Nicolás Sommi>
 >> > 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:> > >> > > Hi Sajid,> > >> > > Datasets returned from .Net aren't natively recognized by Flex. To> > > solve this, you can either use a stored procedure with FOR XML AUTO, or cast> > > your dataset to a class. Here is a casting example:> > >> > > http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1> > >> > >> > > -TH> > >> > > P.S. Yes, WebOrb allows you to return datasets.> > >> > > --- In [EMAIL PROTECTED]ups.com, Sajid Hussain >> > > wrote:> > > >> > > > Hi to
 all .> > > > I am new to flex Development ,I am stuck with following concepts> > > >> > > > I have one webservice method who is returning DataSet ,What will be> > > the best way to retrive Datafrom it I m getting player parsing error> > > >> > > > Is necceasry to get Data as Custom Objects from .net to flex> > > > I saw one example whos is getting data ftom .net but giving customs to> > > Objects ..> > > > How we will bind Custom Objects attributes with Flex ??> > > > Is there any way to get .net DataTable to Flex> > > >> > > > plz suggest me help withour weborb...> > > > Please do reply ..> > > > Thanks> > > >> > > > __> > >
 > Do You Yahoo!?> > > > Tired of spam? Yahoo! Mail has the best spam protection around> > > > http://mail. yahoo.com> > > >> > >> > > > > >> >> > > -- > Matías Nicolás Sommi> 
	
		Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business.

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain



HI to all ...     hmm Thanks Guyz ... Matías Nicolás Sommi that links seems good but missing Flex code :) ,infact I read one article in Andrew Stopford's Weblog  at  http://weblogs.asp.net/astopford/articles/106476.aspx its about flex 1.5 but ur given  link code and his structure is same ,but the problem which I have ... how I will deal my custom class objecs from .net to flex   could u give me one sample code of that accesing autthors class object in flex 2?        What is Json? its about serlization flex and .net  but I dint get    www.json.org,   with .net  http://www.newtonsoft.com/products/json/     but right now I think its
 beettor to work with SP ,which returns XML .could we encrypt our xml ,I mean security issue ?           I have two more questions   Cant we write application like weborb ?  Flourine Remoting objects  howo they works with flex 2 ?          I am realy desperate to learn Flex so Have lot of questins :)              Tim Hoff <[EMAIL PROTECTED]> wrote:  Hmmm, something about glass houses comes to mind. Matias, it's far more useful to make constructive comments. Concerning IIS configuration, there are plenty of resources online that can help you with this. I suggest Google. However, it sounds like your local path to the .Net framwork might be different than the framework path on the server. That's all I can offer since this really isn't related to Flex.Cheers,Tim Hoff--- In [EMAIL PROTECTED]ups.com, "Matias Nicolas Sommi" <[EMAIL PROTECTED]..> wrote:>> Tim, it's a joke, please don't hungry! I know that its only a simple code,> and the best practices don't match with the article purpuoses.> > 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED]..>:> >> > In this page say "flex and NET don't
 play well together"... after I readed> > the "ASP NET" code, I think that this flex programmer (who write the doc)> > don't play well with .NET... :P> > PD: I don't play very well with the english, sorry.> > --> > Matías Nicolás Sommi> >> > 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:> > >> > > Hi Sajid,> > >> > > Datasets returned from .Net aren't natively recognized by Flex. To> > > solve this, you can either use a stored procedure with FOR XML AUTO, or cast> > > your dataset to a class. Here is a casting example:> > >> > > http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1> > >> > >> > > -TH> > >> >
 > P.S. Yes, WebOrb allows you to return datasets.> > >> > > --- In [EMAIL PROTECTED]ups.com, Sajid Hussain >> > > wrote:> > > >> > > > Hi to all .> > > > I am new to flex Development ,I am stuck with following concepts> > > >> > > > I have one webservice method who is returning DataSet ,What will be> > > the best way to retrive Datafrom it I m getting player parsing error> > > >> > > > Is necceasry to get Data as Custom Objects from .net to flex> > > > I saw one example whos is getting data ftom .net but giving customs to> > > Objects ..> > > > How we will bind Custom Objects attributes with Flex ??> > > > Is there any way to get .net DataTable to
 Flex> > > >> > > > plz suggest me help withour weborb...> > > > Please do reply ..> > > > Thanks> > > >> > > > __> > > > Do You Yahoo!?> > > > Tired of spam? Yahoo! Mail has the best spam protection around> > > > http://mail. yahoo.com> > > >> > >> > > > > >> >> > > -- > Matías Nicolás Sommi> 
		Stay in the know. Pulse on the new Yahoo.com.  Check it out. 

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] cropping image...with Copypixels

2006-10-12 Thread learner



hello ,
I am trying to do cropping of image which is dynamically assigned to a vbox componentand i have used following Code:var bd : BitmapData = new BitmapData(h,w);var m1 : Matrix = new Matrix();bd.draw
 (target, m1);var puzzlePieceBmp:BitmapData = new BitmapData(target.width,target.height);puzzlePieceBmp.copyPixels(bd, new Rectangle(x1,y1,h,w), new Point(0, 0));imageid.source = puzzlePieceBmp;this is not working properly, The cropped portion is not of desired height and width, Can any body suggest me how the Rectangle parameter works for copypixesl method.
Its been more than 2 days i am working on this part and i tired searching all forum ..reading live docs about copypixels but no gain please guide me in this. Or any one can point me to some URL where the cropping in flex is demonstrated.
I would be very gratefulRegardsPS

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Howto create View Source

2006-10-12 Thread Teguh Mualim
Hi,

I know viewSourceURL="url" will turn on the "view source" right click.
But I have no idea how to create those SouceTree.swf and stuff.

How do I create those?

Thanks.

Teguh




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: DateField as itemEditor problem

2006-10-12 Thread Max

Any suggestion ???

Salud

Max




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Help with class

2006-10-12 Thread Teguh Mualim
Hi Katrik,

Looks like it's a permission/scoping (whatever the term is) issue.
Making it public might solve that.

Teguh

--- In flexcoders@yahoogroups.com, Karthik J <[EMAIL PROTECTED]> wrote:
>
> Hi,
> I am new to Flex2. I have a class called test.as. I am trying to 
create object in mxml script tag by 
> 
> var t:test = new test();
> 
> If I try to access any the prop of object itz throwing error.
> But if I define the same inside a function itz working fine.
> Why is it so? I cant use that object outside the function.
> Is there any solution or is it like that.
>  
> Regards,
> JK
>






--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Calling View Stats of one component from another

2006-10-12 Thread big_mad_kev
Hi,

Is it possible from one component to change the view state of another
component in the same main page i.e:



//I want an event in comp2 to change the view state of comp1



Not sure if this is doable

TIA

Kev




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Help with class

2006-10-12 Thread Paul Andrews





A bit more code might help. Did you declare the 
property as private? Is the function you're talking about a method of the 
class?
 
Paul

  - Original Message - 
  From: 
  Karthik 
  J 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, October 12, 2006 1:04 
  PM
  Subject: [flexcoders] Help with 
  class
  
  
  
  Hi,I am new to 
  Flex2. I have a class called test.as. I am trying to create object in mxml 
  script tag by var t:test = new test();If I try to access any 
  the prop of object itz throwing error.But if I define the same inside a 
  function itz working fine.Why is it so? I cant use that object outside the 
  function.Is there any solution or is it like that. 
  Regards,
  JK
  
  
  
  
  
  
  
  
   
   
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] [Flex2] DataGridItemRenderer displaying an image...

2006-10-12 Thread Thomas Rühl

Hello flexcoders,

please, can anyone provide me with an example of how to implement an 
ItemRenderer for a DataGrid that displays an image or icon for each 
row...? Unfortunately, there is no example within the Docs at all and I 
am constantly failing all the way long...

Cheers, Thomas

~

elysian. competence in media.
Inhaber Thomas Rühl

Herderstraße 30
60316 Frankfurt

Telefon +49 (0) 69 1381 5242
Mobil   +49 (0) 179 750 75 87
E-Mail  [EMAIL PROTECTED]
Web http://www.elysian.de

Projekte:
http://www.amenity.de
http://www.k750iforum.de

~



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Matias Nicolas Sommi



Hello, I fix the IIS configuration problem. Now I can consume NET webservice without problem.Thanks to all for the help.PD: for the IIS, isn't related to flex, and for that reason I marked with "off topic".
2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:













  



Hmmm, something about glass houses comes to mind.  Matias, it's far 
more useful to make constructive comments.  Concerning IIS 
configuration, there are plenty of resources online that can help 
you with this.  I suggest Google.  However, it sounds like your 
local path to the .Net framwork might be different than the 
framework path on the server.  That's all I can offer since this 
really isn't related to Flex.

Cheers,
Tim Hoff

--- In flexcoders@yahoogroups.com, "Matias Nicolas Sommi" 
<[EMAIL PROTECTED]> wrote:
>
> Tim, it's a joke, please don't hungry! I know that its only a 
simple code,
> and the best practices don't match with the article purpuoses.
> 
> 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED]>:
> >
> > In this page say "flex and NET don't play well together"... 
after I readed
> > the "ASP NET" code, I think that this flex programmer (who write 
the doc)
> > don't play well with .NET... :P
> > PD: I don't play very well with the english, sorry.
> > --
> > Matías Nicolás Sommi
> >
> > 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:
> > >
> > >   Hi Sajid,
> > >
> > > Datasets returned from .Net aren't natively recognized by 
Flex.  To
> > > solve this, you can either use a stored procedure with FOR XML 
AUTO, or cast
> > > your dataset to a class.  Here is a casting example:
> > >
> > > http://www.cflex.net/showFileDetails.cfm?
ObjectID=418&Object=File&ChannelID=1
> > >
> > >
> > > -TH
> > >
> > > P.S. Yes, WebOrb allows you to return datasets.
> > >
> > > --- In flexcoders@yahoogroups.com, Sajid Hussain 

> > > wrote:
> > > >
> > > > Hi to all .
> > > > I am new to flex Development ,I am stuck with following 
concepts
> > > >
> > > > I have one webservice method who is returning DataSet ,What 
will be
> > > the best way to retrive Datafrom it I m getting player parsing 
error
> > > >
> > > > Is necceasry to get Data as Custom Objects from .net to flex
> > > > I saw one example whos is getting data ftom .net but giving 
customs to
> > > Objects ..
> > > > How we will bind Custom Objects attributes with Flex ??
> > > > Is there any way to get .net DataTable to Flex
> > > >
> > > > plz suggest me help withour weborb...
> > > > Please do reply ..
> > > > Thanks
> > > >
> > > > __
> > > > Do You Yahoo!?
> > > > Tired of spam? Yahoo! Mail has the best spam protection 
around
> > > > http://mail. 
yahoo.com
> > > >
> > >
> > >  
> > >
> >
> 
> 
> -- 
> Matías Nicolás Sommi
>


  













-- Matías Nicolás Sommi

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: [Flex2] DataGridItemRenderer displaying an image...

2006-10-12 Thread Teguh Mualim
Hi Thomas,

You got to use itemRenderer.
For example


Teguh

--- In flexcoders@yahoogroups.com, Thomas Rühl <[EMAIL PROTECTED]> 
wrote:
>
> 
> Hello flexcoders,
> 
> please, can anyone provide me with an example of how to implement 
an 
> ItemRenderer for a DataGrid that displays an image or icon for 
each 
> row...? Unfortunately, there is no example within the Docs at all 
and I 
> am constantly failing all the way long...
> 
> Cheers, Thomas
> 
> ~
> 
> elysian. competence in media.
> Inhaber Thomas Rühl
> 
> Herderstraße 30
> 60316 Frankfurt
> 
> Telefon +49 (0) 69 1381 5242
> Mobil   +49 (0) 179 750 75 87
> E-Mail  [EMAIL PROTECTED]
> Web http://www.elysian.de
> 
> Projekte:
> http://www.amenity.de
> http://www.k750iforum.de
> 
> ~
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Howto create View Source

2006-10-12 Thread Hasan Otuome






Hi Teguh,

Are you using FlexBuilder? If so, there's a "publish source" button on
the toolbar. It creates the following structure:

- srcview (SourceTree, etc)
--->source (HTML pages of everything published)

HTH...=)

P E A C E

Hasan


Teguh Mualim wrote:


  
  Hi,
  
I know viewSourceURL="url" will turn on the "view source" right
click.
But I have no idea how to create those SouceTree.swf and stuff.
  
How do I create those?
  
Thanks.
  
Teguh
  
  
  




__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] Re: Help with class

2006-10-12 Thread karthik
Yes, I declared as private. That was the problem. Thanks for ur help...

--- In flexcoders@yahoogroups.com, "Paul Andrews" <[EMAIL PROTECTED]> wrote:
>
> A bit more code might help. Did you declare the property as private?
Is the function you're talking about a method of the class?
> 
> Paul
>   - Original Message - 
>   From: Karthik J 
>   To: flexcoders@yahoogroups.com 
>   Sent: Thursday, October 12, 2006 1:04 PM
>   Subject: [flexcoders] Help with class
> 
> 
>   Hi,
>   I am new to Flex2. I have a class called test.as. I am trying to
create object in mxml script tag by 
> 
>   var t:test = new test();
> 
>   If I try to access any the prop of object itz throwing error.
>   But if I define the same inside a function itz working fine.
>   Why is it so? I cant use that object outside the function.
>   Is there any solution or is it like that.
>
>   Regards,
>   JK
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Howto create View Source

2006-10-12 Thread Teguh Mualim
Hi Hasan,

Is that a FlexBuilder only functionality?
I am using FlashDevelop.  Wonder if there is a plugin or command line 
tool to do that.

Thanks for the quick response.

Teguh





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] problem loading images with URLLoader

2006-10-12 Thread godsman4amy



We are building a bookstore and have one bug we can't figure out. Some of the items' thumbnail images are missing. We wrote some code that tries to load the image, and if it doesn't load correctly it replaces it with a default image. The problem is, the function is returning the string before the image loads or fails and therefore isn't returning the right data. Any suggestions?I'll paste our current code below:The image tag:The function:private function sendImage(str:String):String{       var path:String = "assets/pic/";        var strUse:String = str;    // Looks to see if the image exists    var ldr:URLLoader = new URLLoader();    ldr.addEventListener(IOErrorEvent.IO_ERROR, imgFailed);    ldr.addEventListener(Event.COMPLETE, imgCompleted) function imgFailed (e:IOErrorEvent):void { strUse = "defaultITM.jpg";    }    function imgCompleted (e:Event):void{    strUse = str;    }     var url:String = "http://dev.ourserver.org/assets/pic/" + str;    var urlReq:URLRequest = new URLRequest(url);    ldr.load(urlReq);       return path + strUse;  } 

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Trice













The files are old, but they 
still work.  I had to modify JPGEncoder.as so that it would build 
correctly in Flex 2 release version.  I'd attach it to this post, but I 
don't have the source on this computer.
 
I'm not aware of any decoders.  You 
could always try to use a loader object to load the ByteArray using the 
loadBytes method, and then copy the bitmapData from it. Or you could look 
at the JPGEncoder class and reverse engineer it.  
 
-Andy
 
http://www.cynergysystems.com/blogs/page/andrewtrice





From: flexcoders@yahoogroups.com on 
behalf of nathanpdanielSent: Thu 10/12/2006 12:57 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: 
JPEGEncoder.as




I see these are image ENcoders, are there any image DEcoders 
available?--- In [EMAIL PROTECTED]ups.com, 
"Rich Tretola" <[EMAIL PROTECTED].> wrote:>> Thanks 
Darron,> > I had downloaded them from> http://labs.adobe.com/wiki/index.php/Source:getearlier 
but they were> very old files.> > Rich> > On 
10/11/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:> >> > 
They're in the Adoeb Labs SVN:> >> >> > http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/actionscript3/com/adobe/images/> 
>> > -d> >> > Rich Tretola wrote:> 
>> > Anyone have a new copy of JPEGEncoder.as?> 
>> > Rich*> > *> >> >> > 
> >> > > > -- > Rich 
Tretola> >> http://www.EverythingFlex.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___










Re: [flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-12 Thread Ralf Bokelberg
Hi Thomas,

i can't see a problem with that.

Generally though, if you implement multiple independant
frontcontrollers, you need to take care of the event names. Every
event ends up in the global singleton instance of the
CairngormEventDispatcher. If two events have the same name - boom, the
last one wins. You could add the FrontController's  qualified name to
avoid name clashes, e.g.

public static const EVENT_MY_EVENT : String =
"de.bokelberg.myapp.control.MyAppController.myevent";

Cheers,
Ralf.



On 10/11/06, Thomas Rühl <[EMAIL PROTECTED]> wrote:
>
> Hello flexcoders,
>
> I am currently building a complex Flex application that has several
> views which differ significantly and are to be displayed depending on
> the user type. This user type is being evaluated at runtime by a login
> component.
>
> For faster development, and the initial rather simple requirements to
> the application, I choose to implement everything into one single
> application, so for now everything is wired up using one
> FrontController, one Model, and so on...
>
> However, regarding some new requirements and therefore the explosiveness
> of the app, chances are pretty good that I will be forced to split
> things up into several single applications, that are dynamically loaded
> at runtime.
>
> The question is, can I start outsourcing things by implementing one
> FrontController for each of the once-to-be sub applications? Has anyone
> experience with this? Without reviewing Cairngorm, I think I might
> already run into problems having more than one FrontController instance...
>
> I'd like each of the sub systems to have its own event handling and
> Cairngorm structure in the background, befor I split it up completely...
>
> Cheerio, Thomas
>
> 
>
>Thomas Rühl
>Design, Programming & Concepts
>
>akitogo OHG
>Hanauer Landstrasse 188
>60314 Frankfurt
>
>Telefon +49 (0) 69 800 69 445
>Fax +49 (0) 69 800 69 449
>Mobil   +49 (0) 179 750 75 87
>E-Mail  [EMAIL PROTECTED]
>Web http://www.akitogo.com
>
> 
>
>
> --
> 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
>
>
>
>
>
>
>


-- 
Ralf Bokelberg <[EMAIL PROTECTED]>
Flex & Flash Consultant based in Cologne/Germany


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Re: getting panel title field to wrap

2006-10-12 Thread Jaime Bermudez



Hey Wayne,Thanks for the tip.  I just integrated the updateDisplayList code into my app and it works great!  Sorry it took so long to reply but I had lost the thread.Anyway, thanks again!- Jaime
On 10/10/06, wayne_badu_johnson <[EMAIL PROTECTED]> wrote:
Hi JamieYou may need to set the width/height of the textfield/ also checkthe headerHeight has enough room to display wrapped title:e.g.package{import mx.containers.Panel;public class CustomPanel extends Panel {
public function CustomPanel() {super();}override protected function createChildren():void {super.createChildren();}override protected function measure():void {
super.measure();}override protected function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void {super.updateDisplayList(unscaledWidth, unscaledHeight);
titleTextField.width = 120;titleTextField.height = 50;titleTextField.wordWrap = true;}}}CheersWayne--- In 
flexcoders@yahoogroups.com, "Jaime Bermudez"<[EMAIL PROTECTED]> wrote:>> Hey Flexcoders,>> I need my Panel title's to handle wrapping, so I subclass thePanel class
> and override the createChildren method where I set the wordWrapproperty of> the titleTextField to true (default is false).  The first time Iview the> Panel, I see no data.  The data displays subsequently  however.
Any ideas> on how to implement this in a different way?>> Thanks,>> Jaime>--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/<*> Your email settings:Individual Email | Traditional
<*> To change settings online go to:http://groups.yahoo.com/group/flexcoders/join(Yahoo! ID required)<*> To change settings via email:
mailto:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]
<*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-12 Thread Thomas Rühl

Thanks Ralf, that's a great idea, I'll do so :)

This seems a more transparent solution to me than starting to use 
ApplicationDomains in the middle of things.

I am totally excited of how the project will look like in the end...

Cheerio, Thomas



   Thomas Rühl
   Design, Programming & Concepts

   akitogo OHG
   Hanauer Landstrasse 188
   60314 Frankfurt

   Telefon +49 (0) 69 800 69 445
   Fax +49 (0) 69 800 69 449
   Mobil   +49 (0) 179 750 75 87
   E-Mail  [EMAIL PROTECTED]
   Web http://www.akitogo.com




Ralf Bokelberg wrote:
> 
> 
> Hi Thomas,
> 
> i can't see a problem with that.
> 
> Generally though, if you implement multiple independant
> frontcontrollers, you need to take care of the event names. Every
> event ends up in the global singleton instance of the
> CairngormEventDispatcher. If two events have the same name - boom, the
> last one wins. You could add the FrontController's qualified name to
> avoid name clashes, e.g.
> 
> public static const EVENT_MY_EVENT : String =
> "de.bokelberg.myapp.control.MyAppController.myevent";
> 
> Cheers,
> Ralf.
> 
> On 10/11/06, Thomas Rühl <[EMAIL PROTECTED] 
> > wrote:
>  >
>  > Hello flexcoders,
>  >
>  > I am currently building a complex Flex application that has several
>  > views which differ significantly and are to be displayed depending on
>  > the user type. This user type is being evaluated at runtime by a login
>  > component.
>  >
>  > For faster development, and the initial rather simple requirements to
>  > the application, I choose to implement everything into one single
>  > application, so for now everything is wired up using one
>  > FrontController, one Model, and so on...
>  >
>  > However, regarding some new requirements and therefore the explosiveness
>  > of the app, chances are pretty good that I will be forced to split
>  > things up into several single applications, that are dynamically loaded
>  > at runtime.
>  >
>  > The question is, can I start outsourcing things by implementing one
>  > FrontController for each of the once-to-be sub applications? Has anyone
>  > experience with this? Without reviewing Cairngorm, I think I might
>  > already run into problems having more than one FrontController 
> instance...
>  >
>  > I'd like each of the sub systems to have its own event handling and
>  > Cairngorm structure in the background, befor I split it up completely...
>  >
>  > Cheerio, Thomas
>  >
>  > 
>  >
>  > Thomas Rühl
>  > Design, Programming & Concepts
>  >
>  > akitogo OHG
>  > Hanauer Landstrasse 188
>  > 60314 Frankfurt
>  >
>  > Telefon +49 (0) 69 800 69 445
>  > Fax +49 (0) 69 800 69 449
>  > Mobil +49 (0) 179 750 75 87
>  > E-Mail [EMAIL PROTECTED] 
>  > Web http://www.akitogo.com 
>  >
>  > 
>  >
>  >
>  > --
>  > 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
>  >
>  >
>  >
>  >
>  >
>  >
>  >
> 
> -- 
> Ralf Bokelberg <[EMAIL PROTECTED] 
> >
> Flex & Flash Consultant based in Cologne/Germany
> 
> 


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Libby
I just installed Flex 2 on WebSphere 6. While doing the lessons in the
introductory tutorial, I keep see the message above in the server log.
Has anyone else see this, what does it mean, and how do I get rid of it? 

Thanks,
Libby




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Flex Documentation Team - Showing Related Technology

2006-10-12 Thread jrunrandy
Hi Judah,
I was not an original member of the Flex team so can't really comment 
on valid comparisons for dataprovider. I see where you're coming from, 
though and perhaps one of the developers can chime in.

As far as server-specific stuff, it might be best to keep it on the web 
(the Flex Developer Center or flex.org, for example), since new server 
releases/features can break the doc examples. Also, as Matt Chotin 
said, this could be an opportunity for someone to write a third-party 
book.

HTH
Randy Nielsen
Flex Documentation Manager





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: AS3 substitute for UIObject.destroyObject() ?

2006-10-12 Thread leo4beer
Thanks, will try this instead

--- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote:
>
> removeChild() or removeChildAt(), which UIComponent inherits from
> DisplayObjectContainer.
> 
>  
> 
> - Gordon
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of leo4beer
> Sent: Wednesday, October 11, 2006 5:49 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] AS3 substitute for UIObject.destroyObject() ?
> 
>  
> 
> Hi, I'm migrating code from Flex 1.5 to Flex 2.
> I've noticed the UIObject.destroyObject() no longer exists in AS3
> 
> What should I use instead?
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread Tom Ruggles
Hi João,

I am unable to reproduce this behavior using assorted methods of 
inserting the new item.  Can you provide more details on exactly how 
you are inserting, what your object looks like, how your destination 
is configured, etc?  I paid close attention to this specific 
scenario throughout the 2.0 development cycle so I am very curious 
how to reproduce it.

Thank you.
Tom Ruggles
FDS QA

--- In flexcoders@yahoogroups.com, João Fernandes 
<[EMAIL PROTECTED]> wrote:
>
> Hi there,
> 
>  
> 
> I have a datagrid binded to an ArrayCollection which is filled by 
a DS
> destination. 
> 
> When I add an item and commit, my datagrid ID column doesn't get 
updated but
> if I check the value in my ArrayCollection, the ID property is 
correctly
> updated.
> 
>  
> 
> If I sort my datagrid, the new value shows up. 
> 
>  
> 
> This doesn't happen to clients who are connected to the same 
destination.
> They see the right behaviour.
> 
>  
> 
> Any thoughts?
> 
>  
> 
> Thanks,
> 
>  
> 
> João Fernandes
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain



Could u telll ...what was the problem ??Matias Nicolas Sommi <[EMAIL PROTECTED]> wrote:  Hello, I fix the IIS configuration problem. Now I can consume NET webservice without problem.Thanks to all for the help.PD: for the IIS, isn't related to flex, and for that reason I marked with "off topic".   2006/10/11, Tim Hoff <[EMAIL PROTECTED]com>:Hmmm, something about glass houses comes to mind. Matias, it's far more useful to make constructive comments. Concerning IIS configuration, there are plenty of resources online that can help you with this. I suggest Google. However, it sounds like your local path to the .Net framwork might be different than the framework path on the server. That's all I can offer since this really isn't related to Flex.Cheers,Tim Hoff--- In [EMAIL PROTECTED]ups.com, "Matias Nicolas Sommi" <[EMAIL PROTECTED].> wrote:>> Tim, it's a joke, please don't hungry! I know that its only a simple code,> and the best practices don't match with the article purpuoses.> > 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED].>:>
 >> > In this page say "flex and NET don't play well together"... after I readed> > the "ASP NET" code, I think that this flex programmer (who write the doc)> > don't play well with .NET... :P> > PD: I don't play very well with the english, sorry.> > --> > Matías Nicolás Sommi> >> > 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:  > > >> > > Hi Sajid,> > >> > > Datasets returned from .Net aren't natively recognized by Flex. To> > > solve this, you can either use a stored procedure with FOR XML AUTO, or cast> > > your dataset to a class. Here is a casting example:> > >> > > http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1> > >> > >> > > -TH> > >> > > P.S. Yes, WebOrb allows you to return datasets.> > >> > > --- In [EMAIL PROTECTED]ups.com, Sajid Hussain > > > wrote:> > > >> > > > Hi to all .> > > > I am new to flex Development ,I am stuck with following concepts> > > >> > > > I have one webservice method who is returning DataSet ,What will be> > > the best way to retrive Datafrom it I m getting player parsing error> > > >> > > > Is necceasry to get Data as Custom Objects from .net to flex> > > > I saw one example whos is
 getting data ftom .net but giving customs to> > > Objects ..> > > > How we will bind Custom Objects attributes with Flex ??> > > > Is there any way to get .net DataTable to Flex> > > >> > > > plz suggest me help withour weborb...> > > > Please do reply ..> > > > Thanks> > > >> > > > __> > > > Do You Yahoo!?> > > > Tired of spam? Yahoo! Mail has the best spam protection around> > > > http://mail. yahoo.com> > > >> > >> > > > > >> >> > > -- > Matías Nicolás Sommi>  -- Matías Nicolás Sommi
		Do you Yahoo!? Everyone is raving about the  all-new Yahoo! 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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] LabelFunction on DataGrid column wiping out Value

2006-10-12 Thread Mike Anderson
Hello All,

I have an editable DataGrid - and one particular column contains
currency values.

With that said, I have a LabelFunction applied to this particular column
- and when the Grid populates, all the values show up properly
formatted($23.95 for example).

BUT, whenever I click inside the Cell containing the currency value, the
number disappears altogether - and when the Cell loses focus, it shows
$0.00

Is there anything I am doing wrong?  If you'd like me to post code, I
can easily do that.  But I figure, this incident should hopefully spark
some replies - assuming this has happened to others?

Thanks in advance for all your help,

Mike


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [flexcoders] Re: [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread João Fernandes












Hi Tom,

 

I’m using CF and CF
generated assembler files for my CRUD. I’m in fact replacing  CF inserts/updates/deletes
by SAP webservices calls which do basically the same. 

SAP return all fields as
CHAR and I first thought that was the problem, having a string as the key but
when replacing in my VO (AS3 & CFC) to number the problem persisted. They I
watched for any conflict/message from the dataservice and saw that in fact my
arraycollection was with the true new ID value but the datagrid didn’t
get notified. 

 

If you need any further
information just ask.

 

My destination is: 

 



 

 

 

  

 

 

 

 

    pt.cofina.intranet.service.dataservice.sap.ZREGISTOSAssembler

    request

    true

    intranet

     

     

     

 

    0

   


 





false    

 true

 false




 

 

 

 

João Fernandes



 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Ruggles
Sent: quinta-feira, 12 de Outubro
de 2006 16:08
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: [FDS]
DataGrid not updated when ArrayCollection is updated from sync



 







Hi João,

I am unable to reproduce this behavior using assorted methods of 
inserting the new item. Can you provide more details on exactly how 
you are inserting, what your object looks like, how your destination 
is configured, etc? I paid close attention to this specific 
scenario throughout the 2.0 development cycle so I am very curious 
how to reproduce it.

Thank you.
Tom Ruggles
FDS QA

--- In [EMAIL PROTECTED]ups.com,
João Fernandes 
[EMAIL PROTECTED]..> wrote:
>
> Hi there,
> 
> 
> 
> I have a datagrid binded to an ArrayCollection which is filled by 
a DS
> destination. 
> 
> When I add an item and commit, my datagrid ID column doesn't get 
updated but
> if I check the value in my ArrayCollection, the ID property is 
correctly
> updated.
> 
> 
> 
> If I sort my datagrid, the new value shows up. 
> 
> 
> 
> This doesn't happen to clients who are connected to the same 
destination.
> They see the right behaviour.
> 
> 
> 
> Any thoughts?
> 
> 
> 
> Thanks,
> 
> 
> 
> João Fernandes
>






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] Internationalization best practices

2006-10-12 Thread greg h



Sergey,

Following below are links for two great starting points.  

Please post back as you find others.  Also please post any hints
and tips about the lessons you learn in internationalizing your
application.

  hth,

   g

Flex 2 Developer's Guide
CHAPTER 25: Localizing Flex Applications
http://livedocs.macromedia.com/flex/2/docs/0898.html

Internationalizing Flex 2 Applications
http://jeff.mxdj.com/internationalizing_flex_2_applications.htm
Part 1: Use of the ResourceBundle class
Part 2: Allowing run-time locale switching with the ResourceBundle class
Part 3: Loading locale specific XML at run-time.
Plus re: 3 related "Common Flex 2 compiler errors and known issues"
http://www.adobe.com/go/4a146409
174533, 175233, 174788

On 10/12/06, Sergey Kovalyov <[EMAIL PROTECTED]> wrote:
Hi All!Could you please share some approaches toward internationalization inFlex 2 applications? Any articles, tutorials and code samples arewelcome!Sergey.


__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] cropping image...with Copypixels

2006-10-12 Thread Andrew Trice












Instead of using copyPixels, try something
like this…  This function crops the bitmapData to the width and
height with respect to the center of the image.

 

public function centerAndCrop( bitmapData :
BitmapData, cWidth : Number, cHeight : Number ) : BitmapData {

  

  if(cWidth >
bitmapData.width) cWidth = bitmapData.width;

  if(cHeight >
bitmapData.height) cHeight = bitmapData.height;

  

  if(cWidth < 1 ||
cHeight < 1) return bitmapData

  

  var translateMatrix :
Matrix = new Matrix();

  

  var xOffset : Number
= -Math.abs((bitmapData.width - cWidth)/2);

  var yOffset : Number
= -Math.abs((bitmapData.height - cHeight)/2);

  

  translateMatrix.identity();

  translateMatrix.translate(xOffset,
yOffset);

  

  var returnBitmapData
: BitmapData = new BitmapData(cWidth, cHeight, true);

  

  returnBitmapData.draw(bitmapData,
translateMatrix);

  

  return
returnBitmapData;

    

}

 

Hope that helps.

 

-Andy

 



_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of learner
Sent: Thursday, October 12, 2006
3:37 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] cropping
image...with Copypixels



 









hello ,






I am trying to do cropping of image which is dynamically assigned to a
vbox component
and i have used following Code:

var bd : BitmapData = new BitmapData(h,w);
var m1 : Matrix = new Matrix();
bd.draw (target, m1);
var puzzlePieceBmp:BitmapData = new BitmapData(target.width,target.height);
puzzlePieceBmp.copyPixels(bd, new Rectangle(x1,y1,h,w), new
Point(0, 0));
imageid.source = puzzlePieceBmp;


this is not working properly, The cropped portion is not of desired height and
width, Can any body suggest me how the Rectangle parameter works for copypixesl
method. 
Its been more than 2 days i am working on this part and i tired searching all
forum ..reading live docs about copypixels but no gain 
please guide me in this. Or any one can point me to some URL where the cropping
in flex is demonstrated. 
I would be very grateful
Regards
PS








__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] binding to an element of an array (Flex 1.5)

2006-10-12 Thread dgigon




Hi everyone,

I saw in the documentation that one can't bind to elements of an arrays.
Indeed, it seems that something like  does nothing.

I searched through the mailing list archive and made some tests myself, but couldn't find
something really simple.

- The first step seems to put : 
        "someArray.replaceItemAt(1, item)" instead of "someArray[1] = item"
        The reason is that it will make someArray dispatch a "modelChanged" event.

- I tried several things, including using mx:Model or mx:Binding tags to make the linkage, 
but then I doesn't work, and I couldn't find anyhting better than :
        "someArray.addEventListener("modelChanged", this);"
With an event handling function that does the binding.

Although it is working, it looks a bit dirty. I hope there is some way to do it without any actionscript lines,
just like the other bindings.


- Here is a little example of something that I took as a starting example. What can be done to make it work ?




        
        
        



Thanks,
Damien
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Tom Ruggles
Hi Libby,

We are unaware of any cases of Flex causing this warning.  What are 
you doing when it occurs?

Thanks,
Tom Ruggles
FDS QA

--- In flexcoders@yahoogroups.com, "Libby" <[EMAIL PROTECTED]> wrote:
>
> I just installed Flex 2 on WebSphere 6. While doing the lessons in 
the
> introductory tutorial, I keep see the message above in the server 
log.
> Has anyone else see this, what does it mean, and how do I get rid 
of it? 
> 
> Thanks,
> Libby
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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




Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Rich Tretola



The ones at the Adobe lab from the link Darron provided work fine without any changes.Richhttp://www.everythingflex.comOn 10/12/06, 
Andrew Trice <[EMAIL PROTECTED]> wrote:














The files are old, but they 
still work.  I had to modify JPGEncoder.as so that it would build 
correctly in Flex 2 release version.  I'd attach it to this post, but I 
don't have the source on this computer.
 
I'm not aware of any decoders.  You 
could always try to use a loader object to load the ByteArray using the 
loadBytes method, and then copy the bitmapData from it. Or you could look 
at the JPGEncoder class and reverse engineer it.  
 
-Andy
 
http://www.cynergysystems.com/blogs/page/andrewtrice






From: flexcoders@yahoogroups.com on 
behalf of nathanpdanielSent: Thu 10/12/2006 12:57 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: 
JPEGEncoder.as




I see these are image ENcoders, are there any image DEcoders 
available?--- In flexcoders@yahoogroups.com, 
"Rich Tretola" <[EMAIL PROTECTED]> wrote:>> Thanks 
Darron,> > I had downloaded them from> http://labs.adobe.com/wiki/index.php/Source:getearlier
 
but they were> very old files.> > Rich> > On 
10/11/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:> >> > 
They're in the Adoeb Labs SVN:> >> >> > 
http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/actionscript3/com/adobe/images/> 
>> > -d> >> > Rich Tretola wrote:> 
>> > Anyone have a new copy of JPEGEncoder.as?> 
>> > Rich*> > *> >> >> > 
> >> > > > -- > Rich 
Tretola> > http://www.EverythingFlex.com>
 













-- Rich Tretolahttp://www.EverythingFlex.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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Flex Documentation Team - Showing Related Technology

2006-10-12 Thread greg h



Maybe a working sample app for each server technology stack?  For
newbies to:  a) know their config works; and, b) pick apart and
learn from.

I think Adobe did a good job providing ColdFusion developers sample
apps and corresponding how-to articles.  e.g. On support lists
like this one, I have pointed several newbies to this Ben Forta article
and sample app on Flex and remoting:
www.adobe.com/devnet/flex/articles/coldfusionflex_part3.html

We have had similar support requests for a Java sample app and as yet I
don't know of any.  (Except one using FDS.)  And then as
dorkie dork ... err, I mean Judah ... mentions we also need one each
for .NET and PHP, etc.

I agree with Randy that with these types of core resources it is "best to keep it on the web" in "the Flex Developer Center".

Regarding Matt's suggestion, umm, it's October.  And how many Flex
2 books have gone to print so far?  Besides, though I can provide
others a link to a bookseller, there is still the whole hassle and
delay in actually getting the book.

hth,

g

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: Datagrid Checkbox binding to selectedItems?

2006-10-12 Thread Tracy Spratt












Well, you can programmatically update the
selectedItems array from the checkbox item renderer.  I am not sure what the
interaction  of this will be with the default multi-select behavior, row
highlighting, etc.

 

I think you will just have to try it.

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of haravallabhan
Sent: Thursday, October 12, 2006
12:32 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Datagrid
Checkbox binding to selectedItems?



 







Try using itemRenderer inside a DataGridColumn. inside
which you can 
add a check box.
like
...


>


>

--- In [EMAIL PROTECTED]ups.com,
"wayneposner" ...> 
wrote:
>
> Howdy all...
> 
> Is it possible to have a checkbox in a datagrid act as the method for 
> making multiple selections (updating the selectedItems array)?
> 
> I want to add a column of checkboxes to my datagrid that is not bound 
> to any data provider and use the checkboxes to simply select multiple 
> items.
> 
> 
> Thanks!
> Wayne
>






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Daniel Wabyick

While I don't have Websphere experience, this sounds suspiciously like 
an error message that happens when a servlet or filter tries to set an 
HTTP response header for a response that has already been written to.

I would inspect your web-app configuration and make sure you don't have 
any extra servlet filters on the Flex servlets. That's my best guess at 
least.

-Daniel




Tom Ruggles wrote:
>
> Hi Libby,
>
> We are unaware of any cases of Flex causing this warning. What are
> you doing when it occurs?
>
> Thanks,
> Tom Ruggles
> FDS QA
>
> --- In flexcoders@yahoogroups.com 
> , "Libby" <[EMAIL PROTECTED]> wrote:
> >
> > I just installed Flex 2 on WebSphere 6. While doing the lessons in
> the
> > introductory tutorial, I keep see the message above in the server
> log.
> > Has anyone else see this, what does it mean, and how do I get rid
> of it?
> >
> > Thanks,
> > Libby
> >
>
>  



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] RemoteObject only accesses, cannot set

2006-10-12 Thread Brian Dunphy



Hello,Just starting to use RemoteObjects, but for some reason my RemoteObject can only retrieve information, it can't use any of the mutator methods in my class.My Java class is as follows:package com.testing.pojos
;import java.io.Serializable;public class HelloWorldMessage implements Serializable{    private String message;        public HelloWorldMessage()    {        this.message = "Hello World";
    }        public String getMessage()    {        return message;    }        public void setMessage(String newMessage)    {        this.message = newMessage;    }}
My RemoteObject in MXML is as follows:                
            My destination definition is as follows:                     com.testing.pojos.HelloWorldMessage           application         
                  I can access the getMessage method just fine (and it returns the appropriate message), however when I call setMessage("new message"), it doesn't persist my message, it simply returns the old "Hello World!" message again.
Something I'm doing wrong?Thanks,Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] CFC to AS3 Class Mapping

2006-10-12 Thread Derrick Grigg
I was having a great deal of difficultly getting my CFC classes to map
properly to my AS3 classes. I found a few posts here that dealt with
the issue but nothing seemed to work properly. 

I discovered one key thing that made it all work. In the AS3 class
file I needed two Remote Class mappings and they had to be in the
correct order. 

[RemoteClass(alias="cftest.com.uservo")]
[RemoteClass(alias="cftest.com.UserVO")]

The all lower case one had to be first, the camel case one second.
Once I did that everything worked perfectly.

I have come across a few snippets here and there in my searching that
mentioned this problem, a few mentioned it was a problem with CF that
should be fixed. 

Does anyone know if this problem has been resolved yet? I am running
version 7,0,2,142559  of CF.

Derrick




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] AccordionHeader

2006-10-12 Thread Maciek Wciślik
Hi list,

I want to have custom Accordion header (found Waldo Smith old 
implementation - doesn't work in new Flex2) with two controls in it - 
Button which controls Accordion behavior (as normal AccordionHeader), 
and CheckBox to do something else.
Does anybody did somethinglike that?
br
maciek


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [flexcoders] Problems with styles of type Class (embedded assets)

2006-10-12 Thread Gordon Smith













    .treeNoIcons

    {
    disclosure-open-icon: ClassReference(null);

    disclosure-close-icon: ClassReference(null);
    }




- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of genuinexeal
Sent: Thursday, October 12, 2006
12:39 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Problems
with styles of type Class (embedded assets)



 







Hello there,

The styles used by Flex components can be specified either as
properties of a component (i.e. "paddingTop") or - even better -
inside a 

[flexcoders] LabelFunctions for display purposes only correct??

2006-10-12 Thread Mike Anderson
Hello All,

This is a continuation of my previous thread, regarding my
CurrencyFormatter wiping out my "UnitPrice" value in a DataGrid cell.

I figured out the problem, and that was, my ValueObject containing the
particular Variable is cast as a NUMBER.  This is for obvious reasons,
since it's a Dollar Value and needs to be used in calculations.

The CurrencyFormatter must return a STRING in order to append a "$" to
the beginning of it.  Once the CurrencyFormatter performs it's magic,
the DataGrid no longer knows how to handle the display - therefore, it
wipes out the value.

After converting my "UnitPrice" Variable to a STRING, now the value
stays put within the DataGrid.  BUT, now I really can't use this value
in calculations.

I was under the impression, that LabelFunctions were strictly for
DISPLAY purposes only, and that they didn't actually CHANGE the actual
contents contained in the Cell.

Am I missing something here?  I am getting closer now, but I just need
to figure out how to handle these different Data Types.

Thanks again for all your help,

Mike


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread klumikaze
It would appear I somehow figured this out on my own... I have a
feeling it's that I needed to implement the Remote class
(java.rmi.Remote)? Am I right?

Thanks, hope this helps somebody else that's stumped on RemoteObjects.

Brian

--- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> wrote:
>
> Hello,
> 
> Just starting to use RemoteObjects, but for some reason my
RemoteObject can
> only retrieve information, it can't use any of the mutator methods in my
> class.
> 
> My Java class is as follows:
> 
> package com.testing.pojos;
> 
> import java.io.Serializable;
> 
> public class HelloWorldMessage implements Serializable
> {
> private String message;
> 
> public HelloWorldMessage()
> {
> this.message = "Hello World";
> }
> 
> public String getMessage()
> {
> return message;
> }
> 
> public void setMessage(String newMessage)
> {
> this.message = newMessage;
> }
> }
> 
> My RemoteObject in MXML is as follows:
> 
>  id="roHelloWorld">
>  fault="showFault(event)"/>
> 
> 
> 
> My destination definition is as follows:
> 
> 
>   
> com.testing.pojos.HelloWorldMessage
> application
>   
>
> 
>   
> 
> 
> I can access the getMessage method just fine (and it returns the
appropriate
> message), however when I call setMessage("new message"), it doesn't
persist
> my message, it simply returns the old "Hello World!" message again.
> 
> Something I'm doing wrong?
> 
> Thanks,
> 
> Brian Dunphy
>






--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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




Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Matias Nicolas Sommi



He!, the first problem was "metabase permission" on the iis, and I download a microsoft tool to fix it (aspnet_iisreg or something like that). I run the command for give to the iis to read acces to the metabase. After this, I've got an extrange error, it's like the iis was reading an extrange symbol in the asmx file. But after reinit, the problem was fixed :S...
The only thing that I don't know is: when i pass more than one parameter from flex to a webservice, the Array class in flex separate the arguments with comma, and NET receive it in only one string comma separated... this is the normal way or something was wrong?
Thanks. If someone has problems with asp webservice/IIS please ask me, if I can, I help.Bye.2006/10/12, Sajid Hussain <[EMAIL PROTECTED]
>:












  



Could u telll ...what was the problem ??Matias Nicolas Sommi <[EMAIL PROTECTED]>
 wrote:  Hello, I fix the IIS configuration problem. Now I can consume NET webservice without problem.
Thanks to all for the help.PD: for the IIS, isn't related to flex, and for that reason I marked with "off topic".   2006/10/11, Tim Hoff <
[EMAIL PROTECTED]>:Hmmm, something about glass houses comes to mind. Matias, it's far 
more useful to make constructive comments. Concerning IIS configuration, there are plenty of resources online that can help you with this. I suggest Google. However, it sounds like your local path to the .Net framwork might be different than the 
framework path on the server. That's all I can offer since this really isn't related to Flex.Cheers,Tim Hoff--- In 
flexcoders@yahoogroups.com, "Matias Nicolas Sommi" <[EMAIL PROTECTED]> wrote:>> Tim, it's a joke, please don't hungry! I know that its only a simple code,> and the best practices don't match with the article purpuoses.
> > 2006/10/11, Matias Nicolas Sommi <[EMAIL PROTECTED]>:>
 >> > In this page say "flex and NET don't play well together"... after I readed> > the "ASP NET" code, I think that this flex programmer (who write the doc)> > don't play well with .NET... :P
> > PD: I don't play very well with the english, sorry.> > --> > Matías Nicolás Sommi> >> > 2006/10/11, Tim Hoff <[EMAIL PROTECTED]>:  > > >
> > > Hi Sajid,> > >> > > Datasets returned from .Net aren't natively recognized by Flex. To> > > solve this, you can either use a stored procedure with FOR XML 
AUTO, or cast> > > your dataset to a class. Here is a casting example:> > >> > > 
http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1> > >> > >> > > -TH> > >> > > P.S. Yes, WebOrb allows you to return datasets.
> > >> > > --- In flexcoders@yahoogroups.com, Sajid Hussain 
> > > wrote:> > > >> > > > Hi to all .> > > > I am new to flex Development ,I am stuck with following concepts> > > >> > > > I have one webservice method who is returning DataSet ,What 
will be> > > the best way to retrive Datafrom it I m getting player parsing error> > > >> > > > Is necceasry to get Data as Custom Objects from .net to flex> > > > I saw one example whos is
 getting data ftom .net but giving customs to> > > Objects ..> > > > How we will bind Custom Objects attributes with Flex ??> > > > Is there any way to get .net DataTable to Flex
> > > >> > > > plz suggest me help withour weborb...> > > > Please do reply ..> > > > Thanks> > > >> > > > __
> > > > Do You Yahoo!?> > > > Tired of spam? Yahoo! Mail has the best spam protection around> > > > 
http://mail. yahoo.com> > > >> > >> > > > > >> >
> > > -- > Matías Nicolás Sommi>  
-- Matías Nicolás Sommi
		Do you Yahoo!? Everyone is raving about the 
 all-new Yahoo! Mail.
  













-- Matías Nicolás Sommi

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Making StyleSheets and StyleManger work together.

2006-10-12 Thread Lance Linder










Something
that I am finding a real pain in my Flex 2 projects is trying to apply
StyleSheets to my text. I have found some information on fixing the problems
with the TextArea component and I am in the process of applying these to the
Text component as well.

 

I
think my biggest gripe right now is that I want to combine all my styles into
one css file so I don’t have component styles in one location and html
text styles in another. Also I don’t really want to load my html text
styles at runtime yet I really want to keep them in their own style sheet and
not embedded in something like  a String tag in an MXML file.

 

So
my idea was to put all my html text styles in the css style sheet that styles
the components. Then at runtime loop through the CSSStyleDeclarations in the
StyleManager and build a new flex.text.StyleSheet to apply to my components
that use html text. Problem is that it looks like the StyleManager is storing
all this info in a static private variable called ‘selectors’ so
there doesn’t seem to be any way to loop this info without branching this
class in order to make that variable public.

 

Since
I really don’t want to start branching any of the mx components for any
reason I am hoping that someone on this list has an idea that I haven’t thought
of yet?

 

Adobe
really needs to address this in a future version of Flex as right now having
multiple text styles on one block of text is excruciatingly painful to make
work yet it is such a basic feature of the Flash player for so long now.

 

Thanks!

Lance

 

 




__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] Am I expecting too much from data binding?

2006-10-12 Thread Marlon Moyer
I've got an xml file that I read in as e4x format and create an
interface from using repeaters.  The interface looks like this:

Accordion - Policy
   Accordion - Division
  TabNavigator - State
 Repeating Rows of classcodes
 Button to add a class code to the current state

I've got the logic written so that once the button is pushed, a class
code is added in the correct section of the xml document.  This alone
will not spark a change in the interface.  I explicitly have to reset
the value of the top databinding variable (an xmllistcollection) to a
new xmllistcollection based on the e4x xml variable.  This has the
nasty side effect of resetting the interface to accordion 0, accordion
0, tab 0.

Is this the way it works, or am I missing something

Thanks



-- 
Marlon


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Shannon Hicks





Hey, I'm interested in trying to build out something 
(in flex 2) that can accept an MJpeg stream. Basically, it's a stream of 
one jpg image after another. This would be useful to potentially a bunch of 
people who want to show their network webcams via 
Flash/Flex2.
 
Anyone a tad more experienced interested in helping me 
with this?
 
Shan


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Rich 
TretolaSent: Thursday, October 12, 2006 11:51 AMTo: 
flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] Re: 
[flexcoders] Re: JPEGEncoder.as


The ones at the Adobe lab from the link Darron provided work fine without any 
changes.Richhttp://www.everythingflex.com
On 10/12/06, Andrew 
Trice  
wrote:

  
  
  The files are old, but they 
  still work.  I had to modify JPGEncoder.as so that it would build 
  correctly in Flex 2 release version.  I'd attach it to this post, but I 
  don't have the source on this computer.
   
  I'm not aware of any decoders.  You 
  could always try to use a loader object to load the ByteArray using the 
  loadBytes method, and then copy the bitmapData from it. Or you could look 
  at the JPGEncoder class and reverse engineer it.  
   
  -Andy
   
  http://www.cynergysystems.com/blogs/page/andrewtrice
  
  
  
  
  
  From: [EMAIL PROTECTED]ups.com on behalf of 
  nathanpdanielSent: Thu 10/12/2006 12:57 AMTo: [EMAIL PROTECTED]ups.comSubject: 
  [flexcoders] Re: JPEGEncoder.as
  
  
  
  
  I see these are image ENcoders, are there any image DEcoders 
  available?--- In [EMAIL PROTECTED]ups.com, "Rich Tretola" 
  <[EMAIL PROTECTED]> wrote:>> Thanks 
  Darron,> > I had downloaded them from> http://labs.adobe.com/wiki/index.php/Source:getearlier 
  but they were> very old files.> > Rich> > On 10/11/06, Darron J. Schall <[EMAIL PROTECTED]> 
  wrote:> >> > They're in the Adoeb Labs SVN:> 
  >> >> > http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/actionscript3/com/adobe/images/> 
  >> > -d> >> > Rich Tretola wrote:> 
  >> > Anyone have a new copy of JPEGEncoder.as?> 
  >> > Rich*> > *> 
  >> >> > > >> > > 
  > -- > Rich Tretola> > 
  http://www.EverythingFlex.com>-- Rich Tretolahttp://www.EverythingFlex.com 

--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 
10/11/2006
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 10/11/2006
 


[flexcoders] Article on setting up an Apache/Tomcat/FDS Server

2006-10-12 Thread Douglas McCarroll
Hi All,

I just posted this article:

http://www.brightworks.com/flex_ability/?p=15

Might be helpful to some...

Douglas




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] where to place crossdomain.xml

2006-10-12 Thread sreedhar reddy



Hi ,     I have installed my Flex application on Tomcat\webapps\, and I am trying to access it from Remote Machine which is located in a different domain. The problem is, I can access the application using "http://domainname:8080/application/bin/application.html", but the functionality is not working(just it is displaying the Flex application home page).      I have also read article about crossdomain.xml, and tried by placing crossdomain.xml in Tomcat5.5\webapps\application\ , but that is not affected the functionality.     It would be appreciated if sombody helps me to fix this problem.                    Regards,  SreedharThanks & Regards,Sreedhar 
	

	
		 
Find out what India is talking about on  - Yahoo! Answers India  
Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] Re: DateField as itemEditor problem

2006-10-12 Thread Shannon Hicks





I got it to (mostly) work...
 

 
Shan
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of MaxSent: 
Thursday, October 12, 2006 3:30 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: DateField as 
itemEditor problem


Any suggestion ???SaludMax
--No virus found in this incoming message.Checked by AVG 
Free Edition.Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 
10/11/2006
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 10/11/2006
 


[flexcoders] Re: custom outlined pie labels

2006-10-12 Thread Pan Troglodytes



For those who might find this thread useful:  for each (var labelElement:UIComponent in labelElements)    labelElement.filters =  [new DropShadowFilter(1, 0, 0xFF, 1, 0, 0),  new DropShadowFilter(1, 90, 0xFF, 1, 0, 0),
  new DropShadowFilter(1, 180, 0xFF, 1, 0, 0),  new DropShadowFilter(1, 270, 0xFF, 1, 0, 0)];will take care of multiple series in your piechart.  Otherwise, only the first will get the outline.
On 9/28/06, Pan Troglodytes <[EMAIL PROTECTED]> wrote:
I'm making an outline around my pie labels using the following code for the pie chart:public function creationComplete():void{  UIComponent(
labelElements[0]).filters =
    [new DropShadowFilter(1, 0, 0xFF, 1, 0, 0),    new DropShadowFilter(1, 90, 0xFF, 1, 0, 0),    new DropShadowFilter(1, 180, 0xFF, 1, 0, 0),    new DropShadowFilter(1, 270, 0xFF, 1, 0, 0)];
}Is there anything about this that's not kosher?  I suppose I could put a check in for labelElements.length != 0, but this isn't really for general purpose use.  Are there any situations in a pie chart where this could blow up?
-- Jason

-- Jason

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread Carson Hager





This has nothing to do with 
crossdomain.xml.
 
 
Carson

 Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.com Email:  
[EMAIL PROTECTED]Office:  
866-CYNERGYMobile: 1.703.489.6466
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of sreedhar 
reddySent: Thursday, October 12, 2006 10:17 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] where to place 
crossdomain.xml



Hi ,
 
I have installed my Flex application on Tomcat\webapps\, and I am 
trying to access it from Remote Machine which is located in a different domain. 
The problem is, I can access the application using 
"http://domainname:8080/application/bin/application.html", but 
the functionality is not working(just it is displaying the Flex application home 
page). 
 
I have also read article about crossdomain.xml, and tried by placing 
crossdomain.xml in Tomcat5.5\webapps\application\ , but that is not 
affected the functionality.
 
It would be appreciated if sombody helps me to fix this problem.
 
 
 
 
 
 
Regards,
SreedharThanks & Regards,Sreedhar


Find out what India is talking about on - Yahoo! 
Answers India Send FREE SMS to your friend's mobile from Yahoo! 
Messenger Version 8. Get 
it NOW

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



RE: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Trice












I’d recommend using the socket class to
stream the data to your application as a ByteArray.  Then use the loader class’s
loadBytes method to render the images as you get them.  Sorry, I’m not familiar
with MJpeg, so I can’t get much more specific.   

 

-Andy

 



_

Andrew Trice

Cynergy Systems, Inc.

http://www.cynergysystems.com

 

Blog: http://www.cynergysystems.com/blogs/page/andrewtrice

Email: [EMAIL PROTECTED]

Office: 866-CYNERGY 

 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Shannon Hicks
Sent: Thursday, October 12, 2006
1:32 PM
To: flexcoders@yahoogroups.com
Subject: RE: [Junk E-Mail - LOW]
Re: [flexcoders] Re: JPEGEncoder.as



 







Hey, I'm interested in trying to build out
something (in flex 2) that can accept an MJpeg stream. Basically, it's a
stream of one jpg image after another. This would be useful to potentially a
bunch of people who want to show their network webcams via Flash/Flex2.

 

Anyone a tad more experienced interested
in helping me with this?

 

Shan

 







From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rich Tretola
Sent: Thursday, October 12, 2006
11:51 AM
To: [EMAIL PROTECTED]ups.com
Subject: [Junk E-Mail - LOW] Re:
[flexcoders] Re: JPEGEncoder.as



The ones at the Adobe lab from the link Darron
provided work fine without any changes.

Rich
http://www.everythingflex.com





On 10/12/06, Andrew
Trice 
wrote: 







The
files are old, but they still work.  I had to modify JPGEncoder.as so
that it would build correctly in Flex 2 release version.  I'd attach it to
this post, but I don't have the source on this computer.





 





I'm not aware of any decoders. 
You could always try to use a loader object to load the ByteArray using the
loadBytes method, and then copy the bitmapData from it. Or you could look
at the JPGEncoder class and reverse engineer it.  





 





-Andy





 





http://www.cynergysystems.com/blogs/page/andrewtrice









 















From: [EMAIL PROTECTED]ups.com on behalf of nathanpdaniel
Sent: Thu 10/12/2006 12:57 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re:
JPEGEncoder.as













I see these are image
ENcoders, are there any image DEcoders 
available?

--- In [EMAIL PROTECTED]ups.com,
"Rich Tretola" <[EMAIL PROTECTED]> 
wrote:
>
> Thanks Darron,
> 
> I had downloaded them from
> http://labs.adobe.com/wiki/index.php/Source:getearlier
but they were
> very old files.
> 
> Rich
> 
> On 10/11/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:
> >
> > They're in the Adoeb Labs SVN:
> >
> >
> > 
http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/a
ctionscript3/com/adobe/images/
> >
> > -d
> >
> > Rich Tretola wrote:
> >
> > Anyone have a new copy of JPEGEncoder.as?
> >
> > Rich*
> > *
> >
> >
> > 
> >
> 
> 
> 
> -- 
> Rich Tretola
> 
> http://www.EverythingFlex.com
>
















-- 
Rich Tretola

http://www.EverythingFlex.com 



 



--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 10/11/2006

 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date: 10/11/2006






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Dustin Mercer












I am working on websphere 6 and get this
message as well.  I get this whenever I call the mxml application (whether it’s
a fresh compile or cached version).  Does flex gzip the swf before it sends it
out?  I have seen this exact same message when using gzip.  Just a thought.

 

Dustin
 Mercer

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Ruggles
Sent: Thursday, October 12, 2006
9:18 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex 2 -
WARNING: Cannot set header. Response already committed.



 







Hi Libby,

We are unaware of any cases of Flex causing this warning. What are 
you doing when it occurs?

Thanks,
Tom Ruggles
FDS QA

--- In [EMAIL PROTECTED]ups.com,
"Libby" ...> wrote:
>
> I just installed Flex 2 on WebSphere 6. While doing the lessons in 
the
> introductory tutorial, I keep see the message above in the server 
log.
> Has anyone else see this, what does it mean, and how do I get rid 
of it? 
> 
> Thanks,
> Libby
>






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Calculating Values on The Fly

2006-10-12 Thread Akash










Hi,

 

   I have 2 comboBoxes, a
text area and a label. Whenever a change occurs in any of the above said controls
the resultant value of the label should come accordingly on the fly. Can anybody
Tell me some example of this kind.

 

Looking Forward to your cooperation,

 

Akash




__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___




Disclaimer

This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom it is addressed.  If you have received this communication in error, please immediately notify the [EMAIL PROTECTED] and destroy the original message. The recipient should check this email and any attachments for the presence of viruses.  Ness has taken every reasonable precaution to minimize this risk, and accepts no liability for any damage caused by any virus transmitted in this email.  Ness reserves the rights to monitor and review the content of all messages sent to or from this E-mail address, and store them on the Ness E-mail system.


RE: [flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread Jeff Vroom












It sounds like you are using a “request”
scoped remote object on the server side so for each invocation, it creates a
new instance.  Add application inside of your
destination tag’s properties tag.  The other option is “session”
which is one per flex session… typically one per client.

 

Jeff

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of klumikaze
Sent: Thursday, October 12, 2006
10:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
RemoteObject only accesses, cannot set



 







It would appear I somehow figured this out on my
own... I have a
feeling it's that I needed to implement the Remote class
(java.rmi.Remote)? Am I right?

Thanks, hope this helps somebody else that's stumped on RemoteObjects.

Brian

--- In [EMAIL PROTECTED]ups.com,
"Brian Dunphy" ...> wrote:
>
> Hello,
> 
> Just starting to use RemoteObjects, but for some reason my
RemoteObject can
> only retrieve information, it can't use any of the mutator methods in my
> class.
> 
> My Java class is as follows:
> 
> package com.testing.pojos;
> 
> import java.io.Serializable;
> 
> public class HelloWorldMessage implements Serializable
> {
> private String message;
> 
> public HelloWorldMessage()
> {
> this.message = "Hello World";
> }
> 
> public String getMessage()
> {
> return message;
> }
> 
> public void setMessage(String newMessage)
> {
> this.message = newMessage;
> }
> }
> 
> My RemoteObject in MXML is as follows:
> 
> "com.testing.pojos.HelloWorldMessage"
> id="roHelloWorld">
> 
> fault="showFault(event)"/>
> 
> 
> 
> My destination definition is as follows:
> 
> 
> 
> com.testing.pojos.HelloWorldMessage
> application
> 
> 
> 
> 
> 
> 
> I can access the getMessage method just fine (and it returns the
appropriate
> message), however when I call setMessage("new message"), it
doesn't
persist
> my message, it simply returns the old "Hello World!" message
again.
> 
> Something I'm doing wrong?
> 
> Thanks,
> 
> Brian Dunphy
>






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread Matias Nicolas Sommi



You must put the crossdomain.xml in the root directory, in your case: http://domainname:8080/Remember that this file must be placed in the machine who you want to access from flex.
2006/10/12, sreedhar reddy <[EMAIL PROTECTED]>:













  



Hi ,     I have installed my Flex application on Tomcat\webapps\, and I am trying to access it from Remote Machine which is located in a different domain. The problem is, I can access the application using "
http://domainname:8080/application/bin/application.html", but the functionality is not working(just it is displaying the Flex application home page). 
     I have also read article about crossdomain.xml, and tried by placing crossdomain.xml in Tomcat5.5\webapps\application\ , but that is not affected the functionality.     It would be appreciated if sombody helps me to fix this problem.
                    Regards,  SreedharThanks & Regards,Sreedhar 
	

	
		 
Find out what India is talking about on  - Yahoo! Answers India 
 
Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. 
Get it NOW
  













-- Matías Nicolás Sommi

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Alternative image file formats

2006-10-12 Thread Peterson, Chris
I would like to be able to show .tiff images, as well as possibly word
doc's or adobe acrobat files, inside my flex app.  Is this possible
without a server-side converter (which I think would be too slow for my
purposes)?

Chris


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread hank williams



As Carson said, I dont think this problem has anything to do with crossdomain issues. It sounds like a regular access of a flex application on a tomcat server. I dont see the crossdomain issues.Hank
On 10/12/06, Matias Nicolas Sommi <[EMAIL PROTECTED]> wrote:



You must put the crossdomain.xml in the root directory, in your case: http://domainname:8080/Remember that this file must be placed in the machine who you want to access from flex.
2006/10/12, sreedhar reddy <[EMAIL PROTECTED]>:














  



Hi ,     I have installed my Flex application on Tomcat\webapps\, and I am trying to access it from Remote Machine which is located in a different domain. The problem is, I can access the application using "
http://domainname:8080/application/bin/application.html", but the functionality is not working(just it is displaying the Flex application home page). 
     I have also read article about crossdomain.xml, and tried by placing crossdomain.xml in Tomcat5.5\webapps\application\ , but that is not affected the functionality.     It would be appreciated if sombody helps me to fix this problem.
                    Regards,  SreedharThanks & Regards,Sreedhar 
	

	
		 
Find out what India is talking about on  - Yahoo! Answers India 

 
Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. 

Get it NOW
  













-- Matías Nicolás Sommi






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Tom Ruggles
What about if you request the compiled swf directly?  Does your app 
make HTTPService or WebService requests?

--- In flexcoders@yahoogroups.com, "Dustin Mercer" 
<[EMAIL PROTECTED]> wrote:
>
> I am working on websphere 6 and get this message as well.  I get 
this
> whenever I call the mxml application (whether it's a fresh compile 
or
> cached version).  Does flex gzip the swf before it sends it out?  
I have
> seen this exact same message when using gzip.  Just a thought.
> 
>  
> 
> Dustin Mercer
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Tom Ruggles
> Sent: Thursday, October 12, 2006 9:18 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Flex 2 - WARNING: Cannot set header. 
Response
> already committed.
> 
>  
> 
> Hi Libby,
> 
> We are unaware of any cases of Flex causing this warning. What are 
> you doing when it occurs?
> 
> Thanks,
> Tom Ruggles
> FDS QA
> 
> --- In flexcoders@yahoogroups.com 
> , "Libby"  wrote:
> >
> > I just installed Flex 2 on WebSphere 6. While doing the lessons 
in 
> the
> > introductory tutorial, I keep see the message above in the 
server 
> log.
> > Has anyone else see this, what does it mean, and how do I get 
rid 
> of it? 
> > 
> > Thanks,
> > Libby
> >
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread Tom Ruggles
I see that you had application scope listed in your destination.  
Did you restart your web app after adding this?  

I was unable to reproduce your issue using your RO, destination and 
MXML on the FDS 2 GA build.

Tom Ruggles
FDS QA

--- In flexcoders@yahoogroups.com, "Jeff Vroom" <[EMAIL PROTECTED]> wrote:
>
> It sounds like you are using a "request" scoped remote object on 
the
> server side so for each invocation, it creates a new instance.  Add
> application inside of your destination tag's 
properties
> tag.  The other option is "session" which is one per flex 
session...
> typically one per client.
> 
>  
> 
> Jeff
> 
>  
> 
> 
> 
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of klumikaze
> Sent: Thursday, October 12, 2006 10:17 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: RemoteObject only accesses, cannot set
> 
>  
> 
> It would appear I somehow figured this out on my own... I have a
> feeling it's that I needed to implement the Remote class
> (java.rmi.Remote)? Am I right?
> 
> Thanks, hope this helps somebody else that's stumped on 
RemoteObjects.
> 
> Brian
> 
> --- In flexcoders@yahoogroups.com 
> , "Brian Dunphy"  wrote:
> >
> > Hello,
> > 
> > Just starting to use RemoteObjects, but for some reason my
> RemoteObject can
> > only retrieve information, it can't use any of the mutator 
methods in
> my
> > class.
> > 
> > My Java class is as follows:
> > 
> > package com.testing.pojos;
> > 
> > import java.io.Serializable;
> > 
> > public class HelloWorldMessage implements Serializable
> > {
> > private String message;
> > 
> > public HelloWorldMessage()
> > {
> > this.message = "Hello World";
> > }
> > 
> > public String getMessage()
> > {
> > return message;
> > }
> > 
> > public void setMessage(String newMessage)
> > {
> > this.message = newMessage;
> > }
> > }
> > 
> > My RemoteObject in MXML is as follows:
> > 
> >  > id="roHelloWorld">
> >  > fault="showFault(event)"/>
> > 
> > 
> > 
> > My destination definition is as follows:
> > 
> > 
> > 
> > com.testing.pojos.HelloWorldMessage
> > application
> > 
> > 
> > 
> > 
> > 
> > 
> > I can access the getMessage method just fine (and it returns the
> appropriate
> > message), however when I call setMessage("new message"), it 
doesn't
> persist
> > my message, it simply returns the old "Hello World!" message 
again.
> > 
> > Something I'm doing wrong?
> > 
> > Thanks,
> > 
> > Brian Dunphy
> >
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Calculating Values on The Fly

2006-10-12 Thread Clint Tredway



a simple solution is to create a function that is called on the change events of the combo boxes and set the text of the label to the selected Item of those combo boxes. I can create you a quick show and tell if you would like.. 
On 10/12/06, Akash <[EMAIL PROTECTED]> wrote:













  











Hi,

 

   I have 2 comboBoxes, a
text area and a label. Whenever a change occurs in any of the above said controls
the resultant value of the label should come accordingly on the fly. Can anybody
Tell me some example of this kind.

 

Looking Forward to your cooperation,

 

Akash







Disclaimer

This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom it is addressed.  If you have received this communication in error, please immediately notify the 
[EMAIL PROTECTED]ness.com and destroy the original message. The recipient should check this email and any attachments for the presence of viruses.  Ness has taken every reasonable precaution to minimize this risk, and accepts no liability for any damage caused by any virus transmitted in this email.  Ness reserves the rights to monitor and review the content of all messages sent to or from this E-mail address, and store them on the Ness E-mail system.


  













-- diabetic? http://www.diabetesforums.comAlbert Einstein - "It's not that I'm so smart, it's just that I stay with problems longer."

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Alternative image file formats

2006-10-12 Thread Darron J. Schall






With the ByteArray capability of Flash Player 9, "anything" is
possible.  Jim Cheng has an .xls parser that loads an .xls file, scans
it, and then displays the results in a data grid.  See here: 
http://www.psalterego.com/2006/05/17/parsing-excel-files-with-actionscript-30/

If you can find the documentation for the .tiff format, you can do the
same to convert it into bitmap data all in the Player.  Likewise, you
can read the bytes of a loaded .doc file and pull out the information
you want to display the contents in, say, a text area.

The solution really depends on your use case.  It might be smarter to
convert .tiff to .jpg on the server and pull that in directly instead
of trying to write a .tiff decoder.

-d

Peterson, Chris wrote:


  
  I would like to be able to show .tiff images, as well as possibly
word
doc's or adobe acrobat files, inside my flex app. Is this possible
without a server-side converter (which I think would be too slow for my
purposes)?
  
Chris
  
  
  



__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___




[flexcoders] Re: Calculating Values on The Fly

2006-10-12 Thread camlinaeizerous
http://www.adobe.com/2006/mxml"; layout="absolute">











not the best example but it works.

--- In flexcoders@yahoogroups.com, "Akash" <[EMAIL PROTECTED]> wrote:
>
> 
> Hi,
> 
>  
> 
>I have 2 comboBoxes, a text area and a label. Whenever a change
> occurs in any of the above said controls the resultant value of the
label
> should come accordingly on the fly. Can anybody Tell me some example
of this
> kind.
> 
>  
> 
> Looking Forward to your cooperation,
> 
>  
> 
> Akash
> 
> 
> 
> Disclaimer
> 
> This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom it is
addressed.  If you have received this communication in error, please
immediately notify the [EMAIL PROTECTED] and destroy the original message.
The recipient should check this email and any attachments for the
presence of viruses.  Ness has taken every reasonable precaution to
minimize this risk, and accepts no liability for any damage caused by
any virus transmitted in this email.  Ness reserves the rights to
monitor and review the content of all messages sent to or from this
E-mail address, and store them on the Ness E-mail system.
>




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] Alternative image file formats

2006-10-12 Thread Paul Spitzer
http://www.ee.cooper.edu/courses/course_pages/past_courses/EE458/TIFF/ 
... left over in my bookmarks from when I was experimenting with 
rendering TIFFs.


Darron J. Schall wrote:
> With the ByteArray capability of Flash Player 9, "anything" is 
> possible.  Jim Cheng has an .xls parser that loads an .xls file, scans 
> it, and then displays the results in a data grid.  See here:  
> http://www.psalterego.com/2006/05/17/parsing-excel-files-with-actionscript-30/
>
> If you can find the documentation for the .tiff format, you can do the 
> same to convert it into bitmap data all in the Player.  Likewise, you 
> can read the bytes of a loaded .doc file and pull out the information 
> you want to display the contents in, say, a text area.
>
> The solution really depends on your use case.  It might be smarter to 
> convert .tiff to .jpg on the server and pull that in directly instead 
> of trying to write a .tiff decoder.
>
> -d
>
> Peterson, Chris wrote:
>>
>> I would like to be able to show .tiff images, as well as possibly word
>> doc's or adobe acrobat files, inside my flex app. Is this possible
>> without a server-side converter (which I think would be too slow for my
>> purposes)?
>>
>> Chris
>>
>
>  



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Cairngorm commands - best practise

2006-10-12 Thread Tim Hoff
I see what you're saying Tom.  We just have different points of view 
concerning this matter.  The choice is whether you want to scatter 
the arguments throughout your code or scatter unnecessary references 
to the ModelLocator similarly.  The bottom line: if it works for 
you, that's all that really matters.  Thank you for the discourse.

-TH

--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> 
wrote:
>
> On Wednesday 11 October 2006 20:48, Tim Hoff wrote:
> > WTF, since when do Delagates know about the ModelLocator?  Tom, 
I'm
> > sorry to disagree with you here, 
> 
> Go right ahead and disagree :-)
> 
> > a proxy for a service call; a layer of abstraction to help
> > encapsulate the Commands. 
> 
> Delegates encapsulate commands ? It's the other way around - the 
Delegate hide 
> all the gubbins of how the command is run at the other end, and 
that for me 
> means passing an auth. token (username).
> 
> 
> > event. But I don't beleive that this is the intended best 
practice.
> > I think that events should only carry temporary data and the
> > ModelLocator (VO's) should hold persistant data. 
> 
> With you so far.
> 
> > the searchString is temporary, but is held in the VO because it
> > might be needed for user notification of a failed search attempt.
> > IMHO, Delegates shouldn't know about the ModelLocator at all and
> > Views should only know about the ModelLocator through binding.  
The
> > Commands should do all of the work.
> 
> But, but, but... either I scatter my requirement for the first 
argument to a 
> Remoteing call to be a particular string all over my code (in the 
VO and the 
> Command), or in one place (the Delegate). 
> I don't see the harm in binding my Delegate to a specific Model 
property as I 
> can't see us ever changing the security mechanism.
> 
> -- 
> Tom Chiverton
> Helping to quickly enhance interdependent segments
> 
> 
> 
> 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.
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] e4x and namespaces

2006-10-12 Thread Diego Guebel
Hi all,
I'm trying to read some nodes with e4x and was dealing with the syntax for  
the namespaces for a while without luck. I could read the node when it has  
only one namespace, but dont know how is the syntax when I have more

I have an xml like this:

http://schemas.xmlsoap.org/soap/envelope/";
xmlns="http://www.mydomain.com/myown/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>


iTunes 10 New Releases
http://phobos.apple.com/WebObjects/MZStore.woa/wa/
viewNewReleases?pageType=newReleases&id=1
iTunes Store: Today's 10 Newest 
Releases
en
Copyright 2006 Apple Computer, Inc.


Any clue?
Thanks, Diego.


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] FileReferenceList to a servlet

2006-10-12 Thread randomt2000
Is there anyone out there who has had luck sending multiple 
attachments, all-at-once, to a Servlet using FileReferenceList ?

I am trying to create an email like functionality where a user can 
browse to multiple files and send them as attachments. The best I have 
come up with is keeping multiple files in an form field array, added 
one at a time by a FileRefence.browse(). On the servlet side, they end 
up as a byte[].

I would rather use the FileReferenceList to allow multiple selections 
at once. But the FileReferenceList is an array of FileReference 
objects, and each one needs to have 'upload' called on it seperately.
Has anyone found away to do this in Flash 9 / Actionscript 3.0 ?

Thanks - Mike




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] my event isn't "sufficiently loaded to provide this information."

2006-10-12 Thread David Harris
This is a bit weird. (Every other time I have said this it's been me but...)

I have a custom event that I am broadcasting on a button click.

The Button is clicked, which then calls a function.

When I put a trace of the event.target I get the "The loading object
is not sufficiently loaded to provide this information." error.

I am not sure why this is happening as the target is fully loaded
before I click it.

Any one else seen this?


The below snippet causes this error for me. Do you see this error when
you run the below code?:

=


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










--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] re:Creating SVG xml from within flex

2006-10-12 Thread Jeff Tapper
nevermind, i figured it out shortly after hitting send...

[EMAIL PROTECTED] = colorGroup.selectedValue.toString();
[EMAIL PROTECTED] = "none";
path["@stroke-width"]= lineThickness.selectedLabel;

==
im creating a flex widget which converts flash player drawing api graphics 
into svg.  So far, this has gone well, but i hit an ugly snag.  it seems 
the svg spec uses "stroke-width" as the attribute to specify the width of a 
line, however, the flex compiler doesn't allow for hyphens in an attribute.

does any one know of a work around for this, either on the flex side 
(tricking the compiler into letting me add [EMAIL PROTECTED] 
lineThickness.selectedLabel) or on the SVG side (any other way to specify a 
lineWidth which doesnt involve a hyphenated attribute?

as always, any help greatly appreciated.



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Creating SVG xml from within flex

2006-10-12 Thread Jeff Tapper
im creating a flex widget which converts flash player drawing api graphics 
into svg.  So far, this has gone well, but i hit an ugly snag.  it seems 
the svg spec uses "stroke-width" as the attribute to specify the width of a 
line, however, the flex compiler doesn't allow for hyphens in an attribute.

does any one know of a work around for this, either on the flex side 
(tricking the compiler into letting me add [EMAIL PROTECTED] 
lineThickness.selectedLabel) or on the SVG side (any other way to specify a 
lineWidth which doesnt involve a hyphenated attribute?

as always, any help greatly appreciated.



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] why does labelFunction need an...

2006-10-12 Thread Clint Tredway
an empty second param?

I created a labelFunction for a datagrid column to format a date and i
got an error saying that the function expected 2 parameters but only
got 1. In the help docs inside FB, the 1 labelFunction example I found
only passed in 1 param... so why is it telling me it needs 2? I put an
param that is empty and the error went away. I am just curious as to
why this happened..

thanks

-- 
diabetic? http://www.diabetesforums.com
Albert Einstein - "It's not that I'm so smart, it's just that I stay
with problems longer."


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: why does labelFunction need an...

2006-10-12 Thread Doug Lowder



The signature for labelFunction uses an additional column parameter in the DataGrid and DataGridColumn classes.
See the following: http://livedocs.macromedia.com/flex/2/langref/mx/controls/listClasses/ListBase.html#labelFunction
--- In flexcoders@yahoogroups.com, "Clint Tredway" <[EMAIL PROTECTED]> wrote:>> an empty second param?> > I created a labelFunction for a datagrid column to format a date and i> got an error saying that the function expected 2 parameters but only> got 1. In the help docs inside FB, the 1 labelFunction example I found> only passed in 1 param... so why is it telling me it needs 2? I put an> param that is empty and the error went away. I am just curious as to> why this happened..> > thanks> > -- > diabetic? http://www.diabetesforums.com> Albert Einstein - "It's not that I'm so smart, it's just that I stay> with problems longer.">

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] why does labelFunction need an...

2006-10-12 Thread Jeff Tapper
it wants to pass you a reference to the dataGridColumn which is being 
rendered...

At 04:49 PM 10/12/2006, Clint Tredway wrote:

>an empty second param?
>
>I created a labelFunction for a datagrid column to format a date and i
>got an error saying that the function expected 2 parameters but only
>got 1. In the help docs inside FB, the 1 labelFunction example I found
>only passed in 1 param... so why is it telling me it needs 2? I put an
>param that is empty and the error went away. I am just curious as to
>why this happened..
>
>thanks
>
>--
>diabetic? http://www.diabetesforums.com
>Albert Einstein - "It's not that I'm so smart, it's just that I stay
>with problems longer."
>
>
>--
>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
>
>
>




--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Where to Download Eclipse 3.1.x?

2006-10-12 Thread Ronald Kinion





We're beginning the 
process here of migrating to Flex 2.  As part of that we are also switching 
our java development from an old version of IntelliJ (the people who control the 
purse strings won't pay for all the new licenses for intellij we would 
require--especially since they just dug deep into their pockets for new Flex2 
and Flex2 builder licenses).  I initially installed the Flex Builder 2 
standalone, thinking that would be all we needed.  It didn't take me too 
long to figure out there was no Java Development tools included.  
Doh.  
 
After pulling my 
hair out for a while I've figured out I need to do one of two things: Uninstall 
FB2, download Eclipse 3.1.2, then reinstall with FB2 as a plugin; or Download 
the JDT tools plugin into the standalone.  Searching the archives seems to 
indicate most people think the first option is the way to go, but my question 
then is, where do I download it?  Adobe doesn't provide any links and going 
to Eclipse.org I was only able to find 3.2.x versions, which the flex2 system 
requirements clearly state is not supported.  I did find a JbossIDE which 
purports to have Eclipse 3.1.2, but I'm a little leery of getting it after the 
previous experience.  Does anyone have a useful link or 
recommendations?  Or should I download the JDT stuff into FB2?  Would 
that just be all the plugins listed when I go to 'Help->Software 
Updates->Find and Install...' and select the Eclipse.org update 
site?
 
If someone can also 
point me to some tutorial or documentation on how to easily bundle up settings 
and plugins and share/install them among a development team that would also be a 
real help.  So far the 'copy-the-plugins-directory' approach we used with 
Intellij is looking very doubtful as a good solution.  
 
While I'm on 
the subject does anyone know of any useful plugins to install to ease the 
transition or duplicate intellij features?  I'm already looking at 
installing wpt and the fds plugin on the adobe flex exchange and I'd like to see 
if there are other good ones.
 
Thanks for all the 
help
-- Ronald Kinion Senior Web 
Developer, MIS Zones, Inc. 1102 15th Street SW, Suite 102 Auburn, WA  98001-6509 Phone: 253-205-3494 [EMAIL PROTECTED] www.zones.com 
We help lower your cost of IT procurement. 
  
Recipient of Microsoft Operational Excellence Award 
for 2006. IBM Premier Business Partner. Lenovo Premier Business 
Partner. HP 
Platinum Business Partner. Microsoft Large Account Reseller. 
2006 Minority Supplier of the 
Year, awarded by the Northwest Minority 
Business Council. Zones is a certified Minority Business Enterprise.
 
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Binding scroll position to the selected index

2006-10-12 Thread Daniel Wabyick

I would like to configure a List class so that it will automatically 
scroll to show the selected item whenever the selected index/item 
changes.  I can't see anyway to bind that using the standard List class, 
and it seems like I will have to subclass it in order to work.  Am I 
missing an easier solution?

Thanks,
-D
 


--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



Re: [flexcoders] why does labelFunction need an...

2006-10-12 Thread Clint Tredway



well, that helps. thanksOn 10/12/06, Jeff Tapper <[EMAIL PROTECTED]> wrote:













  



it wants to pass you a reference to the dataGridColumn which is being 
rendered...

At 04:49 PM 10/12/2006, Clint Tredway wrote:

>an empty second param?
>
>I created a labelFunction for a datagrid column to format a date and i
>got an error saying that the function expected 2 parameters but only
>got 1. In the help docs inside FB, the 1 labelFunction example I found
>only passed in 1 param... so why is it telling me it needs 2? I put an
>param that is empty and the error went away. I am just curious as to
>why this happened..
>
>thanks
>
>--
>diabetic? http://www.diabetesforums.com
>Albert Einstein - "It's not that I'm so smart, it's just that I stay
>with problems longer."
>
>
>--
>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
>
>
>


  













-- diabetic? http://www.diabetesforums.comAlbert Einstein - "It's not that I'm so smart, it's just that I stay with problems longer."

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Now Shipping: ActionScript 3.0 Cookbook – Solutions for Flash Platform and Flex Application Developers

2006-10-12 Thread greg h



fyi ... O'Reilly is now shipping:

ActionScript 3.0 Cookbook 
Solutions for Flash Platform and Flex Application Developers
By Joey Lott, Darron Schall, Keith Peters
http://www.oreilly.com/catalog/actscpt3ckbk/#top


__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tim Hoff
Hi Daniel,

On a click or change event you could use this:

myList.scrollToIndex(myList.selectedIndex);

-TH

--- In flexcoders@yahoogroups.com, Daniel Wabyick <[EMAIL PROTECTED]> wrote:
>
> 
> I would like to configure a List class so that it will automatically 
> scroll to show the selected item whenever the selected index/item 
> changes.  I can't see anyway to bind that using the standard List 
class, 
> and it seems like I will have to subclass it in order to work.  Am I 
> missing an easier solution?
> 
> Thanks,
> -D
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [flexcoders] Binding scroll position to the selected index

2006-10-12 Thread Tracy Spratt












It sounds like you are setting the selectedIndex
programmatically, so maybe you could use the valueCommit event to do:

valueCommit=”myList.verticalScrollPosition=myList.selectedIndex”

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Wabyick
Sent: Thursday, October 12, 2006
5:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Binding
scroll position to the selected index



 








I would like to configure a List class so that it will automatically 
scroll to show the selected item whenever the selected index/item 
changes. I can't see anyway to bind that using the standard List class, 
and it seems like I will have to subclass it in order to work. Am I 
missing an easier solution?

Thanks,
-D






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Daniel Wabyick

Ah, that was a good idea, but it doesn't work in my case.

The list is being filtered and the selectedItem is being set via other 
code. Thus the need to bind to selectedItem, as the "change" handler 
won't be called.

I should be able to whip something up fairly easily via a subclass ...

-D




Tim Hoff wrote:
>
> Hi Daniel,
>
> On a click or change event you could use this:
>
> myList.scrollToIndex(myList.selectedIndex);
>
> -TH
>
> --- In flexcoders@yahoogroups.com 
> , Daniel Wabyick <[EMAIL PROTECTED]> 
> wrote:
> >
> >
> > I would like to configure a List class so that it will automatically
> > scroll to show the selected item whenever the selected index/item
> > changes. I can't see anyway to bind that using the standard List
> class,
> > and it seems like I will have to subclass it in order to work. Am I
> > missing an easier solution?
> >
> > Thanks,
> > -D
> >
>
>  



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: mx_internal_uid and Tree issues

2006-10-12 Thread elleones63
--- In flexcoders@yahoogroups.com, "haravallabhan" <[EMAIL PROTECTED]>
wrote:
>
> Possible cause for this could be that you populate the tree with the 
> objects in the collection. try to get the property name in it. Its 

 The variable is used to hold the items. These items are added based
on the user's actions. The part that I don't understand in your answer
is how one is to "populate the tree" and to "get the property name in
it". We are simply adding to the variable from another variable the
items. Is this behavior related to reference-counting and garbage
collection? Thanks. very confused...

/AC


> should solve the problem. Internal Id are generated by flex when a list 
> of objects are accumulated in a list for that mater a collection.
> 
> --- In flexcoders@yahoogroups.com, "elleones63"  wrote:
> >
> > This is driving me insane. I have a XMLListCollection variable that 
> > provides data to a Tree. Variable is dynamically allocated and 
> > [Bindable] at start-up; it is updated at random times. We have 
> noticed 
> > that a node named "mx_internal_uid" gets added to a parent node every 
> > time that we add data to this variable. Of course, this odd-looking 
> > node shows up in the tree! I just can't get rid of this behavior. 
> What 
> > is going on? Can someone explain it to me?!? Thanks.
> > 
> > /AC
> >
>





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



[flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tim Hoff



Ok, subclass yes.  Or, you could watch for the change of the selectedIndex with the Observe tag.  Alex Uhlmann has a good article here:
http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm#more 
-TH--- In flexcoders@yahoogroups.com, Daniel Wabyick <[EMAIL PROTECTED]> wrote:>> > Ah, that was a good idea, but it doesn't work in my case.> > The list is being filtered and the selectedItem is being set via other > code. Thus the need to bind to selectedItem, as the "change" handler > won't be called.> > I should be able to whip something up fairly easily via a subclass ...> > -D> > > > > Tim Hoff wrote:> >> > Hi Daniel,> >> > On a click or change event you could use this:> >> > myList.scrollToIndex(myList.selectedIndex);> >> > -TH> >> > --- In flexcoders@yahoogroups.com > > , Daniel Wabyick daniel@ wrote:> > >> > >> > > I would like to configure a List class so that it will automatically> > > scroll to show the selected item whenever the selected index/item> > > changes. I can't see anyway to bind that using the standard List> > class,> > > and it seems like I will have to subclass it in order to work. Am I> > > missing an easier solution?> > >> > > Thanks,> > > -D> > >> >> >>

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Rotate Items in HorizontalList

2006-10-12 Thread bulldog65mustang
Is it possible to rotate the items in a HorizontalList?  I have used
the mx:Sequence and mx:AnimateProperty tag to move through the items
one at a time, but once it reaches the end its done.  I need to
continually cycle the items in the List.





--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



RE: [flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tracy Spratt












Did you try the commitValue event?

 

Tracy

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff
Sent: Thursday, October 12, 2006
6:23 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Binding
scroll position to the selected index



 







Ok,
subclass yes.  Or, you could watch for the change of the selectedIndex
with the Observe tag.  Alex Uhlmann has a good article here:

http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm#more 

-TH

--- In [EMAIL PROTECTED]ups.com,
Daniel Wabyick <[EMAIL PROTECTED]> wrote:
>
> 
> Ah, that was a good idea, but it doesn't work in my case.
> 
> The list is being filtered and the selectedItem is being set via other 
> code. Thus the need to bind to selectedItem, as the "change"
handler 
> won't be called.
> 
> I should be able to whip something up fairly easily via a subclass ...
> 
> -D
> 
> 
> 
> 
> Tim Hoff wrote:
> >
> > Hi Daniel,
> >
> > On a click or change event you could use this:
> >
> > myList.scrollToIndex(myList.selectedIndex);
> >
> > -TH
> >
> > --- In [EMAIL PROTECTED]ups.com

> > 40yahoogroups.com>, Daniel Wabyick
daniel@ wrote:
> > >
> > >
> > > I would like to configure a List class so that it will
automatically
> > > scroll to show the selected item whenever the selected
index/item
> > > changes. I can't see anyway to bind that using the standard List
> > class,
> > > and it seems like I will have to subclass it in order to work.
Am I
> > > missing an easier solution?
> > >
> > > Thanks,
> > > -D
> > >
> >
> >
>






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Rotate Items in HorizontalList

2006-10-12 Thread Dustin Mercer












Do you need to only have one rotating at a
time, rotating after one another and then starting again, or do they all need
to rotate at once?  What is the exact behavior you want to see?  One thing you
can try is setting the repeatCount on your sequence effect.  That should make the
sequence start again, but I am not sure if that’s exactly what you are
looking for.

 

Dustin
 Mercer

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bulldog65mustang
Sent: Thursday, October 12, 2006
3:48 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rotate Items
in HorizontalList



 







Is it possible to rotate the items in a
HorizontalList? I have used
the mx:Sequence and mx:AnimateProperty tag to move through the items
one at a time, but once it reaches the end its done. I need to
continually cycle the items in the List.






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Bourne






Hi Shannon, 

I currently do almost exactly what you are after. I have a socket class
that I use to stream the binary data which I then split into the image
packets and then decode the jpegs via the Loader.loadBytes method. We
use a custom protocol with normal jpegs as the data, so for mjpeg you
would probably need to write a decoder to split the mjpeg stream into
the single jpeg frames and then use the Loader to decode them. 

HTH, 
Andrew


Shannon Hicks wrote:

  

  
  Hey, I'm interested in
trying to build out something (in flex 2) that can accept an MJpeg
stream. Basically, it's a stream of one jpg image after another. This
would be useful to potentially a bunch of people who want to show their
network webcams via Flash/Flex2.
   
  Anyone a tad more
experienced interested in helping me with this?
   
  Shan
  
  
  From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On
Behalf Of Rich Tretola
  Sent: Thursday, October 12, 2006 11:51 AM
  To: flexcoders@yahoogroups.com
  Subject: [Junk E-Mail - LOW] Re: [flexcoders] Re:
JPEGEncoder.as
  
  
  
  The ones at the Adobe lab from the link Darron provided work fine
without any changes.
  
Rich
  http://www.everythingflex.com
  
  
  
  On 10/12/06, Andrew Trice 
wrote:
  


The
files are old, but they still work.  I had to modify JPGEncoder.as so
that it would build correctly in Flex 2 release version.  I'd attach it
to this post, but I don't have the source on this computer.
 
I'm not aware of any
decoders.  You could always try to use a loader object to load the
ByteArray using the loadBytes method, and then copy the bitmapData from
it. Or you could look at the JPGEncoder class and reverse engineer it. 

 
-Andy
 
http://www.cynergysystems.com/blogs/page/andrewtrice





 
From: [EMAIL PROTECTED]ups.com
on behalf of nathanpdaniel
Sent: Thu 10/12/2006 12:57 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re: JPEGEncoder.as







I see these are image ENcoders, are there any image DEcoders 
available?

--- In [EMAIL PROTECTED]ups.com,
"Rich Tretola" <[EMAIL PROTECTED]> 
wrote:
>
> Thanks Darron,
> 
> I had downloaded them from
> http://labs.adobe.com/wiki/index.php/Source:getearlier
but they were
> very old files.
> 
> Rich
> 
> On 10/11/06, Darron J. Schall <[EMAIL PROTECTED]> wrote:
> >
> > They're in the Adoeb Labs SVN:
> >
> >
> > 
http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/a
ctionscript3/com/adobe/images/
> >
> > -d
> >
> > Rich Tretola wrote:
> >
> > Anyone have a new copy of JPEGEncoder.as?
> >
> > Rich*
> > *
> >
> >
> > 
> >
> 
> 
> 
> -- 
> Rich Tretola
> 
> http://www.EverythingFlex.com
>







  
  
  
  
  
-- 
Rich Tretola

  http://www.EverythingFlex.com
  

  --
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date:
10/11/2006
  
  
  
  --
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.2/472 - Release Date:
10/11/2006
   



__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___




RE: [flexcoders] Where to Download Eclipse 3.1.x?

2006-10-12 Thread Aurélien BLOND












You can find old Eclipse
releases on this web site: http://archive.eclipse.org

 



-- 

Aurélien BLOND

 













De :
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Ronald Kinion
Envoyé : jeudi 12 octobre
2006 23:30
À :
flexcoders@yahoogroups.com
Objet : [flexcoders] Where to
Download Eclipse 3.1.x?











 

[…]

 

After pulling my hair out for a while I've figured
out I need to do one of two things: Uninstall FB2, download Eclipse 3.1.2, then
reinstall with FB2 as a plugin; or Download the JDT tools plugin into the
standalone.  Searching the archives seems to indicate most people think
the first option is the way to go, but my question then is, where do I download
it?  Adobe doesn't provide any links and going to Eclipse.org I was only
able to find 3.2.x versions, which the flex2 system requirements clearly state
is not supported.  I did find a JbossIDE which purports to have Eclipse
3.1.2, but I'm a little leery of getting it after the previous
experience.  Does anyone have a useful link or recommendations?  Or
should I download the JDT stuff into FB2?  Would that just be all the
plugins listed when I go to 'Help->Software Updates->Find and Install...'
and select the Eclipse.org update site?





 





[…]





-- 
Ronald Kinion 
Senior Web Developer, MIS 
Zones, Inc. 
1102 15th
  Street SW, Suite 102 
 Auburn,
 WA  98001-6509 
Phone: 253-205-3494 
Ronald.Kinion@zones.com

www.zones.com 

We help lower your cost of IT procurement. 
 
Recipient of Microsoft
Operational Excellence Award for 2006. IBM
Premier Business Partner. Lenovo Premier
Business Partner. HP Platinum Business Partner. Microsoft Large Account Reseller. 2006 Minority
Supplier of the Year, awarded by the Northwest Minority
Business Council. Zones is a certified Minority Business Enterprise.







 






__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Rotate Items in HorizontalList

2006-10-12 Thread Jeremy Crane












I need each item to rotate one after the
other like 1,2,3,4,1,2,3,4,1,…

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dustin Mercer
Sent: Thursday, October 12, 2006
5:59 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Rotate
Items in HorizontalList



 









Do you need to only have one rotating at a time, rotating after one
another and then starting again, or do they all need to rotate at once? 
What is the exact behavior you want to see?  One thing you can try is
setting the repeatCount on your sequence effect.  That should make the
sequence start again, but I am not sure if that’s exactly what you are
looking for.

 

Dustin Mercer



 









From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of bulldog65mustang
Sent: Thursday, October 12, 2006
3:48 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Rotate Items
in HorizontalList



 







Is it
possible to rotate the items in a HorizontalList? I have used
the mx:Sequence and mx:AnimateProperty tag to move through the items
one at a time, but once it reaches the end its done. I need to
continually cycle the items in the List.














__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






Re: [flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Daniel Wabyick

So, I got both the valueCommit and the  tag to work when 
manually setting list.selectedIndex, but not the list.selectedItem property.

You can check out either version ... For those without the  
tag, just remove those two ... They appear to be functionally equivalent 
in this case.


http://www.adobe.com/2006/mxml"; 
xmlns:local="*" xmlns:ac="com.adobe.ac.*">
   
   



   

   


   



   





Tracy Spratt wrote:
>
> Did you try the commitValue event?
>
>  
>
> Tracy
>
>  
>
> 
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
> *On Behalf Of *Tim Hoff
> *Sent:* Thursday, October 12, 2006 6:23 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] Re: Binding scroll position to the selected index
>
>  
>
> Ok, subclass yes.  Or, you could watch for the change of the 
> selectedIndex with the Observe tag.  Alex Uhlmann has a good article here:
>
> http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm#more
>  
> 
>  
>
> -TH
>
> --- In flexcoders@yahoogroups.com, Daniel Wabyick <[EMAIL PROTECTED]> wrote:
> >
> >
> > Ah, that was a good idea, but it doesn't work in my case.
> >
> > The list is being filtered and the selectedItem is being set via other
> > code. Thus the need to bind to selectedItem, as the "change" handler
> > won't be called.
> >
> > I should be able to whip something up fairly easily via a subclass ...
> >
> > -D
> >
> >
> >
> >
> > Tim Hoff wrote:
> > >
> > > Hi Daniel,
> > >
> > > On a click or change event you could use this:
> > >
> > > myList.scrollToIndex(myList.selectedIndex);
> > >
> > > -TH
> > >
> > > --- In flexcoders@yahoogroups.com
> > > , Daniel Wabyick daniel@ wrote:
> > > >
> > > >
> > > > I would like to configure a List class so that it will automatically
> > > > scroll to show the selected item whenever the selected index/item
> > > > changes. I can't see anyway to bind that using the standard List
> > > class,
> > > > and it seems like I will have to subclass it in order to work. Am I
> > > > missing an easier solution?
> > > >
> > > > Thanks,
> > > > -D
> > > >
> > >
> > >
> >
>
>  



--
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/

<*> Your email settings:
Individual Email | Traditional

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

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

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

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



  1   2   >