RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Theodore E Patrick
Flash can handle these via a standard MS Keyboard Wedge Driver. We shipped a kiosk with a card reader and the Flash Player can directly parse data entered. Basically all these devices can be reduced to keyboard input so when you swipe a card or scan a barcode, it just types data really

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-16 Thread Theodore E Patrick
of Theodore E Patrick Sent: Tue 8/16/2005 6:52 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] What I wish Flex/Flash Player could do... Flash can handle these via a standard MS Keyboard Wedge Driver. We shipped a kiosk with a card reader and the Flash Player can directly parse data

RE: [flexcoders] Re: DepthManager

2005-08-17 Thread Theodore E Patrick
@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: The method MovieClip.swapDepths accepts both a MovieClip instance and a number. One potential issue with usage of Number.MAX_VALUE is that there are not 1.79769313486231e+308 depths within the Flash Player. The error has to do

RE: [flexcoders] What I wish Flex/Flash Player could do...

2005-08-18 Thread Theodore E Patrick
greatly be appreciated James From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Theodore E Patrick Sent: Tuesday, August 16, 2005 6:53 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] What I wish Flex/Flash Player could do... Flash can handle these via

RE: [flexcoders] Flex component that encapsulates DENG?

2005-09-06 Thread Theodore E Patrick
Steve, Here are a few additional options for you. HTMLDraw Server-side image renderer. It renders HTML on the server and ships an image as a proxy. This is good for static content and web clipping applications. http://www.websupergoo.com/abcdrawhtml-1.htm The

RE: [flexcoders] Re: Open source AMF solutions that work with flex

2005-10-23 Thread Theodore E Patrick
Just FYI: Flash 8.5 Player supports GZIP compression in the Socket Class. Ideally using plain XML, you can exchange GZIP'd XML binary files thus compressing the data exchange both ways. Also given that XML Parsing in 8.5 is much faster than 7/8 generation players, we will see data exchange with

RE: [flexcoders] Re: Open source AMF solutions that work with flex

2005-10-23 Thread Theodore E Patrick
for this. -r --- Theodore E Patrick [EMAIL PROTECTED] wrote: Just FYI: Flash 8.5 Player supports GZIP compression in the Socket Class. Ideally using plain XML, you can exchange GZIP'd XML binary files thus compressing the data exchange both ways. Also given that XML Parsing in 8.5

RE: [flexcoders] AJAX vs Flex whitepaper?? anyone??

2005-10-27 Thread Theodore E Patrick
The key differences here are project complexity, compatibility, and maintenance. AJAX applications are harder to develop and harder to maintain than Flex. There are details in using AJAX that produce compatibility problems as browsers vary in support DTML/XHTML/Javascript for AJAX rendering.

RE: [flexcoders] Re: Java Pojo to AS pojo with ant

2005-11-22 Thread Theodore E Patrick
Can we get back to Flex development? This isnt EJBCoders, PojoCoders, or HibernateCoders, its FlexCoders. Ted :) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 4:19 PM To:

RE: [flexcoders] Compiling MXML Offline

2005-11-22 Thread Theodore E Patrick
Just do this: http://server/path/application.mxml.swf Save the SWF file. Done. Ted ;) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dustin_speer Sent: Tuesday, November 22, 2005 9:40 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Web Services and CF7

2005-05-18 Thread Theodore E Patrick
I am looking at using CF7 and CFC web services with Flex 1.5. I understand that some have seen issues with using these two togther or was this limited to CF6? Can anyone highlight the issue for me? Any help would be most appreciated. Cheers, Ted Patrick Yahoo! Groups Links * To visit

RE: [flexcoders] Web Services and CF7

2005-05-18 Thread Theodore E Patrick
Andrew Muller Partner, RocketBoots http://www.rocketboots.com.au On 5/19/05, Theodore E Patrick [EMAIL PROTECTED] wrote: I am looking at using CF7 and CFC web services with Flex 1.5. I understand that some have seen issues with using these two togther or was this limited to CF6

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
that you're returning from your webservice, something like arrays of objects or is it CF query result sets? Andrew On 5/19/05, Theodore E Patrick [EMAIL PROTECTED] wrote: Remoting is great but it has a core limitation of one request at a time due the way AMF was implemented

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
Dave, Awesome, thanks for these! I completely forgot to check Bens blog. These are invaluable. 10 Points to Dave! Thanks, Ted ;) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dave buhler Sent: Thursday, May 19, 2005 2:20 AM To:

RE: [flexcoders] Flex - the general feeling about the product is...

2005-06-02 Thread Theodore E Patrick
Jamie, I have been using Flex for 3 months but personally have 8 years of Flash experience. The key difference in moving from Flash to Flex is that Flex allows you to reconfigure and reuse where Flash cannot. In 3 consecutive projects late design changes to an application occurred seamlessly

RE: [flexcoders] Re: Performance.... Data Grid

