[flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread sourcecoderia



Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.

Any idea or help appreciated

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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] ActionScript setting width to 100%

2006-06-05 Thread Tom Chiverton
On Friday 02 June 2006 13:51, Tim Scollick wrote:
  Assuming percentWidth is depricated,
 Is that documented somewhere?  Where can I find out which other deprecated
 code pieces I am using regularily?

I'm *sure* I read it somewhere. Can't find it now though.
Oh well :-)

-- 
Tom Chiverton



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

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

CONFIDENTIALITY

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

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

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



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

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

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

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

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




[flexcoders] Cursor questions Flex 2.0 B3

2006-06-05 Thread sourcecoderia



Have problems with cursors in the below context hopefully someone can 
shed a little light.

I've extended the DividedBox, I added a button to the BoxDivider (the 
middle part) all works great except, when the user is over the button I 
need to change the mouse cursor to a the default mouse pointer not the 
divider cursor.

So Is there a class for the system cursor or do i have to make my own?

Where in the framework are all these cursors (hand, default arrow)?

Any insight appreciated.

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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex Video Downloads...

2006-06-05 Thread Tolulope Olonade












Just wondering why Adobe/Macromedia did
not provide a download link for the videos on this page:



http://labs.adobe.com/flexproductline/videos/



There are lots of us out here that easier
for us to download and watch offline rather than stream online.



Microsoft, Borland etc does it all the
time. I pray they reconsider.



Thanks...













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex2b3 Drawing API

2006-06-05 Thread Johannes Nel



thats because its a sprite and not part of the flex framework. you
should be able to add it to allChildren or something like that, i
cannot recall exactly now. otherwise instead of a sprite create a
canvas.On 6/5/06, Tom Chiverton [EMAIL PROTECTED] wrote:
As there are no examples of this in the docs, can anyone shed some light ?I have a basic MXML file:?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=
http://www.adobe.com/2006/mxml xmlns=*creationComplete=drawIt()mx:Script![CDATA[include displayWorkflow.as;]]
/mx:Scriptmx:Panel width=50% height=50%mx:Canvas label=Work Flow Steps width=100% height=100% id=can/mx:Canvas
/mx:Panel/mx:Applicationand as file:import flash.display.*;public function drawIt() {var mySprite:Sprite = new Sprite();mySprite.graphics.beginFill(0xFFCC00);
mySprite.graphics.drawCircle(30, 30, 30);var label:TextField = new TextField();label.text = hello;label.x = 20;label.y = 20;mySprite.addChild
(label);can.stage.addChild(mySprite);}but I always get an error from the last addChild line:TypeError: Error #1009: Cannot access a property or method of a null objectreference.at displayWorkflow/drawIt()
no matter what I try and addChild to :-(Anyone else explored this yet ?--Tom ChivertonThis 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.CONFIDENTIALITYThis
email is intended only for the use of the addressee named above and may
be confidential or legally privileged.If you are not the
addressee you must not read it and must not use any information
contained in nor copy it nor inform any person other than Halliwells
LLP or the addressee of its existence or contents.If you
have received this email in error please delete it and notify
Halliwells LLP IT Department on 0870 365 8008.For more information about Halliwells LLP visit www.halliwells.com.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards
 Yahoo! Groups Sponsor ~--Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing 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/* 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/
-- j:pn http://www.lennel.org






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Flex2b3 Drawing API

2006-06-05 Thread Xavi Beumala



This should work:?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=*
creationComplete=drawIt()mx:Script ![CDATA[  import mx.core.UIComponent; public function drawIt():void {   var uic:UIComponent = new UIComponent();
   uic.graphics.beginFill(0xFFCC00);   uic.graphics.drawCircle(30, 30, 30); var label:TextField = new TextField();   label.text = hello;
   label.x = 20;   label.y = 20;   uic.addChild(label);   can.addChild(uic);  } ]]/mx:Scriptmx:Panel width=50% height=50%
mx:Canvas label=Work Flow Steps width=100% height=100% id=can/mx:Canvas/mx:Panel/mx:ApplicationCheersX.
On 6/5/06, Tom Chiverton [EMAIL PROTECTED] wrote:
As there are no examples of this in the docs, can anyone shed some light ?I have a basic MXML file:?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=
http://www.adobe.com/2006/mxml xmlns=*creationComplete=drawIt()mx:Script![CDATA[include displayWorkflow.as;]]
/mx:Scriptmx:Panel width=50% height=50%mx:Canvas label=Work Flow Steps width=100% height=100% id=can/mx:Canvas
/mx:Panel/mx:Applicationand as file:import flash.display.*;public function drawIt() {var mySprite:Sprite = new Sprite();mySprite.graphics.beginFill(0xFFCC00);
mySprite.graphics.drawCircle(30, 30, 30);var label:TextField = new TextField();label.text = hello;label.x = 20;label.y = 20;mySprite.addChild
(label);can.stage.addChild(mySprite);}but I always get an error from the last addChild line:TypeError: Error #1009: Cannot access a property or method of a null objectreference.at displayWorkflow/drawIt()
no matter what I try and addChild to :-(Anyone else explored this yet ?--Tom ChivertonThis 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.
CONFIDENTIALITYThis email is intended only for the use of the addressee named above and may be confidential or legally privileged.If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents.If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.
For more information about Halliwells LLP visit www.halliwells.com.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards
 Yahoo! Groups Sponsor ~--Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM~---Flexcoders Mailing 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/* 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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Michael Schmalle



Hi,

Search the list, there are a couple of posts on this. You need to use
the styleSheet load of the TextField. Then custom parse through values.
I am sure there will be some class libraries for this in the future.
Gordon Smith (Adobe) hinted that there might also be this in a future
version of Flex, I am sure of this.

The 'apply' part of the algorithm is the hardest. I created this in
Flash8 for components, havn't finished it to Flex2. When I do I will
post the code as it's kinda fun loading css from styleSheets at runtime
;-)

Peace, MikeOn 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote:



Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.

Any idea or help appreciated

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
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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




  










-- What goes up, does come down.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Jason Hawryluk





I was 
thinking more along the lines of styles for components fill colors etc. Someone 
had done it inFlex 1.5 and it was very slick or it may have been in the 
alpha (can't recollect).


  -Message d'origine-De: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
  de Michael SchmalleEnvoyé: lundi 5 juin 2006 
  13:33À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 
  B3Hi,Search the list, there are a couple of posts 
  on this. You need to use the styleSheet load of the TextField. Then custom 
  parse through values. I am sure there will be some class libraries for this in 
  the future. Gordon Smith (Adobe) hinted that there might also be this in a 
  future version of Flex, I am sure of this.The 'apply' part of the 
  algorithm is the hardest. I created this in Flash8 for components, havn't 
  finished it to Flex2. When I do I will post the code as it's kinda fun loading 
  css from styleSheets at runtime ;-)Peace, Mike
  On 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote:
  

Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.Any 
idea or help 
appreciatedJason--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

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


YAHOO! GROUPS LINKS 

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


-- What goes 
  up, does come down. 
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flex2, CF, FMS, AMF encoding problems

2006-06-05 Thread Bjorn Schultheiss










Hi guys,



Im setting up a basic test application.

The app initially performs a login with CF where I pass a LoginVO
instance straight into CF.

The new AMF3 handles the typed object beautifully and CF
easily returns me back a new LoginVO instance.



Next I attempt to make a connection to Flash Media Server.

This is the error message I receive.

code : NetConnection.Connect.Failed

description : objectEncoding error



If I set

NetConnection.defaultObjectEncoding =
flash.net.ObjectEncoding.AMF0;

My connection to FMS works, but my handling of the LoginVO
instances with Coldfusion no longer works (for obvious reasons).



Is there a workaround for this?



Thanks,

Bjorn







Bjorn Schultheiss 
Senior Flash Developer 

qdc

Personalised Communication Power

Level 2, 31 Coventry St.
South Melbourne

3205, VIC Australia

T: +61 3 9674 7400
F: +61 3 9645 9160
W: http://www.qdc.net.au



((This transmission is
confidential and intended solely for the person or organization to whom it is
addressed. It may contain privileged and confidential information. If you are
not the intended recipient, you should not copy, distribute or take any action
in reliance on it. If you believe you received this transmission in error,
please notify the sender.---))











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex2, CF, FMS, AMF encoding problems

2006-06-05 Thread Bjorn Schultheiss



Hi guys,

I’m setting up a basic test application.
The app initially performs a login with CF where I pass a LoginVO instance
straight into CF.
The new AMF3 handles the typed object beautifully and CF easily returns me
back a new LoginVO instance.

Next I attempt to make a connection to Flash Media Server.
This is the error message I receive.
code : NetConnection.Connect.Failed
description : objectEncoding error

If I set
NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0;
My connection to FMS works, but my handling of the LoginVO instances with
Coldfusion no longer works (for obvious reasons).

Is there a workaround for this?

Thanks,
Bjorn



Bjorn Schultheiss 
Senior Flash Developer 
qdc
Personalised Communication Power

Level 2, 31 Coventry St.
South Melbourne
3205, VIC Australia

T:  +61 3 9674 7400
F:  +61 3 9645 9160
W:  http://www.qdc.net.au
 
((This transmission is confidential and intended solely for the
person or organization to whom it is addressed. It may contain privileged
and confidential information. If you are not the intended recipient, you
should not copy, distribute or take any action in reliance on it. If you
believe you received this transmission in error, please notify the
sender.---))









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] 2 Datagrids and 1 Popup with Videodisplay

2006-06-05 Thread tonyx_788




		

			
			


	hi everyonei've been for weeks trying to figure out how to do this, i hope somebody can help meI have 2 datagrids, first one is bind to an xmlmx:DataGridid="datagrid"dataProvider="{datos}" x="2" y="71" width="150" height="507"editable="false"mx:columns	mx:Array		mx:DataGridColumn headerText="Lista" columnName="dato"/	/mx:Array/mx:columns			/mx:DataGrid2nd datagrid is bind to the first onemx:datagrid x="600" y="468" width="157" height="40" dataProvider="{datagrid.selectedItem.video}"id="vLista"/mx:datagridThis one shows if there is a video on the xmlThis is part of the xml**datos.xml**datos	nombre dato="A orillas de una laguna."		descLibro de Edmundo Batres Ledón siajhdsifsdfirfd/desc		imagenA orillas de una laguna.jpg/imagen		videoVIDEO/aOrillas.flv/video	/nombre/datosand i have another MXML file whish is video.mxmlwhat i want to do is that if there is a video on datagrid 2  click on it and see the .flv on the video.mxml filethanks













	
	
		






		
			






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Need Help with Animation Package

2006-06-05 Thread Alejo Vinjoy



Hello , I was wondering if a could use Alex Uhlman´s Animation Package with Flex Biuld 2.0 Beta 3. It seems that´s been a few changes from ActionScript 2.0 to ActionScript 3.0 and I can´t make it work properly (It has a lot of problems with Void instead of void and there is no way I can make Flex Builder organize correcty the imports that a need in order to use the classes of the Animation Packeage.Does anybody know how to fix this, or does anybody had this problem?Thanks, __Correo Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! ¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Re: How can i disable/trap f5 when a flash movie has focus?

2006-06-05 Thread 王保学



Tim Hoff and Ben Lucyk

Thanks 

Steven






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Exportar DataGrid(flex) a Excel

2006-06-05 Thread Mónica Cantillo



Hola

Tengo quehacer las siguientes cosas ... y soynuevaon Flex por lo que requiero la ayuda de todos ustedes...Necesito saber cómo:


exportar los datos de un datagrid a un archivo Excel... cómo podría hacerlo??? 
combinar clases en java (clases hechas por mí) con mi aplicación en Flex (actualmente uso NetBeans para la programación en Java)
Combinar otros leguajes con Flex: PHP, JSP...
Hacer un print screen y guardar lo que capture en un archivo de word, power point y/o pdf.
Por favor si tienen respuestas a alguna de las cosas que les menciono... envíenmelas lo antes posible y si tienen ejemplos mucho mejor...

Agredezco mucho la ayuda que me puedan brindar...

Saludos

-- Mónica Cantillo Acosta 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Cairngorm - mx:HTTPService result=event.call.resultHandler( event )... do

2006-06-05 Thread polestar11



--- In flexcoders@yahoogroups.com, Iuliu Burtoiu [EMAIL PROTECTED] wrote:

 Hello again!
 
 I'm trying for some time now, to add a custom
 webService in my Services.mxml control.
 
 However, the dummyDelegate HTTPService from the old
 version of Cairngorm LOGIN sample doesn't seem to work
 anymore with Flex 2b3.
 
 More specific, it seems that there isn't a call
 property on the event:ResultEvent anymore.
 
 So, any ideas how could I link the result handler from
 a mx:HTTPService with the responder's onResult?
 
 Thanks
 
 Iuliu
 
 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam protection around 
 http://mail.yahoo.com


I had a similar problem using the Cairngorm login sample. The events
were firing, but not being caught. It turned out that I had not
instantiated instances of my business and control components, since I
was not using the default application file with the tutorial.

The dummyDelegate service was found + events were being caught after I
included the component references:
mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml
 xmlns:business=org.nevis.cairngorm.samples.login.business.* 
 xmlns:control=org.nevis.cairngorm.samples.login.control.* 
...
business:Services id=loginServices /
control:LoginControl id=controller /















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Accessing data in a Model

2006-06-05 Thread codeintime



I also need to databind to a Horizontal List, but with
resultFormat=e4x this no longer works. I also get this error:
TypeError: Error #1009: Cannot access a property or method of a null
object reference.

eg
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml 
backgroundAlpha=0
 creationComplete=srv.send();showCategories();

 mx:Script
![CDATA[
  public function showCategories() : void
 {
 cat1.title = [EMAIL PROTECTED];
 cat2.title = [EMAIL PROTECTED];
 }
]]
 /mx:Script

mx:HTTPService id=srv url="" useProxy=false
resultFormat=e4x /

mx:Model id=activityModel{srv.lastResult.activity}/mx:Model

mx:Label id=Title text={activityModel.title} fontSize=16 /
 mx:VBox width=100% height=100%
  mx:HDividedBox width=100% height=75%
 mx:Panel id=cat1 width=100% height=100% 
mx:TileList height=100% width=100% id=tl_Category1 
 itemRenderer=Item rowHeight=130 columnWidth=175
allowMultipleSelection=false
 dragEnabled=true
 dropEnabled=true
dragMoveEnabled=true /
   /mx:Panel
   mx:Panel id=cat2 width=100% height=100% 
   mx:TileList height=100% width=100% id=tl_Category2 
 itemRenderer=Item rowHeight=130 columnWidth=175
allowMultipleSelection=false
 dragEnabled=true
 dropEnabled=true
dragMoveEnabled=true/
   /mx:Panel
 /mx:HDividedBox
  
 mx:Panel title=Items to be classified: width=100% height=25%
  
  mx:HorizontalList id=ItemsDsp width=100%
dataProvider={activityModel.items.item}
 itemRenderer=Item allowMultipleSelection=true
 dragEnabled=true
 dropEnabled=true
  dragMoveEnabled=true /
 /mx:Panel
 /mx:VBox
/mx:Application

code for itemRenderer - Item
?xml version=1.0 encoding=utf-8?

mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml backgroundAlpha=0
 borderStyle=none width=165 height=120 verticalAlign=middle
verticalGap=0 verticalScrollPolicy=off

 mx:Image id=img height=100 width=50 source={data.imageurl}/

 mx:VBox width=100% paddingTop=0 horizontalGap=4
 mx:Label text={data.title} fontWeight=bold/
 /mx:VBox

/mx:HBox

The xml file I am trying to read:
?xml version=1.0 encoding=utf-8?
activity title=Classification type=Classification
 categories
  category name=Category 1 /
  category name=Category 2 /
 /categories
 items
  item title=One imageurl=assets/products/DoCoMo_901_ic.png /
  item title=Two imageurl=assets/products/DoCoMo_F900_i.png /
  item title=Three imageurl=assets/products/Casio_W21CA.png /
  item title=Four imageurl=assets/products/DoCoMo_901_ic.png /
  item title=Five imageurl=assets/products/Siemens_SX1.png /
  item title=Six imageurl=assets/products/Casio_W21CA.png /
  item title=Seven imageurl=assets/products/DoCoMo_901_ic.png /
 /items
/activity














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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] 2 Datagrids y 1 Popup con Videodisplay

2006-06-05 Thread tonyx_788



Hola atodos sabe alguien como hacer para a darle click a un nombre el cual estaen un datagrid este me muestre un video en un popuppondre un ejemploTengo mi primer datagridmx:DataGridid="datagrid"dataProvider="{datos}"x="2" y="71" width="150" height="507"editable="false"mx:columnsmx:Arraymx:DataGridColumn headerText="Lista" columnName="dato"//mx:Array/mx:columns/mx:DataGrideste es el segundo datagridel cual esta conectado con el primeroeste me muestra si el xml tiene video o nomx:datagrid x="600" y="468" width="157" height="40" dataProvider="{datagrid.selectedItem.video}"id="vLista"/mx:datagridThis one shows if there is a video on the xmleste es parte del xml**datos.xml**datos	nombre dato="A orillas de una laguna."		descLibro de Edmundo Batres Ledón siajhdsifsdfirfd/desc		imagenA orillas de una laguna.jpg/imagen		videoVIDEO/aOrillas.flv/video	/nombre/datosy por ultimo tengo un archivo mxml el cual se llama video.mxmllo que quiciera hacer es que si el datagrid 2 muestra que si ay video le de un click al video que yo quiera y este se reproduzca en el video.mxml






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: roll-over-color CSS property

2006-06-05 Thread klumikaze



Ok, essentially what I've done is taken the AeonGraphical sample,
brought it in to Flash, changed the look of the buttons and some other
elements, and made use of the AeonGraphical.css in my project.

The buttons are a blue color, and I can set the up state color fine,
but the roll-over-color is set to a custom color, but it is always
black. I'll try what you mentioned for setting the style, that could work.

Thanks again,

Brian

--- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote:

 Does something like this work? (works in the latest build for Flex 2)...
 
 ?xml version=1.0?
 mx:Application xmlns:mx=http://www.adobe.com/2006/mxml 
 mx:Script![CDATA[
  public function changeMyStyle1(e:Event):void {
   e.currentTarget.setStyle(textRollOverColor,0x33CCFF);
  }
 ]]/mx:Script
 mx:Button label=Click Me id=b1 click=changeMyStyle1(event) /
 /mx:Application
 
 You mention that you are skinning your app and it doesn't work when
 using default buttons. Maybe if you explained a little more about what's
 going on...
 
 Matt Horn
 Flex docs
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of klumikaze
  Sent: Saturday, June 03, 2006 8:10 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Re: roll-over-color CSS property
  
  Sorry, meant F2B3... I've checked all through the API docs 
  and the changes from B2 to B3, etc as well.
  
  Thoughts?
  
  Thanks,
  
  Brian
  
  --- In flexcoders@yahoogroups.com, Karl Johnson karl.johnson@
  wrote:
  
   1.5? textRollOverColor is the style.
   
   Make sure to check the API docs whenever you are not sure of what 
   style or property or method to use, very helpful!
   http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
   
   Karl Johnson
   
   
   -Original Message-
   From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] 
   On Behalf Of klumikaze
   Sent: Friday, June 02, 2006 3:21 PM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] roll-over-color CSS property
   
   Maybe I'm missing something, but I'm skinning my 
  application, and when 
   trying to use default buttons, I can't change the text 
  color on a roll 
   over. I assume it's the roll-over-color property, I've looked for 
   other options but haven't found anything.
   
   Anybody else having issues with this?
   
   Thanks,
   
   Brian
   
   
   
   
   
   
    Yahoo! Groups Sponsor 
   ~-- Protect your PC from spy ware with 
  award winning anti spy technology.
   It's free.
   http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
   
  ~-
   
   
   --
   Flexcoders Mailing List
   FAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives:
   http://www.mail-archive.com/flexcoders%40yahoogroups.com
   Yahoo! Groups Links
  
  
  
  
  
  
  
   Yahoo! Groups Sponsor 
  ~-- Protect your PC from spy ware with 
  award winning anti spy technology. It's free.
  http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
  --
  --~- 
  
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: 
  http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
  
  
  
  
  
  
 













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Accessing data in a Model

2006-06-05 Thread codeintime



Thank you - that is very helpfula nd helps me do another example.












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] OpenAMF, Tomcat and Flex2B3

2006-06-05 Thread Andrea Varga
Hi Carlos,

Yes, I'm using AMF0, I'm using Renaun Erickson’s RemoteObjectAMF0 class. 
I have tested it with AMFPHP and it worked, so that part should be ok. 
http://renaun.com/blog/?p=31
I have read more docs, and I found that for class mappings I should use 
AdvancedGateway instead of DefaultGateway, but I haven't manage to write 
a proper openamf-config.xml yet.

Thanks

Andi

Carlos Rovira wrote:

 Hi Andrea,

 The problem was solved in last beta (FP9 beta3), so you can pass VOs 
 from AS to Java and from Java to AS.

 Your code looks ok, for me but the logs says something is happen, 
 maybe...are you using AMF0?, remember that in FP9 default is AMF3.


 On 6/2/06, *Andrea Varga* [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 Hi

 I have been trying to set up a project using Java, OpenAMF, Tomcat,
 Flex2B2 and Cairngorm.
 I'm kinda new to OpenAMF andTomcat (and usually to application
 servers)
 and I have found the docs confusing.
 Finally i managed to get the remoting working.
 I can call my services, and get back the result, but I am having
 problems with my VO class mappings in both directions (if I send
 Strings, everything works fine)
 I have read in previous posts, that mapping from Java to AS was not
 working in Flash Player 8.5 (but should work from AS to Java), but I
 couldn't find anything about Flash Player 9.
 Actually, I have found this in Carlos Rovira's blog: El problema de
 mapeo de clases de Java hacia ActionScript está resuelto en el nuevo
 *Flash Player 9 Beta*. Unfortunatelly, I don't understand
 spanish, but
 it's close to romanian, does that mean that the problem has been
 solved
 in Flash Player 9 or the opposite ? :)

 I have a LoginVO class:
 Java code:
 ---
 package com.spindevelopment.model.vo;

 public class LoginVO {
 public String username;
 public String password;

 public LoginVO() {
 }
 }

 AS code:
 -
 package com.spindevelopment.model.vo {

 import org.nevis.cairngorm.vo.ValueObject;
 [RemoteClass(alias=com.spindevelopment.model.vo.LoginVO)]
 [Bindable]
 public class LoginVO implements ValueObject {
 public var username:String;
 public var password:String;
 }
 }

 In openamf-congid.xml I added this:
 custom-class-mapping
 java-classcom.spindevelopment.model.vo.LoginVO/java-class
 custom-classcom.spindevelopment.model.vo.LoginVO/custom-class
 /custom-class-mapping

 In my java service class, I have a simple test method, where I
 return a
 String with the 2 properties of LoginVO:

 public String doLogin(LoginVO pLogin ) {
 return new String(un:  + pLogin.username + , pass:
 +pLogin.password);
 }

 The returned string is: un: null, pass: null;

 Here is my Tomcat log:

 02.06.2006 15:54:45 org.openamf.io.AMFDeserializer init
 INFO: Deserializing Message, for more info turn on debug level
 02.06.2006 15:54:45 org.openamf.DefaultGateway service
 INFO: REQUEST:
 [AMFBody: {serviceName=com.spindevelopment.services.Login,
 serviceMethodName=doLogin, response=/1, type=ARRAY,
 value=[ASObject[type=com.spindevelopment.model.vo.LoginVO]]}]

 02.06.2006 15:54:46 org.openamf.invoker.JavaServiceInvoker
 getServiceMethod
 INFO: topRankedMethod: name=doLogin rank=100.0
 02.06.2006 15:54:46 org.openamf.DefaultGateway service
 INFO: RESPONSE:
 [AMFBody: {serviceName=null, serviceMethodName=null, response=null,
 type=UNKNOWN, value=un: null, pass: null}]


 Could somebody point me in the right direction?

 Thanks

 Andi


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



 SPONSORED LINKS
 Web site design development
 
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
   Computer software development
 
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
   Software design and development
 
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ

 Macromedia flex
 
 

[flexcoders] HttpServletRequest on AMF

2006-06-05 Thread niladri_gupta



Hi 

I have been able to establish a remote(AMF) connection using Flex 2.0 
on Websphere. 

Is there a way to get a handle on the current HttpServletRequest 
instance on the remote class? I know we need to use 
flashgateway.Gateway.getHttpRequest() for the same, but how does one 
get the instance of flashgateway to work with?

Thanks, Niladri












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Remoting configuration in flex-services.xml

2006-06-05 Thread niladri_gupta



Hi

Thanks for the info. Could you also tell me how to modify the flex-
remoting-service.xml file in order to specify the remote objects to 
be accessed by Client? Below I am pasting a sample code : 

 remoting-service
 destination id=test
 properties
 sourceexample.RemoteInfo/source
 statefultrue/stateful
 /properties
 adapter ref=java-object /
 /destination
 /remoting-service

Are these the set of tags I need to put in the flex-remoting-
service.xml?


Thanks 
Niladri

--- In flexcoders@yahoogroups.com, bronzemug [EMAIL PROTECTED] wrote:

 flex-service.xml no longer exists in FDS. It is no named flex-
 enterprise-services.xml. This file imports a number of other files 
via 
 this:
 services
 service-include file-path=flex-remoting-service.xml /
 service-include file-path=flex-proxy-service.xml /
 service-include file-path=flex-message-service.xml /
 service-include file-path=flex-data-service.xml /
 /services
 
 You will want to modify the flex-remoting-service.xml file
 
 
 ---In flexcoders@yahoogroups.com, niladri_gupta niladri.gupta@ 
 wrote:
 
  Hi
  
  I am trying to establish a client-server AMF connection using 
Flex 2. 
  Even after installing FDS and Flex Builder, I am not getting the 
flex-
  services.xml in the installation directory. 
  
  I need to put my remoting configuration in this file, but i am 
unware 
  of the sequence of tags to insert. Can anyone please 
publish/send a 
  sample flex-services.xml so that I may know.
  
  Thanks
  Niladri
 














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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-05 Thread bronzemug



Ye. Thanks! you are exactly right. The package name for these java 
classes in the swfkit.jar is now flash.fonts

--- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote:

 I don't remember if this is a Beta 3 change or not, but try this 
instead:
 
 managers
 manager-classflash.fonts.JREFontManager/manager-class
 manager-classflash.fonts.BatikFontManager/manager-
class
 /managers
 
 Hth,
 
 Matt Horn
 Flex docs 
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
  Sent: Thursday, June 01, 2006 5:36 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Re: No FontManager provided after 
  migrating to Beta 3
  
  Alex, thanks for answering ...
  
  I am still getting the error.
  I made the change
  :
  managers
  manager-
  classmacromedia.fonts.JREFontManager/manager-class
  manager-
classmacromedia.fonts.BatikManager/manager-
  class
  /managers
  
  
  
  
  I also simply modified one of the samples applications from the 
Beta
  3 distribution: main.css in sqladmin:
  
  Here is css I added:
  
  @font-face { 
   font-family:Avenir 85 Heavy Bold;
   /* This is only a bold weight font */
   src:url(Avenir_LT_85_Heavy.ttf);
   fontWeight:bold;
   unicode-range:
  U+0020-U+002F, /*!#$%
  (amp)'()*+,-./ */
  U+0030-U+0039, /* 
   0123456789  
   */
  U+003A-U+0040, /*  :;(gt)
  =(lt)?
   */
  U+0041-U+005A, /*  
   ABCDEFGHIJKLMNOPQRSTUVWXY*/
  U+005B-U+0060, /*   [\]^_ 
  */
  U+0061-U+007A, /*  
   abcdefghijklmnopqrstuvwxy*/
  U+2013-U+2022,/*, *//*   –— 
  =`'‚ „ †‡  */
  U+00A9-U+00AA, /* copyright */
  U+007E
  /*U+007B-U+007E*/; /*   {|}
  
   */
  }
  
  I also added the TTF file to the same directory as the 
  main.css file As I mentioned ... this worked fine in Beta 2
  
  
  --- In flexcoders@yahoogroups.com, Alex Uhlmann auhlmann@
  wrote:
  
   Yes, that's a bug in the default flex-config.xml. Change
   
   managers
   manager-
  classmacromedia.fonts.JREFontManager/manager-class
   manager-
  classmacromedia.fonts.BatikFontManager/manager-class
   /managers
   
   To
   
   managers
   manager-
  classmacromedia.fonts.JREFontManager/manager-class
   manager-
  classmacromedia.fonts.BatikManager/manager-class
   /managers
   
   
   (without the Font)
   
   In compilerfonts and it should work. 
   
   
   Best,
   Alex
   
   Alex Uhlmann
   Consultant (Rich Internet Applications) Adobe Consulting 
  Westpoint, 4 
   Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
   p: +44 (0) 131 338 6969
   m: +44 (0) 7917 428 951
   auhlmann@ 
   
   
   -Original Message-
   From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
   Sent: 01 June 2006 20:08
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] No FontManager provided after migrating 
to
  Beta 3
   
   I migrated my Beta2 code base which is using some embedded ttf
  fonts to
   Beta3 and suddenly started getting
   
   exception during transcoding: No FontManager provided. Cannot
  build font.
   
   I am using the standard flex-config.xml that comes with Beta3
  distribution. 
   
   Is there something I am missing?
   
   
   
   
   
   
    Yahoo! Groups Sponsor -
