RE: [flexcoders] Flash-AIR-PHP drag and drop Hybrid

2008-05-21 Thread Battershall, Jeff
AIR gives you a lot of tools to accomplish this, but I don't see how the Flash app would fit into the equation. With the FIleSystemTree control you can browse and select files and drag them to another component which initiates the file upload process - all within AIR. If you want to show upload

RE: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Battershall, Jeff
Is there a reason why the entire dataset is needed all at once? Some sort of pagination scheme would help. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, May 21, 2008 3:40 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] dataprovider question

2008-05-20 Thread Battershall, Jeff
This is the sort of problem LCDS and BlazeDS are intended to handle - so that connected clients get informed of changes to data. You'll have to study up on their capabilities and how to employ them. Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Securely Interfacing Between Flex and Databases

2008-05-20 Thread Battershall, Jeff
SSL is essential. Decompiling a swf isn't going to assist in decrypting SSL. You're thinking that SSL isn't good enough? AMF by itself just compresses the data - it doesn't implement any sort of encryption, AFAIK. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Handling html formatted tables in Flex

2008-05-20 Thread Battershall, Jeff
Use your parsed data to create a dataprovider for a DataGrid. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Craig Sent: Tuesday, May 20, 2008 9:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Handling html formatted tables in

RE: [flexcoders] Re: Handling html formatted tables in Flex

2008-05-20 Thread Battershall, Jeff
mx:HTML window but have to evaluate distributing app as AIR. Do you have comment / other suggestion? CS --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Use your parsed data to create a dataprovider for a DataGrid. Jeff -Original Message- From

RE: [flexcoders] Re: Handling html formatted tables in Flex