2005-07-01 Thread Theodore E Patrick
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Performance Data Grid --- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: Thanks Ted, yes we are using cell renderer for an edit and preview icon and are using label functions for formating. Sucks... :) Does

RE: [flexcoders] Flex external desktop application communication

2005-07-06 Thread Theodore E Patrick
Actually I am working on one right now for my new company. I am using XMLSocket to connect to a locally running server combined with data pulled from remote webservices. It is very easy to integrate just about any feature you need as the local server can provide file system access and

RE: [flexcoders] Flex external desktop application communication

2005-07-06 Thread Theodore E Patrick
application communication Yeah XMLSocket is always a good option. Ted, looks like you aredoing kick-ass stuff ;) -abdul From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Theodore E Patrick Sent: Wednesday, July 06, 2005 8:52 PM To: flexcoders

RE: [flexcoders] Flex external desktop application communication

2005-07-07 Thread Theodore E Patrick
The nice aspect of a local server (HTTP/XMLSocket) for integration is that you can interact with Flex applications in the browser cleanly within the security sandbox of the player. So long as the crossdomain.xml files are in place and valid, you can have Flex integrate with a local server without

RE: [flexcoders] XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
Chris, You need to use Delagate with XMLSocket callbacks. This should work: import mx.utils.Delegate; sock.onClose = Delegate.create( this, sockOnClose ); sock.onConnect = Delegate.create( this, sockOnConnect ); sock.onData = Delegate.create( this, sockOnData );

RE: [flexcoders] Push/AJAX via a Loader (Re: Flex external desktop application communication)

2005-07-07 Thread Theodore E Patrick
So a loader can be used to communicate with an HTTP Server in a push model?!!! Is this analagous to the way AJAX web sites push content to the client? Loader is for SWF/Image but there are ton of various ways to exchange data in Flash. The Flash Player has supported data exchange since

RE: [flexcoders] Re: XML Socket Doesn't Work

2005-07-07 Thread Theodore E Patrick
;) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cshafer213 Sent: Thursday, July 07, 2005 8:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: XML Socket Doesn't Work --- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL

RE: [flexcoders] HTTPService useProxy question...

2005-07-08 Thread Theodore E Patrick
Sorry that should be useProxy=false. Ted ;) When you set proxy=false you need to have crossdomain.xml files set-up to handle the flash player security sandbox. If you do not have crossdomain.xml files configured, the player will block the URL request internally. Here is the lowdown on

RE: [flexcoders] Re: HTTPService useProxy question...

2005-07-09 Thread Theodore E Patrick
, Theodore E Patrick [EMAIL PROTECTED] wrote: When you set proxy=false you need to have crossdomain.xml files set-up to handle the flash player security sandbox. If you do not have crossdomain.xml files configured, the player will block the URL request internally. Here is the lowdown

RE: [flexcoders] Re: Extending DataGridColumn + emitting events = java.lang.NullPointerException

2005-07-11 Thread Theodore E Patrick
Use a cellrenderer, the cellRenderer API was designed to extends and provide custom inner layout of datagrid cells. There are some default objects that decorate each CellRenederer instance: var listOwner:MovieClip //the datagrid var getCellIndex:Function

RE: [flexcoders] Re: Extending DataGridColumn + emitting events = java.lang.NullPointerException

2005-07-11 Thread Theodore E Patrick
Sorry correction, 'owner' in the datagrid is the DataGridRow not the column! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Theodore E Patrick Sent: Monday, July 11, 2005 9:10 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re

RE: [flexcoders] Re: Extending DataGridColumn + emitting events = java.lang.NullPointerException

2005-07-11 Thread Theodore E Patrick
, it makes more sense to declare these events at the DataGridColumn level, which knows exactly what events it dispatches (based on its Cell Renderer). Am I wrong to think that emitting events from a custom DataGridColumn object should be possible? --- In flexcoders@yahoogroups.com, Theodore E

RE: [flexcoders] XMLsocket behaviour