---
  ~-- Everything you need is one click away.  Make Yahoo! your 
  home page now.
   http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
   

  ~- 
   
   --
   Flexcoders Mailing List
   FAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives: http://www.mail-archive.com/flexcoders%
  40yahoogroups.com
   Yahoo! Groups Links
  
  
  
  
  
  
  
  
  
  
   Yahoo! Groups Sponsor 
  ~-- You can search right from your 
  browser? It's easy and it's free. See how.
  http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
  --
  --~- 
  
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: 
  http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
  
  
  
  
  
  
 














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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
 

[flexcoders] quick filter for datagrid

2006-06-05 Thread tonyx_788



I everyone
i think my cuestion is simple


i have a datagrid with 1000 names (this names are in a xml file)
what i one to do is to put an input text so when somebody
is looking for a specific name he just start typing and the datagrid
start showing only what is being type on the textinput

one more thing i am using this for distribution on a cd so i don't
think i can use any other language,
can i?












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Flex2b3 Drawing API

2006-06-05 Thread Tom Chiverton
On Monday 05 June 2006 12:25, Xavi Beumala wrote:
 public function drawIt():void {
                var uic:UIComponent = new UIComponent();
             uic.graphics.beginFill(0xFFCC00);
             uic.graphics.drawCircle(30, 30, 30);

Ah ha, cheers !

-- 
Tom Chiverton



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

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

CONFIDENTIALITY

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

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

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



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

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

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

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

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





[flexcoders] mx.messaging.MessagePersister, MessageStore?

2006-06-05 Thread rr_gruchalski



Hello,

In documentation for Beta 3 there are classes like:
 - mx.messaging.MessagePersister
 - mx.messaging.MessageStore

When I'm trying to use them from FlexBuilder I'm getting error:

Type was not found or as not a complite-time statmement: 
MessagePersister.
Type was not found or as not a complite-time statmement: 
MessageMessageStore.

Something wrong with my code? Maybe I'm missing something?
If this doesn't work how can I save messages which are coming from JMS 
gateway for clients which are not connected at message sending time? 
Is there any way to save data in FDS for later use?













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex 1.5 to 2.0 Migration

2006-06-05 Thread Josh Noland




I am having problems migrating code from flex 1.5 to flex 2.0 beta 3. I get the following errors when I try to compile my new code. Any ideas?

Thanks
Josh

Error _com_project1_view_entity_EntityGenInfoWatcherSetupUtil.as:182 
Syntax Error: dot is unexpected. Expected a primary _expression_.
Error _com_project1_view_entity_EntityGenInfoWatcherSetupUtil.as:182 
Expecting rightbracket before semicolon.
Error _com_project1_salessystem_view_entity_EntityLinksWatcherSetupUtil.as:103 
Syntax Error: dot is unexpected. Expected a primary _expression_.
Error _com_project1_salessystem_view_entity_EntityLinksWatcherSetupUtil.as:103 
Expecting rightbracket before semicolon.Express yourself instantly with MSN Messenger! MSN Messenger





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Exportar DataGrid(flex) a Excel

2006-06-05 Thread 王保学



attend it







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Flex 1.5 to 2.0 Migration

2006-06-05 Thread porsoc



Tom,

Thanks for the help.


Block of code containing line 183:
// writeWatcher id=11 shouldWriteSelf=true 
class=flex2.compiler.as3.binding.FunctionReturnWatcher 
shouldWriteChildren=true
 watchers[11] = new mx.binding.FunctionReturnWatcher
(genSortName,
 
target,
 
function():Array { return 
[ .lname.text, .fname.text, .mname.text ]; },
 {
 propertyChange: true
 }


Block of code containing line 103

 watchers[5] = new mx.binding.FunctionReturnWatcher
(isUndefined,
 
target,
 
function():Array { return [ .linksGrid.selectedIndextoString(), -
1 ]; },
 {
 propertyChange: true
 }




--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 
wrote:

 On Monday 05 June 2006 13:34, Josh Noland wrote:
  I am having problems migrating code from flex 1.5 to flex 2.0 
beta 3. I
  get the following errors when I try to compile my new code. Any 
ideas?
 
 What is the line of code at those two points ?
 
 -- 
 Tom Chiverton
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF. A list of members is available for inspection at the 
registered office. Any reference to a partner in relation to 
Halliwells LLP means a member of Halliwells LLP. Regulated by the 
Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged. If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents. If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 We are pleased to announce that Halliwells LLP has been voted AIM 
Lawyer of the Year at the 2005 Growth Company Awards











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] OpenAMF, Tomcat and Flex2B3

2006-06-05 Thread Carlos Rovira



That's not right, you don't need to use AdvancedGateway to map java-as classes, you can do it as well with DefaultGateway. Although use AdvancedGateway is a best practice, and you must declare your services as in the following example, 
service  nameServiceNameToUseInFlash/name  service-locationcom.carlosrovira.MyClass/service-location  invoker-refJava/invoker-ref
  method   name*/name   parametertype*/type   /parameter  /method /service
Then your must to change your call in flex and put
ServiceNameToUseInFlash instead the com.carlosrovira.MyClass. In
this way you can change your java class or even the invoker in your
openamf-config.xml without modify any flex code.On 6/5/06, Andrea Varga [EMAIL PROTECTED] wrote:
Hi Carlos,Yes, I'm using AMF0, I'm using Renaun Erickson's RemoteObjectAMF0 class.
I have tested it with AMFPHP and it worked, so that part should be ok.http://renaun.com/blog/?p=31I have read more docs, and I found that for class mappings I should use
AdvancedGateway instead of DefaultGateway, but I haven't manage to writea proper openamf-config.xml yet.ThanksAndiCarlos Rovira wrote: Hi Andrea, The problem was solved in last beta (FP9 beta3), so you can pass VOs
 from AS to Java and from Java to AS. Your code looks ok, for me but the logs says something is happen, maybe...are you using AMF0?, remember that in FP9 default is AMF3.
 On 6/2/06, *Andrea Varga* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote:
 Hi I have been trying to set up a project using Java, OpenAMF, Tomcat, Flex2B2 and Cairngorm. I'm kinda new to OpenAMF andTomcat (and usually to application servers)
 and I have found the docs confusing. Finally i managed to get the remoting working. I can call my services, and get back the result, but I am having problems with my VO class mappings in both directions (if I send
 Strings, everything works fine) I have read in previous posts, that mapping from Java to AS was not working in Flash Player 8.5 (but should work from AS to Java), but I couldn't find anything about Flash Player 9.
 Actually, I have found this in Carlos Rovira's blog: El problema de mapeo de clases de Java hacia ActionScript está resuelto en el nuevo *Flash Player 9 Beta*. Unfortunatelly, I don't understand
 spanish, but it's close to romanian, does that mean that the problem has been solved in Flash Player 9 or the opposite ? :) I have a LoginVO class: Java code:
 --- package com.spindevelopment.model.vo; public class LoginVO { public String username; public String password; public LoginVO() {
 } } AS code: - package com.spindevelopment.model.vo { import org.nevis.cairngorm.vo.ValueObject; [RemoteClass(alias=
com.spindevelopment.model.vo.LoginVO)] [Bindable] public class LoginVO implements ValueObject { public var username:String; public var password:String; }
 } In openamf-congid.xml I added this: custom-class-mapping java-classcom.spindevelopment.model.vo.LoginVO/java-class custom-class
com.spindevelopment.model.vo.LoginVO/custom-class /custom-class-mapping In my java service class, I have a simple test method, where I return a String with the 2 properties of LoginVO:
 public String doLogin(LoginVO pLogin ) { return new String(un:  + pLogin.username + , pass: +pLogin.password); } The returned string is: un: null, pass: null;
 Here is my Tomcat log: 02.06.2006 15:54:45 org.openamf.io.AMFDeserializer init INFO: Deserializing Message, for more info turn on debug level 02.06.2006
 15:54:45 org.openamf.DefaultGateway service INFO: REQUEST: [AMFBody: {serviceName=com.spindevelopment.services.Login, serviceMethodName=doLogin, response=/1, type=ARRAY, value=[ASObject[type=
com.spindevelopment.model.vo.LoginVO]]}] 02.06.2006 15:54:46 org.openamf.invoker.JavaServiceInvoker getServiceMethod INFO: topRankedMethod: name=doLogin rank=100.0 02.06.2006
 15:54:46 org.openamf.DefaultGateway service INFO: RESPONSE: [AMFBody: {serviceName=null, serviceMethodName=null, response=null, type=UNKNOWN, value=un: null, pass: null}]
 Could somebody point me in the right direction? Thanks Andi -- Flexcoders Mailing List FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 SPONSORED LINKS Web site design development 
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
 Computer software development 
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
 Software design and development 

Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Michael Schmalle



Hmm,

I don't follow, you mean load a style sheet that changes fill color styles?

Peace, MikeOn 6/5/06, Jason Hawryluk [EMAIL PROTECTED] wrote:







I was 
thinking more along the lines of styles for components fill colors etc. Someone 
had done it inFlex 1.5 and it was very slick or it may have been in the 
alpha (can't recollect).


  -Message d'origine-De: 
  flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com]De la part 
  de Michael SchmalleEnvoyé: lundi 5 juin 2006 
  13:33À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 
  B3Hi,Search the list, there are a couple of posts 
  on this. You need to use the styleSheet load of the TextField. Then custom 
  parse through values. I am sure there will be some class libraries for this in 
  the future. Gordon Smith (Adobe) hinted that there might also be this in a 
  future version of Flex, I am sure of this.The 'apply' part of the 
  algorithm is the hardest. I created this in Flash8 for components, havn't 
  finished it to Flex2. When I do I will post the code as it's kinda fun loading 
  css from styleSheets at runtime ;-)Peace, Mike
  On 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote:

  

Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.Any 
idea or help 
appreciatedJason--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

  
  

Web site design development 

Computer software development 

Software design and development 
  

Macromedia flex 

Software development best practice 
  


YAHOO! GROUPS LINKS 

  Visit your group flexcoders on the web. 

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


-- What goes 
  up, does come down. 
  





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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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




  








-- What goes up, does come down.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Jeremy Lu



has anyone really started working on this real-time-change-CSS thing ?any project I can participate or take a look at ?thanks.On 6/5/06, 
Michael Schmalle [EMAIL PROTECTED] wrote:



Hmm,

I don't follow, you mean load a style sheet that changes fill color styles?

Peace, MikeOn 6/5/06, Jason Hawryluk 
[EMAIL PROTECTED] wrote:







I was 
thinking more along the lines of styles for components fill colors etc. Someone 
had done it inFlex 1.5 and it was very slick or it may have been in the 
alpha (can't recollect).


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

flexcoders@yahoogroups.com]De la part 
  de Michael SchmalleEnvoyé: lundi 5 juin 2006 
  13:33À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 
  B3Hi,Search the list, there are a couple of posts 
  on this. You need to use the styleSheet load of the TextField. Then custom 
  parse through values. I am sure there will be some class libraries for this in 
  the future. Gordon Smith (Adobe) hinted that there might also be this in a 
  future version of Flex, I am sure of this.The 'apply' part of the 
  algorithm is the hardest. I created this in Flash8 for components, havn't 
  finished it to Flex2. When I do I will post the code as it's kinda fun loading 
  css from styleSheets at runtime ;-)Peace, Mike
  On 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote:

  

Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.Any 
idea or help 
appreciatedJason--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

  
  