2008-05-20 Thread Battershall, Jeff
[mailto:[EMAIL PROTECTED] On Behalf Of Claus Wahlers Sent: Tuesday, May 20, 2008 3:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Handling html formatted tables in Flex Battershall, Jeff wrote: Too difficult Having a feed that has UI embedded in it, is 'less than optimum

RE: [flexcoders] Write Data to Tab Navigater

2008-05-19 Thread Battershall, Jeff
myTabNav.creationPolicy = all; -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timgerr Sent: Monday, May 19, 2008 12:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Write Data to Tab Navigater Hello, I have a question for ya, I have

RE: [flexcoders] coldfusion and Flex?

2008-05-16 Thread Battershall, Jeff
- Original Message From: Battershall, Jeff [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, May 15, 2008 4:39:10 PM Subject: RE: [flexcoders] coldfusion and Flex? If you're using CF 7.02, the differences should

RE: [flexcoders] Re: AIR drag/drop via asynchronous download

2008-05-16 Thread Battershall, Jeff
The way I approached this problem was having my command class fire off delegates for each download and listen for a successful download event. When the all the files in my batch have been downloaded, I updated a watched variable in my ModelLocator, which in turn executed other logic. Jeff

RE: [flexcoders] Re: AIR drag/drop via asynchronous download

2008-05-16 Thread Battershall, Jeff
In my case, I was using a Tree control. Each element contains the meta data I need to have to drive the download process. When I start the drag, I take the data provider and create an array of value objects that I add to the drag source by dragSource.addData(resultItems,items); Jeff

RE: [flexcoders] Re: DropShadow with WindowedApplication

2008-05-15 Thread Battershall, Jeff
Check this out: http://coenraets.org/blog/2008/02/salesbuilder-for-air-10/ Gives the exact how-to and good code samples and graphical assets to get you started. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of quantum_ohm Sent: Thursday,

RE: [flexcoders] coldfusion and Flex?

2008-05-15 Thread Battershall, Jeff
If you're using CF 7.02, the differences should be mimimal. The services-config.xml filea now has things broken out into separate files, so if you've done anything custom there, you'll have a small amount of work to do. Set up a dev instance using the developer edition of CF8 and test things out

RE: [flexcoders] Flex Builder 3 oddities on Mac OSX Leopard

2008-05-14 Thread Battershall, Jeff
Jack, What I've seen is that the previous instance doesn't always shut down when you think it should. During development, I've had to manually force quit of adl if the adl instance isn't shut down. You'll see adl as an open application if this is the case. Jeff -Original Message-

RE: [flexcoders] FileReferenceList crashing IE7

2008-05-13 Thread Battershall, Jeff
Just a wild guess, but are you creating a new FileReferenceList each time? Or attempting to use the same one twice? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Tuesday, May 13, 2008 2:19 PM To:

RE: [flexcoders] Re: FileReferenceList crashing IE7

2008-05-13 Thread Battershall, Jeff
the same one twice, and dumping the selected files into a list of files. If I use concat on my list of selected files, it's fine, but if I try to overwrite my list with the newly selected, it crashes it. --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Just a wild

RE: [flexcoders] Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-07 Thread Battershall, Jeff
Instead of keeping your dataprovider as an XMLList, which doesn't inherently have any binding capabilities, convert the XMLList to an ArrayCollection in your result handler function. Then you can add items, etc., and the grid will update as you would expect. Jeff -Original Message-

RE: [flexcoders] Flex/ColdFusion use-mappings ignored?

2008-05-06 Thread Battershall, Jeff
Chiverton Sent: Tuesday, May 06, 2008 6:14 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex/ColdFusion use-mappings ignored? On Friday 02 May 2008, Battershall, Jeff wrote: As I said, I'm willing to be convinced otherwise, but you'd have to make sure that your paths are correct

RE: [flexcoders] SOT: ColdFusion backend for Flex, what the heck am i doing wrong...

2008-05-02 Thread Battershall, Jeff
I have seen some intermitent behavior in CF 7.02 where the application.cfc seems to be ignored. So much so, I had to code a workaround in my ColdSpring remote façade to check for the existance of my application.serviceFactory and re-instantiate it if not available. I have had no issues with

RE: [flexcoders] Flex/ColdFusion use-mappings ignored?

2008-05-02 Thread Battershall, Jeff
I admit I haven't played with ColdSpring's capability of auto-generating remote proxies. Personally I have my doubts about this approach as it doesn't seem to support a source-control managed environment, but I'm willing to be convinced otherwise. In any event - it would seem that your having

RE: [flexcoders] Flex/ColdFusion use-mappings ignored?

2008-05-02 Thread Battershall, Jeff
Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, May 02, 2008 11:42 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex/ColdFusion use-mappings ignored? On Friday 02 May 2008, Battershall, Jeff wrote: remote proxies

RE: [flexcoders] Is it possible to build a Flex 3 app that will play in Flash Player 7 for Wii

2008-05-02 Thread Battershall, Jeff
I wouldn't get your hopes up - at least as far as Flex 2 or 3 is concerned. You can use component versions that shipped with Flash 2004 + AS2. You could do alot of things, including remoting, but it would be a relatively slow and arduous process to develop. It is possible to compile Flex 1.5

RE: [flexcoders] Modular Application

2008-04-30 Thread Battershall, Jeff
Flex Builder 2.01 has module support so those modules will be compiled with the main application. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Indra Prastha Sent: Tuesday, April 29, 2008 10:02 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Creating and downloading a file in client or alternatives

2008-04-30 Thread Battershall, Jeff
I'm not sure how you'd do this on the client with a web-based application. For the server side solution, I know how I would do this with ColdFusion, by setting the mime-type of the returned content, stipulating that its an attachment, and so forth. The file does not need to be written to disk in

RE: [flexcoders] BlazeDS, List of VOs inside a VOs won't translate

2008-04-30 Thread Battershall, Jeff
[mailto:flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com ] On Behalf Of Battershall, Jeff Sent: Tuesday, April 29, 2008 1:55 PM To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com Subject: RE: [flexcoders] BlazeDS, List of VOs inside a VOs won't translate

RE: [flexcoders] Cairngorm Model Locator

2008-04-29 Thread Battershall, Jeff
Gerhard, One approach I took is to have localized models that apply to specific modules in the application, as opposed to having a proliferation of variables that apply across multiple aspects of the application, which could get ugly. They still could live in the singleton Model Locator, but

RE: [flexcoders] BlazeDS, List of VOs inside a VOs won't translate

2008-04-29 Thread Battershall, Jeff
Alan, I know in LCDS that there isn't an analog for ArrayCollection. I'd try having your nested VOs be simply an array and if you need to create an ArrayCollection on the client side do so using your array of VOs as the source attribute. Jeff -Original Message- From:

RE: [flexcoders] Re: Best way to secure a ColdFusion web service

2008-04-25 Thread Battershall, Jeff
If you're purely in a CF environment, why not use CFLOGIN, Roles and SSL? The individual will have to authenticate, and his credentials will be passed with each request, but with SSL the request headers won't be readable. As far as ensuring a particular set of credentials are in use by only one

RE: [flexcoders] Re: currentState question

2008-04-25 Thread Battershall, Jeff
Something to take a look at is that if you've defined your states in design view, etc., it is possible that a UI component you're referring to hasn't been created yet, or something like that. What I like to do with states is to show/hide or move things around, but not to create or remove UI

[flexcoders] PopUpButton as ItemEditor for DataGrid

2008-04-24 Thread Battershall, Jeff
I'm pushing the envelope in terms of how many editable fields are going to fit within the available horizontal space. The issue is basically how to open an itemeditor that is not constrained by the width of the column. So I've been investigating having a text field popup when in editmode that

RE: [flexcoders] PopUpButton as ItemEditor for DataGrid

2008-04-24 Thread Battershall, Jeff
Never mind - variable row heights is the way to go here. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Thursday, April 24, 2008 7:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpButton as ItemEditor

[flexcoders] AIR: Forcing a file to be opened By OS Default Application

2008-04-16 Thread Battershall, Jeff
Pardon the cross post, but I'm trying to find out if AIR supports triggering a file to be opened by the OS's default application for that file extension. Like having MS Excel open a .xls file. Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484)

RE: [flexcoders] AIR: Forcing a file to be opened By OS Default Application

2008-04-16 Thread Battershall, Jeff
Steve, In the scenario I'm envisioning, I am not thinking that AIR would be starting the program itself but the OS would, as it would in response to a double click on a file name in Windows Explorer. But if it can't be done, it can't be done. Jeff -Original Message- From:

RE: [flexcoders] Re: AIR: Forcing a file to be opened By OS Default Application

2008-04-16 Thread Battershall, Jeff
...something adobe really needs to address soon! --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Steve, In the scenario I'm envisioning, I am not thinking that AIR would be starting the program itself but the OS would, as it would in response to a double click

[flexcoders] Data Grid Validaton strategies

2008-04-02 Thread Battershall, Jeff
I have an editable data grid driven by an ArrayCollection of value objects that I would like to validate on the fly, row by row. As an invidual column is edited, I'd like to invoke logic to check if the row's VO is 'valid', meaning all data elements are present and within valid ranges and so

RE: [flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-04-02 Thread Battershall, Jeff
Why not just pass the source attribute of the ArrayCollection? That's the actual data itself. Then you don't have to worry about what datatype you're dealing with. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David

RE: [flexcoders] Saving Typed Objects with AIR

2008-03-27 Thread Battershall, Jeff
Nick, When you de-serialze your object you can cast it to the type you want. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick Collins Sent: Wednesday, March 26, 2008 9:34 AM To: flexcoders

[flexcoders] AIR: Sending Links Insidie an HTML Control to Default System Browser

2008-03-26 Thread Battershall, Jeff
How would you do this? I have links inside content loaded into an mx:HTML control. Instead of sending links back to the control, I want to send them to the default system browser. Jeff

[flexcoders] Can CF Polling be done securely?

2008-03-03 Thread Battershall, Jeff
I'm running CF8 and I'm looking into making all my CF-based channels to be secure. The secure endpoint for normal remoting is /flex2gateway/cfamfsecure. That works well. What I'm looking into is to have a CF-based polling channel and messaging channel that would also be secure. I've

RE: [flexcoders] Can CF Polling be done securely?

2008-03-03 Thread Battershall, Jeff
OK, I figured out. For the benefit of others, it can be done and involves creating the appropriate endpoint using mx.messaging.channels.SecureAMFChannel. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Monday, March

[flexcoders] How Secure is RTMP?

2008-03-03 Thread Battershall, Jeff
That's my question - can anyone comment? Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c)

RE: [flexcoders] How Secure is RTMP?

2008-03-03 Thread Battershall, Jeff
port. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Monday, March 03, 2008 2:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How Secure is RTMP? That's my question - can anyone comment? Jeff Battershall

RE: [flexcoders] Re: flexbuilder code formatter

2008-02-29 Thread Battershall, Jeff
I have found problems using the Aptana plugin on Flex Builder due to CSS editor turf wars. Aptana started throwing exceptions about the Flex style CSS declarations and I could not get it to stop - finally had to reinstall FB. If someone knows a workround for this, that would be great. Until then

RE: [flexcoders] Flex 3 Upgrade

2008-02-27 Thread Battershall, Jeff
Paul, Dn't think you're right about the pro upgrade exactly. If you have Flex 2 and/or Flex 2 Charting the upgrade to Flex 3 Pro is the same - $299. Wish you were right about that. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul

[flexcoders] FB3 + Aptana Plug In = warring CSS editors

2008-02-26 Thread Battershall, Jeff
I added the Aptana plugin to my FB3 instance and started getting errors with Aptana not liking Flex Styles. Only solution was to remove the Apatana Plug In. Yes, I could install Apatana Studio, but it would be nice to get FB + Aptana working well together and to have Aptana to defer to FB on CSS.

RE: [flexcoders] No Serial Numbers for Flex Builder 3?

2008-02-25 Thread Battershall, Jeff
I upgraded to Pro but no S/N. Wasted 20 minutes on the phone to discuver this. Also - was asked for my Adobe ID - anyone know where that can be found online? I sure couldn't and finally they verfied my identity via my home phone number. If Customer Service is going to ask for such things, it has

RE: [flexcoders] No Serial Numbers for Flex Builder 3?

2008-02-25 Thread Battershall, Jeff
was there. I have my serial number, after a little wait, hopefully the bug in serial number delivery has been fixed by now. Ian On 25 Feb 2008, at 15:09, Battershall, Jeff wrote: I upgraded to Pro but no S/N. Wasted 20 minutes on the phone to discuver this. Also - was asked for my Adobe ID

RE: [flexcoders] New version of FB3 won't let my AIR app run

2008-02-25 Thread Battershall, Jeff
Just a thought - did you update your app descriptor to account for the 1.0 release? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of justletmejoinalready Sent: Monday, February 25, 2008 3:37 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] New version of FB3 won't let my AIR app run

2008-02-25 Thread Battershall, Jeff
Just read your email completely - that would appear to be the issue - you need to change your app descriptor xml to match the current runtime. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of justletmejoinalready Sent: Monday, February 25, 2008

RE: [flexcoders] Re: AIR and LCDS, Channel.Connect.Failed error

2008-02-14 Thread Battershall, Jeff
. Eduard --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: AFAIK, an AIR application doesn't have a domain context the way a Flex app would. You need to specify the endpoint for your channels in an AIR application. Jeff -Original Message- From

RE: [flexcoders] addEventListener question

2008-02-13 Thread Battershall, Jeff
What problem are you trying to solve? There's no reason at all that you cannot reference other variables, or call other functions inside of your callback. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday,

RE: [flexcoders] AIR and LCDS, Channel.Connect.Failed error

2008-02-13 Thread Battershall, Jeff
AFAIK, an AIR application doesn't have a domain context the way a Flex app would. You need to specify the endpoint for your channels in an AIR application. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of m88e24 Sent: Wednesday, February

RE: [flexcoders] Re: Remote Object Security

2008-02-08 Thread Battershall, Jeff
, that's some pretty good due-diligence re: security of remote objects. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Friday, February 08, 2008 10:06 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re

RE: [flexcoders] Re: Remote Object Security

2008-02-08 Thread Battershall, Jeff
I'm using setRemoteCredentials() successfully in a couple of applications along with CFLOGIN in Application.cfc. Using Cairngorm ServiceLocator makes this easier as you can create a persistent instance of a remote object, set credentials on it after the user successfully logs in, and then

RE: [flexcoders] Re: PopUpButton issue

2008-02-06 Thread Battershall, Jeff
Scott, There seems to be a variety of cirumstances where the behavior can be seen. Here's a bug entry for the item already: http://bugs.adobe.com/jira/browse/SDK-14470 I was able to make it happen by have a PopUpButton instance inside a Panel inside a Module. This defintely must be

RE: [flexcoders] Re: PopUpButton issue

2008-02-06 Thread Battershall, Jeff
searched, but I decided to add my bug report anyway because that existing one was marked as closed. Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Battershall, Jeff wrote: Scott

RE: [flexcoders] Re: Setting combobox selectedindex

2008-02-06 Thread Battershall, Jeff
The way I accomlished this was by sub-classing ComboBox, to take a value as a parameter and set the selectedIndex accordingly. Ben Forta has an example of this somewhere on his website. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Setting combobox selectedindex

2008-02-06 Thread Battershall, Jeff
Of gur_sukh Sent: Wednesday, February 06, 2008 1:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting combobox selectedindex yes tried that too, but when dataprovider is set the selectedIndex gets reset to 0 and hence the value. --- In flexcoders@yahoogroups.com, Battershall, Jeff

RE: [flexcoders] Re: PopUpButton issue

2008-02-06 Thread Battershall, Jeff
that is deferred. Since this bug is a regression from from Flex 2.0.1, we will probably fix this in the future. We just didn't get the time during this release :( Thanks for you feedback, Joan Lafferty Flex SDK QA To: Battershall, Jeff Sent: Wednesday

RE: [flexcoders] PopUpButton not working in AIR Beta 3

2008-02-04 Thread Battershall, Jeff
Of Battershall, Jeff Sent: Sunday, February 03, 2008 12:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] PopUpButton not working in AIR Beta 3 I was able to get it to work if I took it out of a Panel container in the module in question. Totally fubar. -Original Message- From