2005-07-13 Thread Theodore E Patrick
Alberto, The onConnect callback receives a Boolean flag True if connected and False if not connected. When false just reconnect. function onConnect(connected){ if (connected){ //connected }else{ Sock.connect(

RE: [flexcoders] DataGrid labelFunction AMF

2005-07-19 Thread Theodore E Patrick
Sure. The key is that you need to build your DataGrid with defined columns before your data arrives in AMF. When DataProvider is set, the Columns and DataGrid are used as a template against DataProvider to define the view. You can define a labelFunction or cellRenderer to customize the rendering

[flexcoders] IFBIN Begins...

2005-07-21 Thread Theodore E Patrick
Flexcoders, As I stated in an earlier post I was working on a big Flex project. We launched the IFBIN Service this morning and will soon launch the Flex By Example subscription. http://www.ifbin.com I have been working on a new company, IFBIN Networks. We provide software examples for learning

RE: [flexcoders] IFBIN Begins...

2005-07-22 Thread Theodore E Patrick
Is this a FLEX OEM? btw? ie i thought it was a no no to deploy FLEX SWF's without FLEX server? We use 1 Flex License for the distribution server and 1 for the development server. The IFBIN Service proxies the http based flex swf onto the local machine from our distribution server. This use

RE: [flexcoders] Flex and Central

2005-07-22 Thread Theodore E Patrick
Are you using localhost to install the Central application or do you have a fully qualified domain name for the Flex server? Central does not like localhost and installation is very problematic there. Ted :) From: flexcoders@yahoogroups.com

RE: [flexcoders] Cross Server Socket Connection (NOT XMLSocket)

2005-12-01 Thread Theodore E Patrick
Ralf, We are working on a Socket Proxy Server at IFBIN. The proxy is hosted on your domain and allows you to connect to any port on any 3rd party server using Flash as the client with Player 8.5. It is useful for situations involving streaming and for data/port access to 3rd party

RE: [flexcoders] Cross Server Socket Connection (NOT XMLSocket)

2005-12-01 Thread Theodore E Patrick
Does that mean that - being a proud IFBIN subscriber :-) - I will have access to the proxy server? Ralf, Yes. The socket proxy server will ship as an IFBIN example combined with full source for the server as well. There will be an example using Flex 2 that utilizes the example. At Spark Europe

RE: [flexcoders] Annpuncing Log4x

2005-12-01 Thread Theodore E Patrick
I know I am biased as I work on the Cynergy team but Log4X is by far one of the best logging frameworks I have ever seen for Flex development. The key is that in reading 1 log you can see client events inline with server log events. You can see DB messages, WS calls, and client calls inline and

RE: [flexcoders] Adding rows to a datagrid programmatically

2005-12-04 Thread Theodore E Patrick
Ralf, If you are trying to add a row to a DataGrid you use the DataProviderAPI like so: myDataGrid.addItem( { a:Hello , b:2 } ) cheers, Ted ;) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann Sent: Monday, December

RE: [flexcoders] Adding rows to a datagrid programmatically

2005-12-05 Thread Theodore E Patrick
Title: Re: [flexcoders] Adding rows to a datagrid programmatically Ralf, The DataGrid maps column data to a dataProvider via the columnName property. You can also employ cellRenderers and labelFunctions to render MovieClips/components and alternate text into the Datagrid from the

RE: [flexcoders] Adding rows to a datagrid programmatically

2005-12-05 Thread Theodore E Patrick
such that only records where age is less than 30 show myDP.filter = age30 Ted :) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Theodore E Patrick Sent: Monday, December 05, 2005 12:18 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Adding

RE: [flexcoders] Something like interop between two swf instances

2005-12-21 Thread Theodore E Patrick
Try the LocalConnection Class. Each SWF application can register as a listener and allow function calls between separate player instances. I used it extensively on an Instant Messaging application some years back and it works great. LocalConnection is a jewel! Ted ;) -Original

RE: [flexcoders] ANY FLEX TREE GURUS?

2006-01-02 Thread Theodore E Patrick
Tim, I think this would best be done via the Drawing API embedded into SWF Icons in Flex 1.5 and Flex 2. Node Icons would need to draw this: -ICON Container Icons would need to draw this: -ICON | | | Since each Icon knows its position, it can readily draw

RE: [flexcoders] Re: ANY FLEX TREE GURUS?

2006-01-03 Thread Theodore E Patrick
. Are you suggesting to have code inside of the SWF that would render the lines according to it's position in the tree? Am I understanding this correctly. Tim --- In flexcoders@yahoogroups.com, Theodore E Patrick [EMAIL PROTECTED] wrote: Tim, I think this would best

RE: [flexcoders] FileReference Download

2006-01-11 Thread Theodore E Patrick
Just to add to Carson's post: There is a HTTP header corruption bug in Flash Player 8 Release and 8.5.0.133 players that will cause Upload and Download functionality to be limited. This bug has been fixed within 8.5.0.175 player. Here is what doesn't work seamlessly: 1. HTTP AUTH -

RE: [flexcoders] Opening a Socket Connection on the same machine where the browser is running

2006-02-02 Thread Theodore E Patrick
The magic answer here is to serve a 'crossdomain.xml' Policy file from localhost. This will allow the Flash Player to speak with the socket on localhost and communicate seamlessly. This is how IFBIN Installation works. http://localhost:5505/crossdomain.xml If IFBIN is installed and running, the

RE: [flexcoders] Flex 2 socket interface

2006-03-06 Thread Theodore E Patrick
Marc, The local server model is great but there are some troublesome aspects that can bit you: You need to serve a crossdomain.xml file over HTTP from the local server. This will allow a web based application to interoperate with a desktop based server. This is essential to get this to work.