Web site design development 


Computer software development 


Software design and development 
  


Macromedia flex 


Software development best practice 
  


YAHOO! GROUPS LINKS 

  Visit your group flexcoders on the web.
 

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


-- What goes 
  up, does come down. 
  





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


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










  
  
SPONSORED LINKS
  
  
  



Web site design development
  
  


Computer software development
  
  


Software design and development
  
  




Macromedia flex
  
  


Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

  To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.




  








-- What goes up, does come down.






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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL 

Re: [flexcoders] quick filter for datagrid

2006-06-05 Thread Jeremy Lu



there's an excellent article on Sho Kuwamoto's blog @http://kuwamoto.org/2006/04/03/flex-auto-complete-text-input-control-v06/
it's not exactly what you want, but the way Sho filters the items in the Listbox may shed a light on your need.On 6/5/06, tonyx_788
 [EMAIL PROTECTED] wrote:I everyone
i think my cuestion is simplei have a datagrid with 1000 names (this names are in a xml file)what i one to do is to put an input text so when somebodyis looking for a specific name he just start typing and the datagrid
start showing only what is being type on the textinputone more thing i am using this for distribution on a cd so i don'tthink i can use any other language,can i? Yahoo! Groups Sponsor ~--
Everything you need is oneclick away. Make Yahoo! your home pagenow.http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM~-
--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/
* 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
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] FB2B3 :: public and static public members messed up :: Bug?

2006-06-05 Thread Michael Schmalle



Hi,

I have something weird that I cannot explain to myself.

I have a class that resembles a ModelLocator singleton. The odd part
is, FB has chosen one of my public methods to be 'public non-static'
and the other 3 public non-static members are being treated as static!

It's wrong in the outline view and more importantly wrong with code
completion. The code completion bug is the hard one to swallow.

FYI, I have the QuickFIx plugin installed, could this be affecting it?

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






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: FB2B3 :: public and static public members messed up :: Bug?

2006-06-05 Thread Michael Schmalle



Oh,

I have noticed that it is not treating them as static class methods but
actually package functions. IE a function defined outside of the class.
I have two other classes in the same directory that follow the same
class pattern and it analyzes them correctly.

Peace, MikeOn 6/5/06, Michael Schmalle [EMAIL PROTECTED] wrote:
Hi,

I have something weird that I cannot explain to myself.

I have a class that resembles a ModelLocator singleton. The odd part
is, FB has chosen one of my public methods to be 'public non-static'
and the other 3 public non-static members are being treated as static!

It's wrong in the outline view and more importantly wrong with code
completion. The code completion bug is the hard one to swallow.

FYI, I have the QuickFIx plugin installed, could this be affecting it?

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

-- What goes up, does come down.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Michael Schmalle



Jeremy,

real-time-change-CSS

Do you mean, Flex app loaded, user changes a style sheet, but the actual style sheet was loaded from 'some place' realtime?

If so, I have an open project that is comming up. Half ported from AS2, and the rest is just 'what needs to be done'.

I have way to many things on the fire but, projects comming up need
this functionality. In about 2-3 months I am getting back to that.
Probably a day late and a dollar short. If anybody starts something
before then, I have a lot I could offer.

Peace, MikeOn 6/5/06, Jeremy Lu [EMAIL PROTECTED] wrote:



has anyone really started working on this real-time-change-CSS thing ?any project I can participate or take a look at ?thanks.
On 6/5/06, 
Michael Schmalle [EMAIL PROTECTED] wrote:




Hmm,

I don't follow, you mean load a style sheet that changes fill color styles?

Peace, MikeOn 6/5/06, Jason Hawryluk 

[EMAIL PROTECTED] wrote:







I was 
thinking more along the lines of styles for components fill colors etc. Someone 
had done it inFlex 1.5 and it was very slick or it may have been in the 
alpha (can't recollect).


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


flexcoders@yahoogroups.com]De la part 
  de Michael SchmalleEnvoyé: lundi 5 juin 2006 
  13:33À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 
  B3Hi,Search the list, there are a couple of posts 
  on this. You need to use the styleSheet load of the TextField. Then custom 
  parse through values. I am sure there will be some class libraries for this in 
  the future. Gordon Smith (Adobe) hinted that there might also be this in a 
  future version of Flex, I am sure of this.The 'apply' part of the 
  algorithm is the hardest. I created this in Flash8 for components, havn't 
  finished it to Flex2. When I do I will post the code as it's kinda fun loading 
  css from styleSheets at runtime ;-)Peace, Mike
  On 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote:

  

Has anyone figured out a way to do runtime CSS file loading? Is it 
possible? I know in Flex 1.5 it was, but the framework has changed so 
extensively that I have not figured out a way to do it yet.Any 
idea or help 
appreciatedJason--Flexcoders 
Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

  
  



Web site design development 



Computer software development 



Software design and development 
  



Macromedia flex 



Software development best practice 
  


YAHOO! GROUPS LINKS 

  Visit your group flexcoders on the web.

 

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


-- What goes 
  up, does come down. 
  





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



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











  
  
SPONSORED LINKS
  
  
  




Web site design development
  
  



Computer software development
  
  



Software design and development
  
  





Macromedia flex
  
  



Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.


  To unsubscribe from this group, send an email to:


[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service

.




  








-- What goes up, does come down.






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


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










  
  
SPONSORED LINKS
  
  
  



Web site design development
  
  


Computer software development
  
  


Software design and development
  
  




Macromedia flex
  
  


Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.


  To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service

.



  















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

Search Archives: 

[flexcoders] Font changes to FlexBuilder IDE (2b3)

2006-06-05 Thread willmorganuk



Hi - does anyone know how to change the font of the MXML editor? I've
looked about in windowpreferences and can't seem to find anything. 

Thanks.









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Image problems

2006-06-05 Thread Michael










Hello all, I am trying to work with drag and drop. I
have a canvas in which I put a background image to be a recycle bin. Everything
was fine for about a week and all of a sudden the image has disappeared.
I dont know what is going on. I cannot think of anything that has
changed that may have caused it. Can someone tell me if there is a better
way of doing this???



mx:VBox

 mx:Label text=Recycle
Bin fontWeight=bold/

 mx:Canvas id=trash
height=75 width=75 backgroundImage=@Embed('../images/recycle.gif')
dragEnter=doDragEnterImage(event);
dragDrop=doDragDropImage(event)/

/mx:VBox









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Jason Hawryluk





yes 
exactly, basicly they load a bare bones application component with a defined 
mx:Styleand boom all styles changed. I guess they replaced the loaded 
style that was compiled in or somthing. Anyway that was flex 1.5,I 
think... it's been a while, and i'm trying to do this in Flex 2.It did not 
do any parseing of it at all which is why it rocked :)

Jason

  -Message d'origine-De: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
  de Michael SchmalleEnvoyé: lundi 5 juin 2006 
  15:07À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 B3Hmm,I 
  don't follow, you mean load a style sheet that changes fill color 
  styles?Peace, Mike
  On 6/5/06, Jason 
  Hawryluk [EMAIL PROTECTED] 
  wrote:
  


I was thinking more along 
the lines of styles for components fill colors etc. Someone had done it 
inFlex 1.5 and it was very slick or it may have been in the alpha 
(can't recollect).


  -Message 
  d'origine-De: flexcoders@yahoogroups.com [mailto: 
  flexcoders@yahoogroups.com]De la part de Michael 
  SchmalleEnvoyé: lundi 5 juin 2006 
  13:33À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Runtime CSS Styles Flex 2.0 