RE: [flexcoders] How to get the reference of each element in a TileList ?

2008-02-04 Thread Battershall, Jeff
: Monday, February 04, 2008 12:35 AM To: flexcoders@yahoogroups.com Cc: Battershall, Jeff Subject: RE: [flexcoders] How to get the reference of each element in a TileList ? Try indexToItemRenderer(). Keep in mind that if you are scrolling, not all

[flexcoders] PopUpButton not working in AIR Beta 3

2008-02-03 Thread Battershall, Jeff
I'm still trying to identify the exact steps to re-create but suffice to say, in my AIR application (which uses modules), the PopUpButton component refuses to work. I'm doing things declaritively, with MXML like this: mx:PopUpButton x=500 y=10 label=Add Company width=220 openAlways=true

RE: [flexcoders] PopUpButton not working in AIR Beta 3

2008-02-03 Thread Battershall, Jeff
I was able to get it to work if I took it out of a Panel container in the module in question. Totally fubar. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Sunday, February 03, 2008 10:28 AM To: flexcoders

RE: [flexcoders] How to get the reference of each element in a TileList ?

2008-02-03 Thread Battershall, Jeff
How about myTileList.getChildAt(index)? TileList shouldn't offer more performance, as such, over Repeater, as the TileList itself uses a repeater to layout it's children. But it does offer layout capabilities that you'd have to roll on your own with a repeater and that could get messy.

