[flexcoders] Looping Properties on User-Defined Classes | for..in Does Not Work

2009-01-07 Thread p smith
Does ActionScript have any statements/operators that support looping the properties of user-defined classes? for..in works on looping basic objects. However, in the docs, the Looping page for Programming ActionScript 3.0 says: What you cannot do is iterate through the properties of an object

[flexcoders] LCDS vs FMIS for flex-based text chat

2008-08-18 Thread p smith
i am working with a team planning development on a new flex app. the app will have multiple text chat rooms and video chat too. for video the architecture must include flash media interactive server (FMIS), so team members assume we will use FMIS for the text messaging. i am wondering if

[flexcoders] FormItem Multiline Labels Possible?

2008-07-12 Thread P Smith
A designer has requested a 2 line form label.   FormItem's label property instantiates a descendent of mx:Label.  And obviously, mx:Label supports only single line text (or single line htmlText).   I looked at the source on FormItem.as.  Before putting time in to extend FormItem, I am posting

Re: [flexcoders] Flash video switcher to video file..

2008-01-31 Thread P Smith
The only actual FLV editor that really can save a new FLV file out is the FLV editor at richapps.de. could the fms serverside actionscript method Stream.record() be used to generate new flv? http://www.adobe.com/livedocs/flashmediaserver/3.0/hpdocs/0396.html#116659

Re: [flexcoders] Re: Flex E-Mail a Form PHP, ASP, or ColdFusion

2007-04-09 Thread P Smith
videogamer2791, re I still would like to know what a MX Record is try googling the following quoted string (ie include the quotes when searching): MX Record many answers. including wikipedia: http://en.wikipedia.org/wiki/MX_record when you get this working, please do post

Re: [flexcoders] Flex E-Mail a Form PHP, ASP, or ColdFusion

2007-04-07 Thread P Smith
videogamer2791, I think you have 2 choices, either an app server sends the email, or you rely on the default email program on the users' machines (using something like: URLRequest(mailto:+ ... ) ) On the web, you have this issue sending email regardless of what you use to

Re: [flexcoders] Re: Flex E-Mail a Form PHP, ASP, or ColdFusion

2007-04-07 Thread P Smith
videogamer2791, i googled on: google apps php this came up: Google Apps for your Domain (PHP mail forms) http://www.bluehostforum.com/showthread.php?t=5444 maybe somebody else will post with other solutions hth, pete videogamer2791 [EMAIL PROTECTED] wrote: thats

[flexcoders] proxying via named destinations - coldfusion support?

2007-04-05 Thread P Smith
when using flex with coldfusion, does coldfusion support proxying via named destinations? e.g. mx:HTTPService useProxy=true destination=myProxy ... or mx:WebService useProxy=true destination=myProxy ... if yes, i guess the named destination would be configured through the services-config.xml

[flexcoders] Why Flex SDK 2 Classes not included in Adobe® Fle x™ 2 Language Reference documentation

2006-12-22 Thread P Smith
Just curious. Can anyone explain why many classes in the Flex SDK 2 are not included in the Adobe® Flex™ 2 Language Reference documentation? Like the entire mx.binding package? (only the 2 classes in the mx.binding.utils package are in the Language Reference.) Thanks, Pete

Re: [flexcoders] Image Slide Show(Quick One)

2006-11-30 Thread P Smith
Kumar, If you are up for an Image Slide Show with a bit more functionality than Lachlan's excellent reply on your request for a Quick One, you might want to check out the Photo Viewer Sample App that installs with Flex Builder 2. It uses an external xml file (galleries.xml) for loading each

[flexcoders] Photo Viewer Sample App

2006-11-17 Thread P Smith
The Photo Viewer Sample App has a ViewStack with 3 views: ThumbnailView ..., CarouselView ..., SlideShowView When I move CarouselView ... to the top of the stack, on execution it throws an: Error #1009: Cannot access a property or method of a null object reference. Poking around with

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread P Smith
Joost, The open source JBoss Mail Server (aka Collaboration Server) might fit the bill: http://labs.jboss.com/portal/jbossmail/ And the Flex 2 UI was coded by Adobe's own James Ward using the Cairngorm framework for Flex 2! So, it is big, it is free, and it implements best practices. fyi

[flexcoders] Express Install Handling Case where user selects No to install

2006-09-30 Thread P Smith
Has anyone ever created a custom handler for the case where users might select "No" on the Express Install dialogue?With Express Install, users are presented with a dialogue to install Flash Player 9. The dialogue has both a "Yes" and a "No" button.If the user selects "No" there

[flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread P Smith
I need to create a Flex 2 based interface for email. Is anyone aware of any examples?If not in Flex 2, maybe Flex 1.5? (or if not that, then maybe even Flash?)My initial requirement is for a send email interface, ideally with a limited email address book.The closest

Re: [flexcoders] Sample Flex 2 based email interface

2006-09-22 Thread P Smith
TracyFrom: [EMAIL PROTECTED]ups.com [mailto: [EMAIL PROTECTED] ups.com] On Behalf Of P Smith Sent: Friday, September 22, 2006 3:17 PM To: [EMAIL PROTECTED]ups.com Subject: [flexcoders] Sample Flex 2 based email interfaceI need to creat

Re: [flexcoders] Controlling Position of mx.controls.Alert

2006-09-10 Thread P Smith
Has anyone been able to get Alerts to center on anything other than the stage?The docs for the show() method document the 4th param as: parent:Sprite (default = null) — Object upon which the Alert control centers itself.However, regardless what I pass on this param, the Alert window

[flexcoders] Controlling Position of mx.controls.Alert

2006-09-07 Thread P Smith
Can the position of an Alert window be controlled? Rather than centered, I would like my Alert box to be positioned 20 pixels from the top of the stage. When I have created an Alert instance, I have been unable to get move() or setting x and y to control the position of the Alert window.