B3
Hi,Search the list, there 
are a couple of posts on this. You need to use the styleSheet load of the 
TextField. Then custom parse through values. I am sure there will be some 
class libraries for this in the future. Gordon Smith (Adobe) hinted that 
there might also be this in a future version of Flex, I am sure of 
this.The 'apply' part of the algorithm is the hardest. I created 
this in Flash8 for components, havn't finished it to Flex2. When I do I will 
post the code as it's kinda fun loading css from styleSheets at runtime 
;-)Peace, Mike
On 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote: 

  
  Has anyone figured out a way to do runtime CSS file loading? Is it 
  possible? I know in Flex 1.5 it was, but the framework has changed so 
  extensively that I have not figured out a way to do it yet.Any 
  idea or help 
  appreciatedJason--Flexcoders 
  Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  
  SPONSORED 
  LINKS 
  


  Web site design development 
  Computer software development 
  Software design and development 

  Macromedia flex 
  Software development best practice 

  
  
  YAHOO! GROUPS LINKS 
  
Visit your group "flexcoders" on the web. 
To unsubscribe from this group, send an email 
to: [EMAIL PROTECTED] 

Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service. 
  
  
  -- What goes 
up, does come down. --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 

SPONSORED 
LINKS 

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


YAHOO! GROUPS LINKS 

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



-- What goes up, 
  does come down. 
  





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] HttpServletRequest on AMF

2006-06-05 Thread Peter Farland




The flashgateway.jar is no longer shipped with Flex. In Flex 2, all
services are based on a messaging framework - as such, clients can talk
to endpoints on various channels using various protocols, some of which
may not be over HTTP.

The server side APIs all start with flex.messaging. The class you're
looking for is flex.messaging.FlexContext. In the event that you are
using an HTTP based channel (such as the AMFChannel which uses AMF
formatted messages over HTTP), you can get hold of the current
HttpServletRequest as follows:

 HttpServletRequest req =
flex.messaging.FlexContext.getHttpRequest();

This will, however, require you to add flex-messaging.jar to the
classpath when compiling.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of niladri_gupta
Sent: Monday, June 05, 2006 7:35 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] HttpServletRequest on AMF

Hi 

I have been able to establish a remote(AMF) connection using Flex 2.0 on
Websphere. 

Is there a way to get a handle on the current HttpServletRequest
instance on the remote class? I know we need to use
flashgateway.Gateway.getHttpRequest() for the same, but how does one get
the instance of flashgateway to work with?

Thanks, Niladri








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

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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Font changes to FlexBuilder IDE (2b3)

2006-06-05 Thread Will Morgan



Found it. No help needed...:)On 6/5/06, willmorganuk [EMAIL PROTECTED] wrote:



Hi - does anyone know how to change the font of the MXML editor? I've
looked about in windowpreferences and can't seem to find anything. 

Thanks.









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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

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



  
















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] RDS problems with beta 3

2006-06-05 Thread Ed Lovell



I'm having problems with Flex Builder 2 beta 3 in connecting via RDS to CFMX7. I installed the CF_FBExtensions_B3_0515 on top of FB2b3. In trying to configure RDS to connect to my CF7 server, all I can get is "Unable to contactthe RDS server...". I've tried two different CF7 servers and have verified that both CF7 server are accepting RDS connections since I can connect to both using RDS via CF Report Writer. I've tried connecting by host name and IP address. Any suggestions?? Thanks!

IMPORTANT NOTICE:  This e-mail is meant only for the use of the intended
recipient.  It may contain confidential information which is legally
privileged or otherwise protected by law.  If you received this e-mail
in error or from someone who was not authorized to send it to you, you
are strictly prohibited from reviewing, using, disseminating,
distributing or copying the e-mail.  PLEASE NOTIFY US IMMEDIATELY OF THE
ERROR BY RETURN E-MAIL AND DELETE THIS MESSAGE FROM YOUR SYSTEM.  Thank
you for your cooperation.







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Remoting configuration in flex-services.xml

2006-06-05 Thread Peter Farland



Hi Niladri,

Examples/information for the FDS config should be in the
/resources/config/ folder that was part of the FDS 2 installation
(though these files will contain more complete information in the final
release).

However, for now here's some extra info on the Flex 2 Beta 3 config to
help you get some perspective...

In Beta 3, the /WEB-INF/flex/flex-enterprise-services.xml file is just
the default name and location for a Flex Data Services 2 configuration
file. This file is parsed by the MessageBrokerServlet which is the
servlet entry point for all HTTP based channel endpoints, as such the
location of this file is configured as a servlet init-param in
/WEB-INF/web.xml.

Next, the fact that the top level flex-enterprise-services.xml file uses
service-include elements to break out the services into individual files
(such as the remoting-service included from the
/WEB-INF/flex/flex-remoting-service.xml) is just the default
configuration that we ship to help organize the services. Services can
be specified inline in the top level file using a service element, or
included from external files using a service-include element.

Note that if a service is included from an external file, the top level
tag of that service include file must be called service.

Destinations are declared as child elements to the service tag. You
typically configure defaul adapters and channels so that they don't need
to be specified for every destination. This allows you to add
destinations and concentrate on giving them a unique id and specifying
the necessary properties.

In Beta 3, the stateful property for Remoting Service destinations was
changed to scope. In the final release there will be three scopes for
the default JavaFactory (that is responsible for instantiating instances
of your POJOs) - request, session and application.


service id=remoting-service 
 class=flex.messaging.services.RemotingService 
 messageTypes=flex.messaging.messages.RemotingMessage

 adapters
 adapter-definition
 id=java-object
 
class=flex.messaging.services.remoting.adapters.JavaAdapter
 default=true/
 /adapters

 default-channels
 channel ref=my-amf/
 /default-channels

 destination id=test
 properties
 sourceexample.RemoteInfo/source
 scopesession/scope
 /properties
 /destination

/service



Pete 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of niladri_gupta
Sent: Monday, June 05, 2006 4:21 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Remoting configuration in flex-services.xml

Hi

Thanks for the info. Could you also tell me how to modify the flex-
remoting-service.xml file in order to specify the remote objects to be
accessed by Client? Below I am pasting a sample code : 

 remoting-service
 destination id=test
 properties
 sourceexample.RemoteInfo/source
 statefultrue/stateful
 /properties
 adapter ref=java-object /
 /destination
 /remoting-service

Are these the set of tags I need to put in the flex-remoting-
service.xml?


Thanks
Niladri







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] TextArea, XML y CSS ¿como se hace?

2006-06-05 Thread tonyx_788



hola a todos espero esto sea posible en FLEXresulta que tengo un texto en WORD este texto contiene versalitas, cursivas, letras gruesas, etc,son aproximadamente 1000 nombres cada uno con su deficion por ejemploA orillas de una laguna. Libro de Edmundo Batres Ledón, Leticia Ulín Rodríguez y Carlos López Castro, editado por la ujat a través dacs; consta de 75 pp. La edición fue de 1,000 ejemplares.

notan como tiene los tipos de letra de los que le hablobueno mi gran problema es que no puedo hacer que estos se vean exactamente como estan en   WORDya que tendria que hacerlo de uno por unoESTE ES EL DATAGRID DONDE ME MUESTRA EL NOMBRE EN ESTE CASO A orillas de una laguna.el cual no me interesa como se vea el tipo de letra puede cambiar aquimx:DataGridid="datagrid"dataProvider="{datos}" mx:columnsmx:Array  mx:DataGridColumn headerText="Lista" columnName="dato" showDataTips="true"/ /mx:Array/mx:columnsal darle click a "A orillas de una laguna." me aparecen en el textarea la informacion de este pero yo quiero que por medio de css se puede ver tal y como lo tengo en word si tener que hacerlo uno por uno






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] fdb and XML (bug ?)

2006-06-05 Thread Tom Chiverton



I can't seem to inspect or print (parts of) XML variables in the debugger, 
when stopped at a breakpoint.

(fdb) print workflow
$5 = [Object 1555160921, class='XML']
(fdb) print workflow.
$6 = workflow = [Object 1555160921, class='XML']
 0 = [Object 1555479185, class='XML']
 1 = [Object 1555479017, class='XML']
(fdb) print workflow.states
Variable states unknown
_expression_ could not be evaluated.
(fdb) print workflow.states.
Variable states unknown
_expression_ could not be evaluated.
(fdb) print [EMAIL PROTECTED]
_expression_ contains a operator that is not known Operator.UNKNOWN
_expression_ could not be evaluated.

If I let the code run on, Flash is able to parse the XML just fine, so I'm 
guessing the debugger can't inspect XML (e4x) variables ?
-- 
Tom Chiverton



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

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

CONFIDENTIALITY

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

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

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







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











Re: [flexcoders] Re: Flex 1.5 to 2.0 Migration

2006-06-05 Thread Tom Chiverton



On Monday 05 June 2006 13:57, porsoc wrote:
 Block of code containing line 183:

Which line ?

 Block of code containing line 103

Which line ?

-- 
Tom Chiverton



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

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

CONFIDENTIALITY

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

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

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







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Flex 1.5 to 2.0 Migration

2006-06-05 Thread porsoc



Sorry for the confusion.

The erros are occuring at the following lines. My best guess is 
that the dot in front of the parms to the function call is causing 
the problem.

1) 

function():Array { return 
[ .lname.text, .fname.text, .mname.text ]; },

2)

function():Array { return [ .linksGrid.selectedIndextoString(), -
1 ]; },



--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 
wrote:

 On Monday 05 June 2006 13:57, porsoc wrote:
  Block of code containing line 183:
 
 Which line ?
 
  Block of code containing line 103
 
 Which line ?
 
 -- 
 Tom Chiverton
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF. A list of members is available for inspection at the 
registered office. Any reference to a partner in relation to 
Halliwells LLP means a member of Halliwells LLP. Regulated by the 
Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged. If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents. If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 We are pleased to announce that Halliwells LLP has been voted AIM 
Lawyer of the Year at the 2005 Growth Company Awards












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread mail




		I've done some work in this area as well, and posted an example a few weeks ago on my blog ( http://blog.benstucki.net/?id=22 ). With a slight change it can be used to update the style of anything in the application, not just custom styles. I will try to update it toward that end tonight. Also, I would be happy to collaborate with anyone else working on similar functionality until we hear what Adobe's timeline is for it. Ben Stuckihttp://blog.benstucki.net/
		

From: "Jason Hawryluk" [EMAIL PROTECTED]Sent: Monday, June 05, 2006 7:34 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3
		
		
		

		yes exactly, basicly they load a bare bones application component with a defined mx:Style and boom all styles changed. I guess they replaced the loaded style that was compiled in or somthing. Anyway that was flex 1.5, I think... it's been a while, and i'm trying to do this in Flex 2. It did not do any parseing of it at all which is why it rocked :)

		
		

		
		
 
		

		Jason

		
		

		-Message d'origine-De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Michael SchmalleEnvoyé : lundi 5 juin 2006 15:07À : flexcoders@yahoogroups.comObjet : Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3
Hmm,I don't follow, you mean load a style sheet that changes fill color styles?Peace, MikeOn 6/5/06, Jason Hawryluk [EMAIL PROTECTED] wrote:I was thinking more along the lines of styles for components fill colors etc. Someone had done it in Flex 1.5 and it was very slick or it may have been in the alpha (can't recollect). -Message d'origine-De :flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com]De la part de Michael SchmalleEnvoyé : lundi 5 juin 2006 13:33À :flexcoders@yahoogroups.comObjet : Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3Hi,Search the list, there are a couple of posts on this. You need to use the styleSheet load of the TextField. Then custom parse through values. I am sure there will be some class libraries for this in the future. Gordon Smith (Adobe) hinted that there might also be this in a future version of Flex, I am sure of this.The 'apply' part of the algorithm is the hardest. I created this in Flash8 for components, havn't finished it to Flex2. When I do I will post the code as it's kinda fun loading css from styleSheets at runtime ;-)Peace, MikeOn 6/5/06, sourcecoderia [EMAIL PROTECTED] wrote: Has anyone figured out a way to do runtime CSS file loading? Is it possible? I know in Flex 1.5 it was, but the framework has changed so extensively that I have not figured out a way to do it yet.Any idea or help appreciatedJason--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKSWeb site design developmentComputer software developmentSoftware design and developmentMacromedia flexSoftware development best practiceYAHOO! GROUPS LINKS Visit your group "flexcoders" on the web.  To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.-- What goes up, does come down. --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comSPONSORED LINKSWeb site design developmentComputer software developmentSoftware design and developmentMacromedia flexSoftware development best practiceYAHOO! GROUPS LINKS Visit your group "flexcoders" on the web.  To unsubscribe from this group, send an email to:  [EMAIL PROTECTED]  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.-- What goes up, does come down. 







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Instantiation and setting problems - Example included

2006-06-05 Thread Suzy Lawson



 Thanks for your response...this error is still haunting so I
included a simple example to show my problem of class variables not
being able to be set after I initialize a new class. Even if I move
the generateXML method into the complete Handlerthe same null
pointer is still thrown. Any ideas why??

Top-level MXML file:
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
layout=absolute
 mx:Script
  ![CDATA[
  private function setValue() : void
  {
   var testA : TestA = new TestA();
   xmlValue.text = testA.generateXML(55).toXMLString();
  }
  ]]
 /mx:Script
 mx:Button label=Set Value click=setValue()/
 mx:Label id=xmlValue/
/mx:Application

_-
//TestA class
package 
{
 import flash.events.Event;
 import flash.net.URLLoader;
 import flash.net.URLRequest;

 
 public class TestA
 {
  private var sampleXML : XML ;
  
  public function TestA() : void
  {
   var loader : URLLoader = new URLLoader();
 loader.addEventListener(Event.COMPLETE, completeHandler);
   loader.load(new URLRequest(sample.xml));
  }
  
  private function completeHandler(event:Event):void {
 sampleXML = new XML(event.target.data);
  }
  
  public function generateXML(value : String) : XML
  {
   [EMAIL PROTECTED] = value; // error is here b/c sampleXML is 'null'
   return sampleXML;
  }
 }
}

sample.xml file:
test id= data="">
--
The exact error I get is:
TypeError: Error #1009: Cannot access a property or method of a null
object reference.
 at TestA/generateXML()[C:\flex\TestA.as:25]
 at sampleBug/sampleBug::setValue()[C:\flex\sampleBug.mxml:8]
 at sampleBug/___Button1_click()[C:\flex\sampleBug.mxml:12] 

--- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote:

 I'd have to see the code to really understand what is going on, but
can you avoid doing anything in a constructor and use a button or
something to trigger the work to see if that's the issue?
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Suzy Lawson
 Sent: Friday, June 02, 2006 4:54 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Instantiation and setting problems
 
 I'm using the Cairngorm framework, so in the implented Command
classes...
 
 For the XML problem, it's in a class that the Command class calls.
The constructor load the XML file stored locally, then the
completeHandler calls XML(event.target.data) and assigns the XML to a
local variable.
 
 However, when I instantiate this object, then call a method on it,
the XML is still null. If I put a timer on it to stall for a second,
it's there
 
 --- In flexcoders@yahoogroups.com, Peter Farland pfarland@ wrote:
 
  
  Where are you declaring these classes?
  
  
  -Original Message-
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 On Behalf Of Suzy Lawson
  Sent: Friday, June 02, 2006 12:01 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Instantiation and setting problems
  
  I anyone else having issues trying to set values on objects for
 newly instantiated objects in an object graph with 3 or more layers? 
  
  I have the following:
  
  ClassA {
  public var classB : ClassB;
  public var classC : ClassC;
  }
  
  ClassB {
  public var classD : ClassD;
  }
  
  ClassC {
  public var textVal : String='';
  }
  
  and i have a value sets in the ModelLocator (cairngorm) class like so:
  public var allClassAs : ArrayCollection; public var selectedClassA :
 ClassA;
  
  The problem is if I retrieve a single 'ClassA' from the collection
 of allClassAs using the ID of the selectedClassA, then try to make a