[flexcoders] TabNaviigator tabBar index doesn't update on selectedIndex change

2008-02-01 Thread Battershall, Jeff
I'm using Flex 3 Beta 3. I have a TabNavigator component where the children are created dynamically from a Repeater. When the dataProvider of the repeater changes, the tab labels update accordingly, EXCEPT the tabBar index of the component doesn't visually update. I would just set

[flexcoders] ProgressEvent.bytesTotal not populated?

2007-12-11 Thread Battershall, Jeff
I've built at AIR app that supports application update, but I'd like to show the user the progress of the updater download. For some reason, the ProgressEvent.bytesTotal just isn't coming over the wire. bytesLoaded sure is, just not bytesTotal. It isn't as though this is some tiny file, either -

[flexcoders] AIR Modules - I've hit a wall

2007-11-06 Thread Battershall, Jeff
Sorry for the cross-post, but I'm trying to get some more exposure for this issue in hopes of a resolution/workaround. My desired deployment model for my AIR app is a shell app that loads Modules dynamically. What I'm running into is that the only location that AIR will let me load a module from

RE: [flexcoders] AIR Modules - I've hit a wall

2007-11-06 Thread Battershall, Jeff
PROTECTED] On Behalf Of Battershall, Jeff Sent: Tuesday, November 06, 2007 6:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] AIR Modules - I've hit a wall Sorry for the cross-post, but I'm trying to get some more exposure for this issue

