[flexcoders] Re: who is going to Real World Flex (NYC, Monday the 14th)

2006-08-11 Thread grant.straker
Provided I don't spend the next 2 days stuck in Airports queues I'll
be there, and certainly looking forward to my first trip to NY. 

Visit the ZoomFlex stand to say hello.

Cheers

Grant Straker



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

  Hi,
 
  
 
 www.flexseminar.com http://www.flexseminar.com/ 
 
  
 
 I'll be there all day (I'm doing a morning talk).  I'd love to meet
 folks from this list and puts faces to names and learn more about what
 you are doing.  If you are there and see me, say hello.  
 
  
 
 Should be a fun event.  Exciting to see a 3rd party conference on Flex
 just 45 days after we shipped Flex 2.
 
  
 
 Regards,
 
 David







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

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

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

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




[flexcoders] Re: Dump?

2006-08-07 Thread grant.straker
You might want to look at Mike Nimers Debug.show() function

http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel

It's as close to a cfdump as you will get in Flex.



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

 Hi,
 
 How can I dump the following variable loginVO and see its output?
 
 public function loginUser() : void
  {
 var loginVO : LoginVO = new LoginVO();
 loginVO.username = username.text;
 loginVO.password = password.text;
 
 var event : LoginEvent = new LoginEvent( loginVO );
 CairngormEventDispatcher.getInstance
 ().dispatchEvent( event );
  }
 
 I would like to  dump similar to how you dump the output of a 
 variable in ColdFusion
 
 Thanks,
 
 -Malik







--
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] DateChooser Scrool Events

2006-07-17 Thread grant.straker
I'm trying to handle a DateChooser scroll event to run function when
the month is changed in a datechooser and Im not having too much luck.

If this works for a change event

change  =filterByDay(DateChooser(event.target).selectedDate); 

What do I pass for a scroll event? and what type does my event handler
listen for - DateChooserEvent?

Couldn't find any examples and my action script is fairly basic.

Cheers

Grant






 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~- 

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

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

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

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




[flexcoders] Re: DateChooser Scrool Events

2006-07-17 Thread grant.straker

I finally figured out the answer to this.

You need to pass scroll=scrollEventHandler(event.detail);

event.detail is a string 

if (event == previous Month){
iMonth = iCurrentMonth = iCurrentMonth - 1;
}
if (event == next Month){
iMonth = iCurrentMonth = iCurrentMonth + 1;
}




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

mx:DateChooser scroll=getItems();/
 
  
 
  
 
   _  
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of grant.straker
 Sent: Monday, July 17, 2006 5:52 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] DateChooser Scrool Events
 
  
 
 I'm trying to handle a DateChooser scroll event to run function when
 the month is changed in a datechooser and Im not having too much luck.
 
 If this works for a change event
 
 change =filterByDay(DateChooser(event.target).selectedDate); 
 
 What do I pass for a scroll event? and what type does my event handler
 listen for - DateChooserEvent?
 
 Couldn't find any examples and my action script is fairly basic.
 
 Cheers
 
 Grant








 Yahoo! Groups Sponsor ~-- 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/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] Binding htmlText to a variable

2006-07-09 Thread grant.straker
I'm trying to use a variable to populate a htmlText control.

This works

mx:Text width=90%  htmlText={valueObject.body} 
/mx:Text

This doesn't

   mx:Text width=100% 
mx:htmlText
![CDATA[{valueObject.body}]]
/mx:htmlText
/mx:Text

I need the later as my HTML contains a lot of markup that requires
escaping.

I'm sure its a very simple solution but I can't find any examples in
the docs.

Cheers

Grant








 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/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/