call like this:
  classA.classC.text=Whatever;
  
  The mxml field I have bound to that value never displays and I get
 the following debug error.
  
  error during evaluation
  no such variable: classA.classC.textVal
  
  This kind of makes sense since classC wasn't initialized yet, so
 even if I change ClassA to be:
  ClassA {
  public var classB : ClassB = new ClassB(); public var classC :
 ClassC = new ClassC(); }
  
  I still get the same error. In the UI, if I click back, it appears
 correctly, but the first time it always fails. It seems like the set
  (classA.classC.text=Whatever;) is getting called faster then the
 object can be initialized (constructed). 
  
  I've had similar problems when calling:
  var myXML = new XML(event.target.data); [EMAIL PROTECTED]3232;
  
  When I debug this, myXML is still null when the 2nd line is called.
 A work around is to instantiate the XML on startup so the XML is
there before calling the set on @ID, but means more memory. 
  
  Anyone else hitting these issues? 
  
  
  
  
  
  
   Yahoo! Groups Sponsor
 ~-- Everything you need is one click away. 
Make Yahoo! your home page now.
  http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
  

Re: [flexcoders] Re: Flex 1.5 to 2.0 Migration

2006-06-05 Thread Tom Chiverton



On Monday 05 June 2006 16:27, porsoc wrote:
 function():Array { return
 [ .lname.text, .fname.text, .mname.text ]; },

Well, your guess is right.
I'm amazed that ever worked, tbh, but I started stright out with AS3 :-)

Are you saying Iname is a function ? If so, just change to Iname().text, or 
refactor so you can use Iname.getText() etc.

-- 
Tom Chiverton



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

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

CONFIDENTIALITY

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

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

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







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Beta3 on win 2003.

2006-06-05 Thread sufibaba



Hi all,

I have been running Flex Builder on an XP box which has CF and IIS and
everything works fine. Recently, we moved CF to a win2003 (SP1) box
which is running CF7 and IIS. 

I am getting the following error :

Send failed: Channel.Connect.Failed error 
NetConnection.Call.Failed: HTTP: Failed

The flex-enterprise-services.xml is:
C:\Inetpub\wwwroot\CFIDE\WEB-INF\flex\flex-enterprise-services.xml

Any help on this is greatly appreciated.

Tim












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Datagrid itemEditor different per row

2006-06-05 Thread John Grden



http://labs.blitzagency.com/wp-content/xray/flex2/Xray.htmlright clickView SourceOk, just be warned, although this is open source, I haven't cleaned up the source ;) I had 5 days (yes, 5) to convert the old Xray interface into flex2, so there's some not so elegant code - go easy on me ;)
What you're looking for is in Xray.mxml. AT the top are the states that are defined. The top 3 are used with the propertyinspector (datagrid). They all call setPropertyListeners
(stateName:String):voidThere's a switch statement in there for determining what listeners need to be set up etc. Once that's set up, they primarily all talk to 
PropertyTools.as for dealing with updating the data etc based on the state.again, i'll be refactoring as I go to clean up for the official release to OS, but have fun for now.apologies if you go mad.
JGOn 6/4/06, Graham Weldon [EMAIL PROTECTED] wrote:



Hi John,

Do you have a sample showing your various states?

Graham.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] FusionCharts under Flex

2006-06-05 Thread Ely Greenfield





You'll probably have an easier time just building a custom renderer ;)

Ely.
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason
Sent: Sunday, June 04, 2006 9:23 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FusionCharts under Flex

Has anyone had success getting FusionCharts to run under Flex (specifically 2beta3)? If so, I would really love to see some example code. I've been tearing my hair out trying to get it working right.

Thanks.





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

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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: dynamic colors for pieseries wedges

2006-06-05 Thread Ely Greenfield






Hi Jason. I'm sorry to hear you say that. Writing a custom renderer is
a straightforward thing to do. I'd be happy to walk you through the
process more if you like. Everyone's idea of a barchart or a piechart is
a little different from the next guy's idea of the same, so the flex
charting platform focused on building an extensible platform to allow
you to get exactly the chart you want rather than trying to guess ahead
of time at all the features someone might want. This kind of
functionality is exactly the type that is was written for.


Ely.
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jason
Sent: Sunday, June 04, 2006 9:21 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: dynamic colors for pieseries wedges

Thanks for the suggestion. I sure hope they intend to improve this, as
it seems a fairly basic charting feature. As it is, I think we'll go
with FusionCharts instead. Now if only I could get it to work with
Flex...

--- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED]
wrote:

 
 
 
 
 You've got two choices. The first, which is a bit of a hack but might 
 be the easier of the two, would be to write your own code that 
 examines the data, generates an array of fills whose values match the 
 expected colors, and assigning that. The more correct method would be 
 to write a custom item rendere for the wedges that ignores the fills 
 color and picks the fill color based on a value from the data.
 
 
 Ely.
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
 On Behalf Of Jason
 Sent: Friday, June 02, 2006 8:40 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: dynamic colors for pieseries wedges
 
 No ideas?
 
 
 
 --- In flexcoders@yahoogroups.com, Jason jep1975@ wrote:
 
  I'm having a bit of a time figuring this one out. I have a PieChart

  that I'm using to map data that fits into certain categories. I 
  want to always have each category given a fixed color. So, for 
  example, I might have categories Normal (green), Warning (yellow) 
  and Error (red). I'm throwing different data sets at the chart, 
  sorted by total
 
  (so the slices will be arranged in order of size). Sometimes this
 may be:
  
  Normal: 1
  Warning: 5
  Error: 10
  
  Or
  
  Warning: 1
  Normal: 5
  Error: 2
  
  Or
  
  Error: 1
  Normal: 3
  Warning: 10
  
  Or
  
  Error: 5
  Normal: 10
  
  (note that Warning is missing because it didn't show up)
  
  
  Now, in all these cases, I always want Normal to be green, etc. As 
  far as I can tell, you can use a array of solidcolor fills. But it 
  only cares about the ordinal position. So say I give it green, 
  yellow
 
  and red. It will work fine in the first case. But in all the other

  cases, it won't be right because the order is different or some 
  elements might be missing.
  
  I'm pretty new to flex so maybe I'm totally missing something.
 
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Protect your PC from spy ware with award
winning anti spy technology.
 It's free.
 http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
 ~-
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links







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

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



 









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Need Help with Animation Package

2006-06-05 Thread Alex Uhlmann






Hi Alejo,

There are quite a few changed to be done to run AP with 
AS3. I'm in the process of releasing an alpha version of AnimationPackage for 
ActionScript 3. If you're interested in testing (or anyone else), please drop me 
an email offlist. Also, please let me know for what use cases you would like to 
use an AS3 version of AP.

Because in caseyou're using the Flex framework, I'd 
recommendyou use the Flex Effects framework. The Flex Effects framework 
does a lot of things in concert with the Flex framework that AP isn't designed 
to do. That means, an AS3 version of AP will only be targeted for projects that 
doesn't use the Flex Effects framework.

Best,
Alex



  
  

  


  
  

Alex UhlmannConsultant (Rich Internet 
Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, 
South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6969
m: +44 (0)7917 428 951[EMAIL PROTECTED] 
http://weblogs.macromedia.com/auhlmann



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Alejo 
VinjoySent: 04 June 2006 17:33To: 
flexcoders@yahoogroups.comSubject: [flexcoders] Need Help with 
Animation Package
Hello , I was wondering if a could use Alex Uhlman´s Animation 
Package with Flex Biuld 2.0 Beta 3. It seems that´s been a few changes from 
ActionScript 2.0 to ActionScript 3.0 and I can´t make it work properly (It has a 
lot of problems with Void instead of void and there is no way I can make Flex 
Builder organize correcty the imports that a need in order to use the classes of 
the Animation Packeage.Does anybody know how to fix this, or does anybody 
had this problem?Thanks,
__Correo 
Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar 





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









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

2006-06-05 Thread Michael Schmalle



Hi,

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

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

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

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






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Flex 2.0 Beta3 | Getting data from DragSource Object

2006-06-05 Thread Dennis Riedel



Hello

I tried out to drag and drop an item from one DataGrid component to
another DataGrid component. That works really fine.
But I do not want to have a second DataGrid but a custom component which
displays the data that is dropped into it in another form.

For testing purposes I´ve set for the second DataGrid (the dropTarget)
the function for dragEnter and wrote an Event Handler Function.
In this function I access the event object DragEvent and get the
DragSource object.

What I want to get now is the data within this DragSource object from
the item I am dragging. The documentation (LiveDocs) says something
about an IDataProvider Interface but I cannot find it anywhere in the
LiveDocs.

Normally I guess I would access the data when the item was dropped
through my container component. But I just want to access the data of
the dragged item before I create a new graphical representation/widget
with the data in it. So I want to get the data within my Drop Event
Handler function. I thought I can do this through this DragSource
object...

Thanks for any suggestions on this.

Dennis






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] refering to a particular tab in TabNavigator FLEX1.5

2006-06-05 Thread Tracy Spratt










Per the docs, the selectedChild
property is available on the TabNavigator.



Also, getChildAt() will return a child
based on index.



Tracy











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sandip Patil
Sent: Monday, June 05, 2006 1:17
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] refering
to a particular tab in TabNavigator FLEX1.5







Hi,











To change color,











once u get selected tab ,











then inside that function write--- id of
selected tab.setStyle(color,#FF9900);











function selectedTab(){
 if(selectedtabNavigator.selectedIndex==0){
id of
tab.setStyle(color,#FF9900); ;
 }


naveen kumar
[EMAIL PROTECTED] wrote:





Thanks for replay,

but here my intention is to change the perticular tab text color , for that 
i need to access the particular tab, can you give me the snippet for that

thanks


From: Sandip Patil [EMAIL PROTECTED]
Reply-To: flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] refering to a particular tab in
TabNavigator 
FLEX1.5
Date: Thu, 1 Jun 2006 23:50:33 -0700 (PDT)

Hi,

 mx:TabNavigator id=selectedtabNavigator
change=selectedTab() 


  selectedTab() function is,

 function selectedTab(){
 if(selectedtabNavigator.selectedIndex==0){

mx.controls.Alert.show(HI) ;
 }


 Sandip


naveen kumar [EMAIL PROTECTED] wrote:
 Hi all

Can any one plese tell me the way to refer to a perticular tab in the
TabNavigator in FLEX1.5


Thanks  Regards
Naveen kumar

_
Fall in Love... Get married! Join FREE!
http://www.shaadi.com/ptnr.php?ptnr=msnhottag



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



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

-
 YAHOO! GROUPS LINKS


 Visit your group flexcoders on the
web.

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

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


-




 __
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

_
Shah Rukh fan? Know all about the Baadshah of Bollywood. On MSN Search 
http://server1.msn.co.in/profile/shahrukh.asp





__
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: Instantiation and setting problems - Example included

2006-06-05 Thread Peter Farland



Ah, right, much clearer now that I see this code.


The issue is that a request to an HTTP URL via something like URLLoader
is asynchronous, so the SWF script is not held up waiting for the
network to respond. This means you will need to wait until the response
comes back some time later, i.e. when the result handler is called,
before accessing the generateXML property.

So, I would architect this a little differently.

Decouple the logic for loading XML into a service helper class and then
when you get back a response pass that to a utility method to actually
generate the XML.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Suzy Lawson
Sent: Monday, June 05, 2006 11:52 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Instantiation and setting problems - Example
included

 Thanks for your response...this error is still haunting so I included
a simple example to show my problem of class variables not being able to
be set after I initialize a new class. Even if I move the generateXML
method into the complete Handlerthe same null pointer is still
thrown. Any ideas why??

Top-level MXML file:
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml
layout=absolute
 mx:Script
  ![CDATA[
  private function setValue() : void
  {
   var testA : TestA = new TestA();
   xmlValue.text =
testA.generateXML(55).toXMLString();
  }
  ]]
 /mx:Script
 mx:Button label=Set Value click=setValue()/
 mx:Label id=xmlValue/
/mx:Application

_-
//TestA class
package
{
 import flash.events.Event;
 import flash.net.URLLoader;
 import flash.net.URLRequest;

 
 public class TestA
 {
  private var sampleXML : XML ;
  
  public function TestA() : void
  {
   var loader : URLLoader = new URLLoader();
 loader.addEventListener(Event.COMPLETE, completeHandler);
   loader.load(new URLRequest(sample.xml));
  }
  
  private function completeHandler(event:Event):void {
 sampleXML = new XML(event.target.data);
  }
  
  public function generateXML(value : String) : XML
  {
   [EMAIL PROTECTED] = value; // error is here b/c
sampleXML is 'null'
   return sampleXML;
  }
 }
}

sample.xml file:
test id= data="">
--
The exact error I get is:
TypeError: Error #1009: Cannot access a property or method of a null
object reference.
 at TestA/generateXML()[C:\flex\TestA.as:25]
 at sampleBug/sampleBug::setValue()[C:\flex\sampleBug.mxml:8]
 at sampleBug/___Button1_click()[C:\flex\sampleBug.mxml:12] 

--- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote:

 I'd have to see the code to really understand what is going on, but
can you avoid doing anything in a constructor and use a button or
something to trigger the work to see if that's the issue?
 
 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Suzy Lawson
 Sent: Friday, June 02, 2006 4:54 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Instantiation and setting problems
 
 I'm using the Cairngorm framework, so in the implented Command
classes...
 
 For the XML problem, it's in a class that the Command class calls.
The constructor load the XML file stored locally, then the
completeHandler calls XML(event.target.data) and assigns the XML to a
local variable.
 
 However, when I instantiate this object, then call a method on it,
the XML is still null. If I put a timer on it to stall for a second,
it's there
 
 --- In flexcoders@yahoogroups.com, Peter Farland pfarland@ wrote:
 
  
  Where are you declaring these classes?
  
  
  -Original Message-
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
 On Behalf Of Suzy Lawson
  Sent: Friday, June 02, 2006 12:01 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Instantiation and setting problems
  
  I anyone else having issues trying to set values on objects for
 newly instantiated objects in an object graph with 3 or more layers? 
  
  I have the following:
  
  ClassA {
  public var classB : ClassB;
  public var classC : ClassC;
  }
  
  ClassB {
  public var classD : ClassD;
  }
  
  ClassC {
  public var textVal : String='';
  }
  
  and i have a value sets in the ModelLocator (cairngorm) class like
so:
  public var allClassAs : ArrayCollection; public var selectedClassA :
 ClassA;
  
  The problem is if I retrieve a single 'ClassA' from the collection
 of allClassAs using the ID of the selectedClassA, then try to make a
call like this:
  classA.classC.text=Whatever;
  
  The mxml field I have bound to that value never displays and I get
 the following debug error.
  
  error during evaluation
  no such variable: classA.classC.textVal
  
  This kind of makes sense since classC wasn't initialized yet, so
 even if I change ClassA to be:
  ClassA {
  public var classB : ClassB = new ClassB(); public var classC :
 ClassC = new ClassC(); }
  
  I still 

Re: [flexcoders] Framerate of Flex (Movies)

2006-06-05 Thread Luís Gustavo Sanabio



framerate default is 24
To change it, use stage.frameRate = xxx
2006/4/26, JesterXL [EMAIL PROTECTED]:



Flex 1.5 it's frameRate in the Application tag. I'm sure mxmlc might of had some param for it (I believe she defaults to 24).

In Flex 2, it's -default-frame-rate:

http://livedocs.macromedia.com/labs/1/flex/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1191.html



- Original Message - 
From: Simeon Bateman 
To: flexcoders@yahoogroups.com 
Sent: Wednesday, April 26, 2006 2:37 PM
Subject: Re: [flexcoders] Framerate of Flex (Movies)
I remember seeing a reference for the the compliler options come up on this list. In that doc was a setting where you could set the framerate ( i think). So I would do a search for something like that.
Hope that helps. simeon
On 4/26/06, Adam Sebastian [EMAIL PROTECTED]
 wrote: 



does anyone know the default framerate of flex apps and where to configure it (if possible)?
--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 



YAHOO! GROUPS LINKS 

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











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Object name referencing within a TitleWindow

2006-06-05 Thread rgwilson26



I am working on an app where I would like to reuse TitleWindow popup 
component many times throughout my app. However, depending where the 
user is in the app, it will change the title on the TitleWindow 
popup. I need to reference the specific initObject name each time a 
new TitleWindow instance is created and change the title depending 
on what the titlewindow popup is being used for.

So, if my showText method creates a new popup with the initObject 
name of textZoom I need to know how to how to reference it in the 
popup (in an if statement) to change the title. 

I think I am on the right track, but any suggestions would be 
appreciated.

Thanks

*
 mainApp.mxml
*

public function showText():Void{ 

 var textDescObj = new Object();
 var t:Object = TitleWindow(PopUpManager.createPopUp this, 
textZoomPopup, false, textDescObj, false))
}


*
 TitleWindow.mxml
*
pseudo code:

If this objects name == textDescObj
then change my title to Desired Title
else if objects name == someOtherObjName
then change my title to Different Title













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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] Re: DateTime in WebService

2006-06-05 Thread Douglas Knudsen



old thread I know...we are using Flex 1.5. We have a app that uses a
Oracle timestamp field. In the Java code we use a java.util.Date and
the corresponding VO in AS uses a Date. We want all times to be EST
no matter where the client app is. So, we use the timezone offset in
AS to massage all dates padding the hours before saving the data and
after fetching the data. Works. Except when freaky things happen
when 5000+ users start using it! :) Things like user is double
clicking a save icon instead of single clicking, when this occurs the
datea get massaged twice sometimes causing a display muck up. Yeah,we
coded around this, but feels so hacky. Is there another approach
maybe? thoughts?

One big issue we have is with Arizona. Not all of Arizona follows
DST, the non Navajo Nation parts of AZ do not follow DST. We have
suers their that the Flash player says they are following DST when
they are not. Is this a known issue? A Windows issue? We are
baffled at this one.

DK

On 2/22/06, Matt Chotin [EMAIL PROTECTED] wrote:
 Sorry, the Player automatically converts Dates to the local timezone.
 You'll need to adjust using the timezone offset if you want it to go
 back.

 Matt

 -Original Message-
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Pablo Apanasionek
 Sent: Tuesday, February 21, 2006 7:18 AM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Re: DateTime in WebService


 Dave,

 it's a Date object.

 ---Pablo Gustavo Apanasionek

 -Mensaje original-
 De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En
 nombre de Dave Wolf
 Enviado el: Martes, 21 de Febrero de 2006 12:07
 Para: flexcoders@yahoogroups.com
 Asunto: [flexcoders] Re: DateTime in WebService

 What Java object type are you using? A Date or a Calendar object?

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

 Email: [EMAIL PROTECTED]
 Office: 866-CYNERGY


 --- In flexcoders@yahoogroups.com, Pablo Apanasionek
 [EMAIL PROTECTED] wrote:
 
  Take a look at this:
 
  A J2EE-Axis webservice of mine is returning a DateTime in this way:
 
  dateFrom xsi:type=xsd:date2006-06-01Z/dateFrom
  dateTo xsi:type=xsd:date2006-06-02Z/dateTo
 
  And Flex turns it into:
 
  dateFrom[Local Time] : Wed May 31 21:00:00 2006 (-3:00) dateTo[Local
  Time] : Thu Jun 01 21:00:00 2006 (-3:00)
 
  Is there any way of disabling this local time convertion? O maybe
  defining the WSDL to use always local or UTC time?
 
  Thanks in advance
  ---Pablo Gustavo Apanasionek
 






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








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










-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] F2B3: namespaceDeclarations() doesn't see un-prefixed namespaces