RE: [flexcoders] Restricting User Logins with LCDS (was Single Sign-On Strategies with LCDS)

2007-10-23 Thread Battershall, Jeff
] mailto:careers%40blinemedical.com -Original Message- From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ] On Behalf Of Battershall, Jeff Sent: Friday, October 19

RE: [flexcoders] Flex3 - LCDS anyone know status? Does it work?

2007-10-23 Thread Battershall, Jeff
LCDS sure does work. Web tier compilation for production deployments is not recommended. For development it would be OK. How you get LCDS working depends on how you're using it - what container/middleware are you using? Jeff -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Flex3 - LCDS anyone know status? Does it work?

2007-10-23 Thread Battershall, Jeff
? On 10/23/07, Battershall, Jeff [EMAIL PROTECTED] wrote: LCDS sure does work. Web tier compilation for production deployments is not recommended. For development it would be OK. curious why you say this? I've used the web-tier compiler

RE: [flexcoders] Simple SimpleButton 2nd try

2007-10-23 Thread Battershall, Jeff
I think you want to add mx.controls.Button which inherits from UIComponent vs. flash.display.SimpleButton, which does not. You're kinda confusing the Flex framework with the Flash Player API. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Simple SimpleButton 2nd try

2007-10-23 Thread Battershall, Jeff
SimpleButton(); this.addChild(newButton); } ]] /mx:Script /mx:Application Battershall, Jeff wrote: I think you want to add mx.controls.Button which inherits from UIComponent vs. flash.display.SimpleButton, which does not. You're kinda