2006-06-05 Thread ben.clinkinbeard



Hello, after getting a response from my WebService, I pull a chunk of
the response into a new XML object. When I print out the
namespaceDeclarations().length for it, it returns 0, even though there
is an 'xmlns' attribute on the root node. My ultimate goal is to
remove the namespace but I can't remove it if its not recognized as
being there. Can anyone explain what is going on here? Here is my xml:

RPRDocumentHistory xmlns=http://mysite.com/BackOffice/DocMetadata
 MetadataTypeDocumentHistory/MetadataType
 Entry
 CreateDate5/5/2006 9:56:30 AM/CreateDate
 LastModifiedDate5/23/2006 1:26:44 PM/LastModifiedDate
 Plans
 PlanNumber7173/PlanNumber
 PlanNumber7167/PlanNumber
 /Plans
 /Entry
/RPRDocumentHistory


Thanks,
Ben










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Object name referencing within a TitleWindow

2006-06-05 Thread Tracy Spratt



You could pass in the title:
showText(sTitle:String){
var textDescObj:Object = {title:sTitle};
...

Tracy

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26
Sent: Monday, June 05, 2006 2:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Object name referencing within a TitleWindow

I am working on an app where I would like to reuse TitleWindow popup 
component many times throughout my app. However, depending where the 
user is in the app, it will change the title on the TitleWindow 
popup. I need to reference the specific initObject name each time a 
new TitleWindow instance is created and change the title depending 
on what the titlewindow popup is being used for.

So, if my showText method creates a new popup with the initObject 
name of textZoom I need to know how to how to reference it in the 
popup (in an if statement) to change the title. 

I think I am on the right track, but any suggestions would be 
appreciated.

Thanks

*
 mainApp.mxml
*

public function showText():Void{ 

 var textDescObj = new Object();
 var t:Object = TitleWindow(PopUpManager.createPopUp this, 
textZoomPopup, false, textDescObj, false))
}


*
 TitleWindow.mxml
*
pseudo code:

If this objects name == textDescObj
then change my title to Desired Title
else if objects name == someOtherObjName
then change my title to Different Title










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] F2B3 -- global keyboard event capture, problems with focus

2006-06-05 Thread Tom Bray



I'm trying to capture global keyboard events so I can implement keyboard shortcuts in my app. Let's say it's an email app and as soon as it loads you want to press CTRL+M to show a New Message popup. The docs on handling keyboard events make it sound like this is possible, but the sample code provided doesn't work unless you set focus by clicking on a button (or list item, or textInput, etc) in your app first. Clicking a Canvas isn't enough. Is there a good way to handle these events without making the user click on something first? Can a Canvas have focus? Can I programatically assign focus? 
What I'm finding is that even after following these steps...1. click on something to set focus2. use the keyboard shortcut to display a popup3. click a button in that popup to dismiss it...focus is now lost and I can't use CTRL+M to open a new popup unless I click on something else. That defeats the purpose of keyboard shortcuts so I'm hoping there's a better way.
Thanks,Tom






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: Cairngorm question

2006-06-05 Thread Mike Britton



For what it's worth, I'm also interested in either the updated
articles for CG2B3/Flex 2.0 or a *basic* sample application, before
the Flex 2 release if possible.

Mike









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Image problems

2006-06-05 Thread Mitch Grasso





I believe there is a bug in 3.0 that requires image embed 
paths to start with '/'. You can remove the leading ..

mitch


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of MichaelSent: 
Monday, June 05, 2006 7:23 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Image 
problems


Hello all, I am trying to work with 
drag and drop. I have a canvas in which I put a background image to be a 
recycle bin. Everything was fine for about a week and all of a sudden the 
image has disappeared. I dont know what is going on. I cannot think 
of anything that has changed that may have caused it. Can someone tell me 
if there is a better way of doing this???

mx:VBox
 
mx:Label text="Recycle Bin" 
fontWeight="bold"/
 
mx:Canvas id="trash" height="75" width="75" 
backgroundImage="@Embed('../images/recycle.gif')" 
dragEnter="doDragEnterImage(event);" 
dragDrop="doDragDropImage(event)"/
/mx:VBox





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Image problems

2006-06-05 Thread Michael










Thanks for your reply mitch.



I tried discarding the leading .. and I
still get no image. My file structure is



MainApp.mxml

Images(folder)

---recycle.gif

Components(folder)

---ComponentUsingImage.mxml



Is there something I am missing? I
tried embedding the image in actionscript and holding it in a variable, but
that didnt work. Can anyone help me with this?



Michael











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitch Grasso
Sent: Monday, June 05, 2006 1:22
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Image
problems





I believe there is a bug in 3.0 that
requires image embed paths to start with '/'. You can remove the leading ..



mitch









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael
Sent: Monday, June 05, 2006 7:23
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Image
problems

Hello all, I am trying to work with drag and drop. I
have a canvas in which I put a background image to be a recycle bin.
Everything was fine for about a week and all of a sudden the image has
disappeared. I dont know what is going on. I cannot think of
anything that has changed that may have caused it. Can someone tell me if
there is a better way of doing this???



mx:VBox

 mx:Label text=Recycle
Bin fontWeight=bold/

 mx:Canvas id=trash
height=75 width=75
backgroundImage=@Embed('../images/recycle.gif')
dragEnter=doDragEnterImage(event);
dragDrop=doDragDropImage(event)/

/mx:VBox









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Flex 1.5 to 2.0 Migration

2006-06-05 Thread porsoc



Thanks Tom. A couple things came into play here. First I had an 
undefineed property from model tag reference as one of the parms to 
the method call. Second there was an unneeded this operator in 
front of parms for the other function call.

Josh
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 
wrote:

 On Monday 05 June 2006 16:27, porsoc wrote:
  function():Array { return
  [ .lname.text, .fname.text, .mname.text ]; },
 
 Well, your guess is right.
 I'm amazed that ever worked, tbh, but I started stright out with 
AS3 :-)
 
 Are you saying Iname is a function ? If so, just change to Iname
().text, or 
 refactor so you can use Iname.getText() etc.
 
 -- 
 Tom Chiverton
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF. A list of members is available for inspection at the 
registered office. Any reference to a partner in relation to 
Halliwells LLP means a member of Halliwells LLP. Regulated by the 
Law Society.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged. If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents. If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 We are pleased to announce that Halliwells LLP has been voted AIM 
Lawyer of the Year at the 2005 Growth Company Awards











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Object name referencing within a TitleWindow

2006-06-05 Thread rgwilson26



I am not sure if it matters but, I am working with Flex 1.5. I 
declared a string and gave it a title specific to the component. 
Then attached that String to the new object. However I am still 
getting undefined as my title when it creates my popup. Is there 
somthing else I am missing?

This is what I have:

public var sTitle : String = my component specific title;

showText(sTitle:String){
var textDescObj:Object = {title:sTitle};
var t:Object = TitleWindow(PopUpManager.createPopUp(this, textZoom, 
false, textDescObj, false));
}


--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] 
wrote:

 You could pass in the title:
 showText(sTitle:String){
 var textDescObj:Object = {title:sTitle};
 ...
 
 Tracy
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26
 Sent: Monday, June 05, 2006 2:34 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Object name referencing within a TitleWindow
 
 I am working on an app where I would like to reuse TitleWindow 
popup 
 component many times throughout my app. However, depending where 
the 
 user is in the app, it will change the title on the TitleWindow 
 popup. I need to reference the specific initObject name each time 
a 
 new TitleWindow instance is created and change the title depending 
 on what the titlewindow popup is being used for.
 
 So, if my showText method creates a new popup with the initObject 
 name of textZoom I need to know how to how to reference it in the 
 popup (in an if statement) to change the title. 
 
 I think I am on the right track, but any suggestions would be 
 appreciated.
 
 Thanks
 
 *
 mainApp.mxml
 *
 
 public function showText():Void{ 
 
 var textDescObj = new Object();
 var t:Object = TitleWindow(PopUpManager.createPopUp this, 
 textZoomPopup, false, textDescObj, false))
 }
 
 
 *
 TitleWindow.mxml
 *
 pseudo code:
 
 If this objects name == textDescObj
 then change my title to Desired Title
 else if objects name == someOtherObjName
 then change my title to Different Title
 
 
 
 
 
 
 
 
 
 
 --
 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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Flex 2.0B3 DataGridColumn dependency

2006-06-05 Thread porsoc



I get the following warnings when I compile with dataGrid columns in 
my datagrid.

Unable to resolve dependency on _DataGridColumn3_c.

Any ideas on how to resolve this?

DataGrid in question
mx:DataGrid id=linksGrid dataProvider={linksDataObject}
 mx:columns
  mx:DataGridColumn headerText=Linked Customer 
dataField=formatted_name /
  mx:DataGridColumn headerText=Link Type 
dataField=value_description /
  mx:DataGridColumn headerText=Job Title 
dataField=job_title /
  mx:DataGridColumn headerText=Customer 
dataField=type/
 /mx:columns
/mx:DataGrid 

Josh









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: RDS problems with beta 3

2006-06-05 Thread Ed Lovell




João, 

Thanks for the suggestion. I've tried both port 80 and port 8500 with FB2 running on the same box as CF7 and a separate box. The really weird thing is that I can access via RDS from CF Report Builder, but not from FB2b3. 

-Ed

 From: "João Fernandes" [EMAIL PROTECTED]  Subject: Re: RDS problems with beta 3 
 I had the same issue when using IIS and pointing to port 80. 
 When using de CF instance port number It started to work.

 João Fernandes Dep. Informática - à rea de Desenvolvimento Cofina media

 I'm having problems with Flex Builder 2 beta 3 in connecting via 
 RDS to CFMX7. I installed the CF_FBExtensions_B3_0515 on top 
 of FB2b3. In trying to configure RDS to connect to my CF7 server, 
 all I can get is "Unable to contact the RDS server...". I've tried two 
 different CF7 servers and have verified that both CF7 server are 
 accepting RDS connections since I can connect to both using RDS 
 via CF Report Writer. I've tried connecting by host name and IP 
 address. Any suggestions?? Thanks!

IMPORTANT NOTICE:  This e-mail is meant only for the use of the intended
recipient.  It may contain confidential information which is legally
privileged or otherwise protected by law.  If you received this e-mail
in error or from someone who was not authorized to send it to you, you
are strictly prohibited from reviewing, using, disseminating,
distributing or copying the e-mail.  PLEASE NOTIFY US IMMEDIATELY OF THE
ERROR BY RETURN E-MAIL AND DELETE THIS MESSAGE FROM YOUR SYSTEM.  Thank
you for your cooperation.







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Re: quick filter for datagrid

2006-06-05 Thread tonyx_788



Thanks for the fast reply Jeremy
but do you know if this works in Flex 2 Beta1
i only see it for beta 3

--- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote:

 there's an excellent article on Sho Kuwamoto's blog @
 

http://kuwamoto.org/2006/04/03/flex-auto-complete-text-input-control-v06/
 
 it's not exactly what you want, but the way Sho filters the items in the
 Listbox may shed a light on your need.
 
 
 
 On 6/5/06, tonyx_788 [EMAIL PROTECTED] wrote:
 
  I everyone
  i think my cuestion is simple
 
 
  i have a datagrid with 1000 names (this names are in a xml file)
  what i one to do is to put an input text so when somebody
  is looking for a specific name he just start typing and the datagrid
  start showing only what is being type on the textinput
 
  one more thing i am using this for distribution on a cd so i don't
  think i can use any other language,
  can i?
 
 
 
 
 
 
 
 
 
  --
  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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] F2B3 -- global keyboard event capture, problems with focus

2006-06-05 Thread Matt Horn










IIRC, the docs have been updated for this.
Have you tried adding the listener to all keydown events on the stage? Like
this:



stage.addEventListener(KeyboardEvent.KEY_DOWN,
myHandler)



BTW, you can always set focus
programmatically using the UIComponents setFocus() method.



hth,



matt horn

flex docs











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Bray
Sent: Monday, June 05, 2006 3:06
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] F2B3 --
global keyboard event capture, problems with focus





I'm trying to capture
global keyboard events so I can implement keyboard shortcuts in my app.
Let's say it's an email app and as soon as it loads you want to press CTRL+M to
show a New Message popup. The docs on handling keyboard
events make it sound like this is possible, but the sample code provided
doesn't work unless you set focus by clicking on a button (or list item, or
textInput, etc) in your app first. Clicking a Canvas isn't enough.
Is there a good way to handle these events without making the user click on
something first? Can a Canvas have focus? Can I programatically
assign focus? 

What I'm finding is that even after following these steps...

1. click on something to set focus
2. use the keyboard shortcut to display a popup
3. click a button in that popup to dismiss it

...focus is now lost and I can't use CTRL+M to open a new popup unless I click
on something else. That defeats the purpose of keyboard shortcuts so I'm
hoping there's a better way. 

Thanks,

Tom








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











RE: [flexcoders] Re: RDS problems with beta 3

2006-06-05 Thread João Fernandes



Ed,

Did you install the cf_connectivity_updater ? To be able to connect RDS with FB you'll need the updater otherwise it won't work.

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Ed Lovell
Sent: Mon 05-Jun-06 9:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: RDS problems with beta 3
 
João, 
 
Thanks for the suggestion. I've tried both port 80 and port 8500 with FB2 running on the same box as CF7 and a separate box. The really weird thing is that I can access via RDS from CF Report Builder, but not from FB2b3. 
 
-Ed
 
 From: João Fernandes [EMAIL PROTECTED] 
 Subject: Re: RDS problems with beta 3 
 I had the same issue when using IIS and pointing to port 80. 
 When using de CF instance port number It started to work.
 
 João Fernandes
 Dep. Informática - à rea de Desenvolvimento
 Cofina media
 
 I'm having problems with Flex Builder 2 beta 3 in connecting via 
 RDS to CFMX7. I installed the CF_FBExtensions_B3_0515 on top 
 of FB2b3. In trying to configure RDS to connect to my CF7 server, 
 all I can get is Unable to contact the RDS server I've tried two 
 different CF7 servers and have verified that both CF7 server are 
 accepting RDS connections since I can connect to both using RDS 
 via CF Report Writer. I've tried connecting by host name and IP 
 address. Any suggestions?? Thanks!



IMPORTANT NOTICE: This e-mail is meant only for the use of the intended
recipient. It may contain confidential information which is legally
privileged or otherwise protected by law. If you received this e-mail
in error or from someone who was not authorized to send it to you, you
are strictly prohibited from reviewing, using, disseminating,
distributing or copying the e-mail. PLEASE NOTIFY US IMMEDIATELY OF THE
ERROR BY RETURN E-MAIL AND DELETE THIS MESSAGE FROM YOUR SYSTEM. Thank
you for your cooperation.







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  







winmail.dat

[flexcoders] Re: Question about History Management

2006-06-05 Thread tonyx_788



Hi everyone
i have Flex 2 Beta1
any one of u have an example code
for this history managment button


--- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote:

 Hello Matt,
 
  Yes, for Flex 1.5, history management requires the server.
 
 But still, history management works for static SWF files generated in
 offline by mxmlc Flex 1.5 standalone compiler, at least in our case.
 
 We use SWFObject in our custom HTML wrapper file to display this
 static SWF, something like that:
 
 ---
 var swfObj = new SWFObject(swfSource, testmovie, swfWidth,
swfHeight, requiredVer, null, useExpressInstall);
 swfObj.addVariable(historyUrl,
escape(/flex-internal?action="">
 swfObj.addVariable(lconid, lc_id);
 swfObj.addVariable(versionChecked, true);
 
 swfObj.write(flashcontent);
 ---
 
 Flex server 1.5 is also installed at the deployment server as the
 license requires.
 
 Also, I must admit, the details on who delivers this mistery variable
 lc_id to the movie are unknown to me.
 
 
 
 
 -- 
 Best regards,
 Andriy mailto:[EMAIL PROTECTED]











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] F2B3 -- global keyboard event capture, problems with focus

2006-06-05 Thread Pablo Apanasionek





Matt/Anyone,

is there a way to do this at an mx:Application tag level, so that the 
same handler is used across all files? I'm looking for this sort of solution for 
Flex 1.5.

Thanks!
---
Pablo Apanasionek


De: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] En nombre de Matt HornEnviado 
el: Lunes, 05 de Junio de 2006 17:35Para: 
flexcoders@yahoogroups.comAsunto: RE: [flexcoders] F2B3 -- global 
keyboard event capture, problems with focus


IIRC, the docs have 
been updated for this. Have you tried adding the listener to all keydown events 
on the stage? Like this:

stage.addEventListener(KeyboardEvent.KEY_DOWN, 
myHandler)

BTW, you can always set 
focus programmatically using the UIComponents setFocus() 
method.

hth,

matt 
horn
flex 
docs





From: 
flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] 
On Behalf Of Tom BraySent: Monday, June 05, 2006 3:06 
PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] F2B3 -- global 
keyboard event capture, problems with focus

I'm trying to capture global keyboard 
events so I can implement keyboard shortcuts in my app. Let's say it's an 
email app and as soon as it loads you want to press CTRL+M to show a "New 
Message" popup. The docs on handling keyboard events make it sound like 
this is possible, but the sample code provided doesn't work unless you set focus 
by clicking on a button (or list item, or textInput, etc) in your app 
first. Clicking a Canvas isn't enough. Is there a good way to handle 
these events without making the user click on something first? Can a 
Canvas have focus? Can I programatically assign focus? What I'm 
finding is that even after following these steps...1. click on something 
to set focus2. use the keyboard shortcut to display a popup3. click a 
button in that popup to dismiss it...focus is now lost and I can't use 
CTRL+M to open a new popup unless I click on something else. That defeats 
the purpose of keyboard shortcuts so I'm hoping there's a better way. 
Thanks,Tom





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] Setting an Imge to sortArrowSkin

2006-06-05 Thread vestcomprogrammer



I know in the tag you can set an imge like this:
sortArrowSkin = @Embed('heart.gif') 

How would you do it in actionscript?


-Bill









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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Re: Topology view? - also- generating server-side images

2006-06-05 Thread bobbrose



Hey folks, I posted a while ago about topology 'views' in flex. Some
people asked for references to commercial packages to look at and
maybe do something in flex. I posted them (below), but haven't heard
if anyone was able to do something interesting in flex.

Another tack I may take is to use ilog to generate an svg or jpg on
the server and send it back to flex for display. I want to be able to
click on the image, though, and know what 'component' was clicked on.

Has anyone done something similar, not necessarily w/topology, but
images generated on the server?

thanks!
Bob


--- In flexcoders@yahoogroups.com, bobbrose [EMAIL PROTECTED] wrote:

 Hey Thanks for wanting to check this out, I'm hoping you can do
 something interesting!
 
 The layout toolkits that I'm familiar with are not open-source.
 
 One of the most full-featured, powerful, etc. is ILOG:
 http://www.ilog.com/products/jviews/ 
 
 It's pricey, though.
 
 There's a a similar package from Tom Sawyer Software:
 http://www.tomsawyer.com/home/products.php (visualization and layout).
 Never used it, but it looks great.
 
 There are a few open-source ones, but I've never used em:
 http://www.graphviz.org/About.php
 
 Actually, this one looks really promising:
 http://www.jgraph.com
 
 I might look at jgraph some more!
 
 thanks!
 Bob
 
 
 --- In flexcoders@yahoogroups.com, jeremy lu wade.lu@ wrote:
 
  can you guys provide links to those available java/c++/flash
 components ?
  will take a look and see what I can do :-)
  
  
  On 4/15/06, mark_g_wales stuff@ wrote:
  
  
   Bob,
  
   I asked a similar question a while back - using the term directed
   graph instead of topology. The short answer was that I couldn't find
   one written in Flex, but I did find a couple that were
Flash-based and
   provided source code or enough hints that putting it together wasn't
   that hard.
  
   While I can't share mine publicly at this point, I can say that for
   relatively small volumes of objects, putting Sprites on a
UIComponent
   and using the graphics package to draw lines between them is pretty
   straightforward if you are willing to undertake coding it yourself.
  
   -Mark
  
   --- In flexcoders@yahoogroups.com, bobbrose bobbrose@ wrote:
   
Hey folks, anyone know of a flex component (3rd party,
product, open
source, etc.) for doing topology layout in flex? Something where
 I can
create Node objects, connect them with Link objects, have it lay
 em out
automatically or let me lay out the nodes and the links draw
 themselves?
   
There are lots of these for Java/c++, but I haven't found
 anything yet
for flex.
   
thanks,
bob
   
  
 











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  











[flexcoders] Re: Image problems

2006-06-05 Thread Peter Blazejewicz



Hi Michael,

to embed images in custom mxml component in: {PROJECT}/com/
peterblazejewicz/youtube/view/renderers/

i've used:

[Embed(source=/assets/images/star_sm_bg.gif)]
private var backgroundIcon:Class;
[Embed(source=/assets/images/star_sm_half.gif)]
private var halfIcon:Class;
[Embed(source=/assets/images/star_sm.gif)]
private var fullIcon:Class;

and that's working fine,
however I can confirm that there are incompabilities between beta 2 
and beta 3 syntax for Embed tag and paths,
search forum for embed tag, I believe it was already posted before,

regards,
Peter Blazejewicz










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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












RE: [flexcoders] Re: Cairngorm question

2006-06-05 Thread Steven Webster



Hi guys,

As I'm sure you're aware, the product team are gearing up for Flex 2
release. As the product goes through it's final revs towards release,
we're focussing our time on ensuring that the next release of Cairngorm
and the samples are aligned with the final product release.

There will be a significant increase in the amount of docs and articles
from that point forwards.

In the meantime, if you have any specific questions, we'll do our utmost
to answer them here in the meantime !

Best,

Steven

  Steven Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6108
m: +44 (0) 7917 428 947 
[EMAIL PROTECTED] 

 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Mike Britton
 Sent: 05 June 2006 20:11
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Cairngorm question
 
 For what it's worth, I'm also interested in either the 
 updated articles for CG2B3/Flex 2.0 or a *basic* sample 
 application, before the Flex 2 release if possible.
 
 Mike
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Protect your PC from spy ware with 
 award winning anti spy technology. It's free.
 http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 
 
 
 






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












Re: [flexcoders] UNSUBSCRIBE

2006-06-05 Thread John Dowdell



Grahame Oakland wrote:
 UNSUBSCRIBE
 
From: Tolulope Olonade [EMAIL PROTECTED]
 Just wondering why Adobe/Macromedia did not provide a download
link for the videos on this page:

Hey, he's entitled to his opinion, he shouldn't have to unsubscribe just 
for making a request ;-)


Tolulope, I'm not sure, but will forward your request along... might be 
in hopes of simplifying the interface and user choices, might be some 
other reason. I'll flag your post here for the production team, though.

Grahame, Yahoo! Groups offers unsubscription through a slightly 
different address than messages to the list itself, and it was in some 
of the material you auto-quoted in reply:
 [EMAIL PROTECTED]

jd







-- 
John Dowdell . Adobe Developer Support . San Francisco CA USA
Weblog: http://weblogs.macromedia.com/jd
Aggregator: http://weblogs.macromedia.com/mxna
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, thanks.






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] Webservices not working.

2006-06-05 Thread Jeremy Rottman
I am working on a flex app and I am trying to use a webservice to
transfer data between my cf server and my flex app. However, code that
I know worked in flex 2b2 is not working in flex 2 b3. I have posted a
really simple app below, that by all means should display information
but doesnt. 

I know the cfc is working, I can test it with a cfdump and it displays
the correct information.

Can someone give me a hand with this. 

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute
mx:WebService id=GetFileNumMod useProxy=false
wsdl=http://fx3.homesmartagent.com/hs2f/cfc/cfcCory.cfc?wsdl;
showBusyCursor=true
mx:operation name=fileNumQry 
result=GetFileNumModfileNumQryResult(
GetFileNumMod.fileNumQry.result ) 
fault=GetFileNumModfileNumQryFault(event)/
/mx:WebService


mx:Script
![CDATA[
import mx.utils.ObjectUtil;
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
// THIS FUNCTION CALLS WEBSERVICE 
public function GetFileNumModfileNumQry(){
GetFileNumMod.fileNumQry();}
// THIS FUNCTION POPULATES THE DATAGRID BELOW WITH THE RESULTS THAT
ARE RETURNED FROM WEBSERVICE CALL   
public function GetFileNumModfileNumQryResult(result){
Alert.show(hello world);
}
// DISPLAY ANY FAULTS.
public function GetFileNumModfileNumQryFault(event:FaultEvent){
Alert.show(ObjectUtil.toString(event.fault));

}
]]
/mx:Script

mx:Panel x=0 y=0 width=100% height=100% layout=absolute
title=My File Numbers
mx:DataGrid x=10 id=fileNumDG y=10 width=50% 
height=50%
mx:columns
mx:DataGridColumn headerText=File Number 
dataField=FLD_FILENUM/
/mx:columns
/mx:DataGrid

mx:Button x=620 y=9 click=GetFileNumModfileNumQry()
label=Populate/
/mx:Panel
/mx:Application






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

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

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

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

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




[flexcoders] Convert a Bitmap into an Image? Flex 2

2006-06-05 Thread rigidcode




I made a Bitmap programatically in Flex. How do I display it as an
Image. I know I can display it as a Bitmap if I put it into a
UIComponent, but if I do, I can't get events on it like mouse over,
etc. I want to use the Image uicomponent. 

Also, when I send my BitmapData byte array to the server in a
UrlReuest, what format will it be when the server gets it? A windows
.bmp file? 












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












[flexcoders] multiton

2006-06-05 Thread Doug Arthur



I'm taking a stab at creating a multiton in Flex 2.0. Is there an easier way to do it other than how I have done it in the code below? I'm looking for the best implementation.

Thanks!


package com.model {import flash.net.SharedObject;import mx.collections.ArrayCollection;public class Record {private static var instance:Record = null;private static var blocker:Object = null;
private var _so:SharedObject;public function Record(record:int) {_so = SharedObject.getLocal(record.toString());if(blocker == null)throw new Error(Public construction not allowed. Use getInstance());
}public static function getInstance(record:int):Record {blocker = new Object();var key:Object = new Object();key.value = record;instance = Record.get(key);if(instance == null) {
instance = new Record(record);Record.put(key, instance);}return instance;}public function set i(s:String):void {_so.data.i = s;_so.flush();}
public function get i():String {return _so.data.i;}


// INSTANCE FUNCTIONS TO MANAGE MULTITON...public static var instanceContainer:ArrayCollection = new ArrayCollection();public static function put(key:Object, instance:Object) {var newInstance:Object = new Object();
newInstance.key = key;newInstance.instance = instance;instanceContainer.addItem(newInstance);}public static function get(key:Object) {for(var i=0;iinstanceContainer.length
;i++) {var currentInstance = instanceContainer.getItemAt(i);if(currentInstance.key == key)return currentInstance.instance;elsereturn null;}}
}}






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] F2B3 -- global keyboard event capture, problems with focus

2006-06-05 Thread Tom Bray



Matt,The docs at this location:http://livedocs.macromedia.com/labs/1/flex20beta3/0479.htmlStill say to use application.addEventListener
. After changing it to stage and waiting for applicationComplete to set up my listeners, it works the way I want it to.Thanks!-TomOn 6/5/06, 
Matt Horn [EMAIL PROTECTED] wrote:

















IIRC, the docs have been updated for this.
Have you tried adding the listener to all keydown events on the stage? Like
this:



stage.addEventListener(KeyboardEvent.KEY_DOWN,
myHandler)



BTW, you can always set focus
programmatically using the UIComponent's setFocus() method.



hth,



matt horn

flex docs











From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Tom Bray
Sent: Monday, June 05, 2006 3:06
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] F2B3 --
global keyboard event capture, problems with focus





I'm trying to capture
global keyboard events so I can implement keyboard shortcuts in my app.
Let's say it's an email app and as soon as it loads you want to press CTRL+M to
show a New Message popup. The docs on handling keyboard
events make it sound like this is possible, but the sample code provided
doesn't work unless you set focus by clicking on a button (or list item, or
textInput, etc) in your app first. Clicking a Canvas isn't enough.
Is there a good way to handle these events without making the user click on
something first? Can a Canvas have focus? Can I programatically
assign focus? 

What I'm finding is that even after following these steps...

1. click on something to set focus
2. use the keyboard shortcut to display a popup
3. click a button in that popup to dismiss it

...focus is now lost and I can't use CTRL+M to open a new popup unless I click
on something else. That defeats the purpose of keyboard shortcuts so I'm
hoping there's a better way. 

Thanks,

Tom








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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  












__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



RE: [flexcoders] Webservices not working.