RE: [flexcoders] Simple SimpleButton 2nd try

2007-10-23 Thread Battershall, Jeff
dozen books and I look at the language ref all the time but ther seems to be a rule against simple examples that make any sense. For example, there is no simple example of a SimpleButton on the SimpleButton page. Not even close. Battershall, Jeff wrote: Hello?! If the code you're prsenting

RE: [flexcoders] Single Sign-On Strategies with LCDS

2007-10-19 Thread Battershall, Jeff
clients using the messaging layer, but if you're late to the party you cannot see where things are globally, prior to connecting to the destination. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Friday, October 19, 2007 9

RE: [flexcoders] Single Sign-On Strategies with LCDS

2007-10-19 Thread Battershall, Jeff
I'm trying to enforce the EULA of the client, and not have shared credentials making their way around the client's company. Obviously I cannot completely restrict this but at least the supplied set of credentials will only be used by one person at any given time. -Original Message- From:

[flexcoders] Single Sign-On Strategies with LCDS

2007-10-19 Thread Battershall, Jeff
I'm trying to implement functionality to ensure that one set of credentials can only be actively logged in once in my application. The approach I am taking is to have a DataService that manages an ArrayCollection of logged in users. When the user attempts to login and successfully retrieves

[flexcoders] How does RTMP work?

2007-10-16 Thread Battershall, Jeff
I'm trying to get my wits around RTMP and any firewall issues that may exist with it. I understand that Adobe's RTMP implementation uses http tunneling - does this mean that the firewall doesn't in fact have to have port 2048 open? That the rtmp requests in fact come over on port 80 in the http

RE: [flexcoders] How does RTMP work?

2007-10-16 Thread Battershall, Jeff
://flexblog.faratasystems.com/?p=215 and here is http://flexblog.faratasystems.com/?p=232 description why you might want it. Regards, Anatole Tartakovsky Farata Systems On 10/16/07, Battershall, Jeff [EMAIL PROTECTED] wrote: I'm

RE: [flexcoders] How does RTMP work?

2007-10-16 Thread Battershall, Jeff
Roxanne Reid-Bennett QA Analyst Architect Battershall, Jeff [EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 10/16/2007 08:39 AM Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject

RE: [flexcoders] secure and non-secure channels for (ColdFusion) remoting

2007-10-15 Thread Battershall, Jeff
Tom, I noticed similar behavior when I had stipulated an incorrect endpoint for an rtmp channel - it didn't fail over, the app just hung, perhaps due to a runtime error - you could dump the channelFault event and see what you get there. I haven't tested but there is the connectTimeout property

RE: [flexcoders] Variables in HTTPService url via flashVars

2007-09-11 Thread Battershall, Jeff
The binding braces need to be the outermost item: url{'assets/' + myPackage + '/clipart.xml'} Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of neoblu1 Sent: Tuesday, September 11, 2007 3:03 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Variables in HTTPService url via flashVars

2007-09-11 Thread Battershall, Jeff
Or you could make one bindable item: [Bindable] public var myURL:String; private function initPackageVar():void { myURL = 'assets/' + Application.application.parameters.myPackage + '/clipart.xml'; } mx:HTTPService id=myClipArtService url={myURL}

RE: [flexcoders] FB3: src and config

2007-09-10 Thread Battershall, Jeff
Richard, AS FB3 is still very much in beta, you probably should post your issue to the FB3 private beta forum. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, September 10, 2007 1:34 PM To:

RE: [flexcoders] Cairngorm with File Posting

2007-09-10 Thread Battershall, Jeff
If you make a VO class with a FileReference as one of its members, you'll be able to pass that VO with a Cairngorm Event back through a command class to a business delegate, which would handle the actual posting. Code samples of the actual posting are available in the AS3 docs. of One thing you

RE: [flexcoders] Cairngorm or AS3 question please help

2007-09-10 Thread Battershall, Jeff
Hmmm First of all, what is returning from ServiceLocator.getInstance().getService() is of type mx.rpc.remoting.RemoteObject, not Object, and these need to be pre-defined in your Services.mxml file. Have you done this? ServiceLocator is your repository of service definitions, not your

RE: [flexcoders] Cairngorm or AS3 question please help

2007-09-10 Thread Battershall, Jeff
] On Behalf Of Battershall, Jeff Sent: Monday, September 10, 2007 2:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Cairngorm or AS3 question please help Hmmm First of all, what is returning from ServiceLocator.getInstance().getService() is of type mx.rpc.remoting.RemoteObject