2006-06-05 Thread Peter Farland






Change

GetFileNumMod.fileNumQry.result

to

GetFileNumMod.fileNumQry.lastResult



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Jeremy 
RottmanSent: Monday, June 05, 2006 6:03 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Webservices not 
working.
I am working on a flex app and I am trying to use a webservice 
totransfer data between my cf server and my flex app. However, code 
thatI know worked in flex 2b2 is not working in flex 2 b3. I have posted 
areally simple app below, that by all means should display 
informationbut doesnt. I know the cfc is working, I can test it with 
a cfdump and it displaysthe correct information.Can someone give me 
a hand with this. ?xml version="1.0" 
encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"layout="absolute" 
 mx:WebService id="GetFileNumMod" 
useProxy="false"wsdl="http://fx3.homesmartagent.com/hs2f/cfc/cfcCory.cfc?wsdl"showBusyCursor="true" 
 mx:operation name="fileNumQry" 
  
 
result="GetFileNumModfileNumQryResult(GetFileNumMod.fileNumQry.result )" 
  
 
fault="GetFileNumModfileNumQryFault(event)"/ 
/mx:WebService 
 
mx:Script 
![CDATA[ import 
mx.utils.ObjectUtil; import 
mx.controls.Alert; import 
mx.rpc.events.FaultEvent; // THIS FUNCTION 
CALLS WEBSERVICE  
 public function 
GetFileNumModfileNumQry(){ 
  
GetFileNumMod.fileNumQry();} // THIS FUNCTION 
POPULATES THE DATAGRID BELOW WITH THE RESULTS THATARE RETURNED FROM 
WEBSERVICE CALL  
 public function 
GetFileNumModfileNumQryResult(result){ 
  Alert.show("hello 
world");  
} // DISPLAY ANY 
FAULTS.  public 
function 
GetFileNumModfileNumQryFault(event:FaultEvent){ 
  
Alert.show(ObjectUtil.toString(event.fault)); 
  
  
} 
]]/mx:Script mx:Panel 
x="0" y="0" width="100%" height="100%" layout="absolute"title="My File 
Numbers"  
mx:DataGrid x="10" id="fileNumDG" y="10" width="50%" 
height="50%" 
  
mx:columns 
  
 mx:DataGridColumn headerText="File Number" 
dataField="FLD_FILENUM"/ 
  
/mx:columns 
 
/mx:DataGrid 
  
 mx:Button x="620" y="9" 
click="GetFileNumModfileNumQry()"label="Populate"/ 
/mx:Panel/mx:Application 





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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









[flexcoders] LinearAxis title property access...?

2006-06-05 Thread Brendan Meutzner



Hi,It seems there is some contradiction regarding the title property for the LinearAxis Class... the documentation indicates it's read-write, but when I attempt to change programmatically (LinearAxisInstance.title = 'sumthin') FlexBuilder tells me it's read only... Bug?
Thanks,Brendan






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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Catching a key press [Flex Beta2]

2006-06-05 Thread David Harris



I got this working, and then desided that due to the nature of the app I am building would create my own TextInput extending the native TextInput.This then would catch the keyUp event and prevent the native one from bubbling and then dispatch it's own keyUp event after X milli-seconds.
I have gotten it working to the point where it now dispatches both... argh.So what I am trying to do is prevent the native event from bubbling, and can't find how to do this.This is the code I have in the eventListener on the Key up:
private function handleKeyUp(event:Object):void{ event.stopPropagation();//this didn't work   event.stopImmediatePropagation();//and this didn't either...   _tmKeyUp.reset();
   _tmKeyUp.start(); //remove the eventlistener   removeEventListener(keyUp,handleKeyUp);   }
On 6/2/06, David Harris [EMAIL PROTECTED] wrote:
That's awesome thanks Sonja!I'll get that working today!On 6/2/06, Sonja Duijvesteijn 
[EMAIL PROTECTED]
 wrote:


Sorry, it send the mail too early:private var timeSinceKeyPress:Timer;private function init() { textfield.addEventListener(KeyboardEvent.KEY_UP,keyPressed);
  timeSinceKeyPress = new Timer(500);
 timeSinceKeyPress.addEventListener(TimerEvent.TIMER, stoppedTyping);}private function keyPressed(event:KeyboardEvent):void { timeSinceKeyPress.reset(); timeSinceKeyPress.start();}


private var stoppedTyping(event:TimerEvent):void { // whatever it needs to do. }So what it does is: When the first character is typed it starts a timer to check wether that's 500 ms ago already, if so, stop checking and do whatever you do. If someone types in between the timer is reset.
Code isn't checked so might be some slight mistakes, but this is the way you should look for a solution.Kind regards,Sonja Duijvesteijn2006/6/1, Sonja Duijvesteijn 
[EMAIL PROTECTED]:

I don't have any working code but it would be something like:
private var timeSinceKeyPress:Timer;private function init() {}2006/6/1, David Harris 



[EMAIL PROTECTED]:Hi Guys,
Does anyone have an example like this:
I have a text input box and the user types in information.When they have finished typing I would like to fire off an event.The approach I would like is that once they have stopped typeing for500ms, the event gets fired.
Has any done something like this and would like to shared code?Cheers,David Yahoo! Groups Sponsor ~--Get to your groups with one click. Know instantly when new email arrives
http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM~-
--
Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links* To visit your group on the web, go to:


http://groups.yahoo.com/group/flexcoders/
* 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
  
  
  



Web site design development
  
  


Computer software development
  
  


Software design and development
  
  




Macromedia flex
  
  


Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.


  To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service

.



  

















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









Re: [flexcoders] Passing server data back to FileReference upload

2006-06-05 Thread Nathan Smith



I have the same question, can we get access to the HTTP response?

On 5/2/06, mark_judd [EMAIL PROTECTED] wrote:



Though I can get FileReference.upload() talking to my server to get
files uploaded, what I'd like to do is get some sort of token returned
by the server that is the server-side identifier for that uploaded file.

None of the event handlers seem to return any server-side information.
 I was hoping that (at least) the complete handler would allow me to
tap into the actual HTTP response so that I could pick up further
information.

Am I missing something in this API? Or is there a better design
pattern to use to get some server-side context back to the frontend?









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

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









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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




  
















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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  









RE: [flexcoders] Re: Cairngorm question

2006-06-05 Thread Bjorn Schultheiss










Steven,
As a request. 



I am very interested in your teams
ideas of the cairngorm framework that fully utilizes Flex Data Services.

I assume the Flex2 release isnt far
away and I hope an example of this isnt either.



Bjorn











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster
Sent: Tuesday, 6 June 2006 7:41 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
Cairngorm question





Hi guys,

As I'm sure you're aware, the product team are gearing up for Flex 2
release. As the product goes through it's final revs towards release,
we're focussing our time on ensuring that the next release of Cairngorm
and the samples are aligned with the final product release.

There will be a significant increase in the amount of docs and articles
from that point forwards.

In the meantime, if you have any specific questions, we'll do our utmost
to answer them here in the meantime !

Best,

Steven

 Steven Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh,
 EH12 9DQ, UK
p: +44 (0) 131 338 6108
m: +44 (0) 7917 428 947 
[EMAIL PROTECTED] 



 -Original Message-
 From: flexcoders@yahoogroups.com

 [mailto:flexcoders@yahoogroups.com]
On Behalf Of Mike Britton
 Sent: 05 June 2006 20:11
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: Cairngorm question
 
 For what it's worth, I'm also interested in either the 
 updated articles for CG2B3/Flex 2.0 or a *basic* sample 
 application, before the Flex 2 release if possible.
 
 Mike
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- Protect your PC from spy ware with 
 award winning anti spy technology. It's free.
 http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 
 
 
 



__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___





[flexcoders] Best way to design for Speed and Responsiveness

2006-06-05 Thread blomasky
I am building a CRM system that will start with a LOGIN window.  After the user 
is verified, 
the main application window (with multiple tabbed displays). will be presented. 
  Staying with 
the FLEX paradigm, I can have 2 states, the LOGIN and the VERIFIED state with 
the approprate 
panels on each.  However, this creates one LARGE swf.  Logically, I would like 
to have a small 
swf with the login view and logic and have it load the LARGER application code 
in background 
while the user logs on.  This seems like it can be much faster.  If so, can 
anyone give me 
somg guidance as how to write this.

Thanks
Bruce






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

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

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

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

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





[flexcoders] FP9 crashes Firefox frequently

2006-06-05 Thread Tom Bray



I submitted this, but I thought I'd say it here to find out if I'm the only one with the problem.If you have Firefox 1.5.* and FP9, spend a little time on engadget.com or 
huffingtonpost.com and their flash-based ads will crash your browser. It happens every 3 or 4 visits for me. I make sure to click the Send Error Report to Microsoft button every time so its probably already fixed ;)
-Tom

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: [flexcoders] FP9 crashes Firefox frequently

2006-06-05 Thread Michael Schmalle



Oh yeah,

I still have 1.5, and it crashes all the time, I use IE for debugging.
Never upgraded well, just havn't. It's crashing on my Flex projects..

Peace, MikeOn 6/5/06, Tom Bray [EMAIL PROTECTED] wrote:



I submitted this, but I thought I'd say it here to find out if I'm the only one with the problem.If you have Firefox 1.5.* and FP9, spend a little time on 
engadget.com or 
huffingtonpost.com
and their flash-based ads will crash your browser. It happens
every 3 or 4 visits for me. I make sure to click the Send Error
Report to Microsoft button every time so its probably already fixed ;)
-Tom




-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



Re: [flexcoders] Catching a key press [Flex Beta2]

2006-06-05 Thread David Harris



OK.Thanks for that.I have ended up disaptching my own event, to the key up still happens and then a keyingPaused event is firedCheers,DavidOn 6/6/06, 
Sho Kuwamoto [EMAIL PROTECTED] wrote:







Unfortunately, keyboard events are not cancelable, so this 
is not possible.

One (admittedly inelegant) workaround is to figure out what 
you want the text to be as well as the selection and do a callLater to set it 
after the event has percolated up the chain.

-Sho


From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of David 
HarrisSent: Monday, June 05, 2006 3:48 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Catching a key 
press [Flex Beta2]
I got this working, and then desided that due to the nature of the 
app I am building would create my own TextInput extending the native 
TextInput.This then would catch the keyUp event and prevent the native 
one from bubbling and then dispatch it's own keyUp event after X milli-seconds. 
I have gotten it working to the point where it now dispatches both... 
argh.So what I am trying to do is prevent the native event from bubbling, 
and can't find how to do this.This is the code I have in the 
eventListener on the Key up: private function 
handleKeyUp(event:Object):void{  

   
event.stopPropagation();//this didn't work 
  event.stopImmediatePropagation();//and 
this didn't either...  
 _tmKeyUp.reset();   
 _tmKeyUp.start();  

   //remove the 
eventlistener   
removeEventListener(keyUp,handleKeyUp);  

 }
On 6/2/06, David 
Harris [EMAIL PROTECTED] wrote:

  That's awesome thanks Sonja!I'll get that working today!
  
  On 6/2/06, Sonja 
  Duijvesteijn  [EMAIL PROTECTED] 
   wrote:
  

Sorry, it send the mail too early:
private var timeSinceKeyPress:Timer;private 
function init() {
 
textfield.addEventListener(KeyboardEvent.KEY_UP,keyPressed); 
  timeSinceKeyPress = new 
Timer(500);  
timeSinceKeyPress.addEventListener(TimerEvent.TIMER, 
stoppedTyping);}private function 
keyPressed(event:KeyboardEvent):void { 
timeSinceKeyPress.reset(); 
timeSinceKeyPress.start();}private var 
stoppedTyping(event:TimerEvent):void { // whatever it 
needs to do. }So what it does is: When the first character 
is typed it starts a timer to check wether that's 500 ms ago already, if so, 
stop checking and do whatever you do. If someone types in between the timer 
is reset. Code isn't checked so might be some slight mistakes, 
but this is the way you should look for a solution.Kind 
regards,Sonja Duijvesteijn
2006/6/1, Sonja Duijvesteijn  [EMAIL PROTECTED]:



  I don't have any working code but it would be something like: 
  private var timeSinceKeyPress:Timer;private function 
  init() {}
  2006/6/1, David Harris  
  [EMAIL PROTECTED]:
  
  Hi 
Guys, Does anyone have an example like this:I have a 
text input box and the user types in information.When they have 
finished typing I would like to fire off an event.The approach I 
would like is that once they have stopped typeing for500ms, the 
event gets fired. Has any done something like this and would 
like to shared 
code?Cheers,David 
Yahoo! Groups Sponsor ~--Get to your groups 
with one click. Know instantly when new email arrives http://us.click.yahoo.com/.7bhrC/MGxNAA/yQLSAA/nhFolB/TM
~- 
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! 
Groups Links* To visit your group on the web, go 
to: 
http://groups.yahoo.com/group/flexcoders/ * To 
unsubscribe from this group, send an email 
to:[EMAIL PROTECTED] 
* Your use of Yahoo! Groups is subject to: 
http://docs.yahoo.com/info/terms/
  

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

SPONSORED 
LINKS 

  
  

Web site design development 

Computer software development 

Software design and development 
  

Macromedia flex 

Software development best practice 
  


YAHOO! GROUPS LINKS 

  Visit your group flexcoders on the web. 

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









__._,_.___





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








Re: [flexcoders] FP9 crashes Firefox frequently

2006-06-05 Thread Michael Schmalle



I actually had it crash 2 days ago from FlexBuilder2 and debug, crashed
FireFox, nuked all of my bookmarks! No virus, I know this.

Plus a deadly memory leak in Flex Builder locked my computer up 2
times, I had to hit the power button. Slow downward spiral of cpu
resources, that is all I can describe it as.

Peace, MikeOn 6/5/06, Michael Schmalle [EMAIL PROTECTED] wrote:
Oh yeah,

I still have 1.5, and it crashes all the time, I use IE for debugging.
Never upgraded well, just havn't. It's crashing on my Flex projects..

Peace, MikeOn 6/5/06, Tom Bray 
[EMAIL PROTECTED] wrote:



I submitted this, but I thought I'd say it here to find out if I'm the only one with the problem.If you have Firefox 1.5.* and FP9, spend a little time on 

engadget.com or 
huffingtonpost.com
and their flash-based ads will crash your browser. It happens
every 3 or 4 visits for me. I make sure to click the Send Error
Report to Microsoft button every time so its probably already fixed ;)
-Tom




-- What goes up, does come down.

-- What goes up, does come down.

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



[flexcoders] Size of Stage when flash player 9 loads

2006-06-05 Thread John Grden



Right now, it's a tiny 550x400 or something like that. Is there a way to specify the size when loaded in the player rather than the browser?-- John Grden - Blitz

__._,_.___





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








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



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



  






__,_._,___



[flexcoders] DateChooser DND?

2006-06-05 Thread stacey
Anyone had any luck working a dnd behaviour into the datechooser?
This is one component since it was introduced in flash , that seems to
always work differently than the rest. BOOO. I am hoping I can find some
way to detect the rollOverItem - but so far I have had no luck.




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

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

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

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

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





Re: [flexcoders] Size of Stage when flash player 9 loads

2006-06-05 Thread Daniel Cascais
Hi John,

you can try this compiler argument (project - properties - Flex
Compiler - Additional compiler arguments):

-default-size 600 400

where the 600 and 400 stand for the width and height.

Good luck,
Daniel



On 6/5/06, John Grden [EMAIL PROTECTED] wrote:


Right now, it's a tiny 550x400 or something like that.  Is there a way to 
 specify the size when loaded in the player rather than the browser?

 --
 John Grden - Blitz  



-- 
Daniel Cascais
Tel: +56 (0)2  4589495
Cel: +56 (0)9  9417355


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

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

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

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

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





[flexcoders] ComboBox default label.

2006-06-05 Thread willmorganuk
Hi All,

Any idea how I can add the usual Select An Item as the first label
to a comboBox? The labels are from a webservice and I'm using
lableField=GAL_NAME so there isn't one available to me. How do I add
that into the dataProvider?

Any help appreciated. Thanks, Will.





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

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

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

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

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





  1   2   >