RE: [flexcoders] MAX Session Scheduler - does it exist?

2007-09-10 Thread Battershall, Jeff
Ben, Go to https://secure.adobemax2007.com/na/register/login/ , login and you'll see the personal agenda link on the left. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Monday, September 10, 2007 2:13 PM To:

RE: [flexcoders] Call MXML custom component from AS

2007-08-30 Thread Battershall, Jeff
Precia, Two things I see so far - one is there's no () at the end of your new statement (new tester()) and two is you need to add your tester display object to a container using addChild(). Code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

RE: [flexcoders] Re: Call MXML custom component from AS

2007-08-30 Thread Battershall, Jeff
made my day. Precia --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Precia, Two things I see so far - one is there's no () at the end of your new statement (new tester()) and two is you need to add your tester display object to a container using addChild

RE: [flexcoders] A flex login dialog with focus on startup?

2007-08-30 Thread Battershall, Jeff
Here's some data - not sure if it's 100% cross-browser, but... http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15586slice Id=1 Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Thursday,

RE: [flexcoders] Where to learn intermediate/advanced Flex?

2007-08-30 Thread Battershall, Jeff
I agree with the basic trial by fire approach, been doing it for years, BUT if Flex is to make it all the way as an enterprise platform, there does need to be several levels of formal training available. What commonly happens is you kind of hack your way around with it and try to glean best

[flexcoders] HTTPService Security Sandbox woes

2007-04-17 Thread Battershall, Jeff
I'm tearing my hair out. I'm trying to programatically invoke an HTTPService (where the url is in another domain/sandbox) without server-side proxy (no FDS) and I've hit the proverbial wall. I have a crossdomain.xml sitting in the webroot of the other domain which explicity allows the originating

[flexcoders] Opening file after download

2007-03-30 Thread Battershall, Jeff
Hello, I'm downloading a file using FileReference.download(), which prompts for a save location. What IE/FF provides is the ability to open after download, is there any way to replicate that behavior??? Many of my users would like to open immediately, not have to browse to the downloaded file

[flexcoders] FileReference.download and Web Service

2007-03-07 Thread Battershall, Jeff
Is it possible to combine FileReference.download() with a web service call? So that you're invoking a download dialog in containing content returned from a web service? Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c)

RE: [flexcoders] observing a model change in cairngorm

2007-02-20 Thread Battershall, Jeff
I've had pretty good luck using mx.binding.utils.ChangeWatcher to map a change event in data to a defined function, thereby allowing me to control the response to the change event. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] referencing form data in class based model?

2007-02-12 Thread Battershall, Jeff
By creating a value object. package com.mycompany.vo { public class ClientVO { public function ClientVO() { //constructor stuff; } public var id:Number; public var name:String;

RE: [flexcoders] FlashVars not working

2007-02-06 Thread Battershall, Jeff
You need to reference flashVars like this: var myVar:String = Application.application.parameters.myVar; Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g_vaccarezza Sent: Tuesday, February 06, 2007 1:48 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Flex and hosting remote callable services

2007-02-05 Thread Battershall, Jeff
Maybe I'm not understanding something about your question but AFAIK Flex is a client-side technology - how could it possibly host a service when in fact the app has been downloaded and it is running on a user's machine? I don't think Flex or Flash is intended to operate in the fashion you

[flexcoders] Slightly OT: Vista Feedback

2007-01-25 Thread Battershall, Jeff
My biggest concern in installing Vista on my laptop is whether it's going to break my existing development setup: CFMX 7.02 running with Apache with heavy use of Flex Builder. Anyone out there has Vista running on such a setup without issues? Or with issues? I'm still on the fence as to

<    1   2   3   4   >