[flexcoders] best way to summarize and display data

2009-07-08 Thread Ramsey, Robert L
Hi, I'm trying to think of the best way to let a user summarize and display data. The data is in xml format and looks like this(simplified some): orgs org nameFoo/name date01-01-2009/date

[flexcoders] working with multiple httpservice requests

2009-03-25 Thread Ramsey, Robert L
Hi, I've been trying to find a better way to handle working with multiple httpservice requests that all need to complete before I run a function. What I've been doing is something like this: mx:HTTPService id=s1 url=somewhere result=s2.send()/ mx:HTTPService id=s2 url=somewhere

[flexcoders] help with httpService Error

2009-03-05 Thread Ramsey, Robert L
Hi, I am using FlexBuilder 3.0.2 and am getting a new error on new projects when using the httpService feature. Here is my httpService control, as copied from an older project which still works: mx:HTTPService id=getmeta method=POST result=gotmeta()

[flexcoders] Error 2032, but only in IE with php session_start

2008-12-11 Thread Ramsey, Robert L
Hi, I have an app that makes http requests to a php script on the server. If I have session_start() in the back end file so I can use session variables in php, I get the following error: [RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Error:

[flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
Hi, I am working on a scheduling application and need some help working with dynamically created clickable objects. I've been using linkbuttons, but anything that is clickable will work. I have an array that may contain 0-N items, where N can be any number. If N0, I need to create

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
take time to read about event handling in Flex/AS3 as it's a basic and very important concept! On Thu, Sep 25, 2008 at 4:33 PM, Ramsey, Robert L [EMAIL PROTECTED] wrote: Hi, I am working on a scheduling application and need some help working with dynamically created clickable objects

RE: [flexcoders] help w/ setting click events on dynamically created linkbuttons

2008-09-25 Thread Ramsey, Robert L
://livedocs.adobe.com/flex/3/html/events_01.html On Thu, Sep 25, 2008 at 5:12 PM, Ramsey, Robert L [EMAIL PROTECTED] wrote: I have looked through the examples, and that's what is confusing me. All of the examples show exactly what you have written: myFunction(event:MouseEvent) { Alert.show

[flexcoders] arrays and indexof()

2008-04-15 Thread Ramsey, Robert L
I think I'm being very dumb here, but the indexof() function doesn't seem to work as advertised. I'm working with Flex3. Here's a simplified version of the code: var s:int = new int; var i:int = new int; var l:int = new int; var aYears:Array = new Array(2002, 2003, 2004, 2005); var o:Object =

[flexcoders] editing flv files

2007-11-14 Thread Ramsey, Robert L
Hi, I have some flv files that our users watch in a flex app I wrote. What I'd like to do is to somehow watermark the flv files on the fly to record the user's name. They aren't supposed to redistribute them, but if one does get into the wild I'd like to be able to trace it back. I'd like to

[flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
Hi, I have the feeling I'm being very stupid about something, but here goes. I have a datagrid, myDatagrid, bound to a dataprovider, myData. myData is an ArrayCollection based on an xml list of data returned from a php script with an httpservice call, but I don't think that should make a

RE: [flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
This should end up setting the myBooleanProperty property of the object in your data provider to the checkbox.selected state whenever it is changed. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Ramsey, Robert L wrote: Hi, I have the feeling I'm being very stupid

RE: [flexcoders] datagrids and data changes

2007-10-31 Thread Ramsey, Robert L
changes You have to set editable=true on the DataGrid as well, otherwise the editing mode doesn't kick in. See how far that gets you. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramsey, Robert L Sent: Wednesday, October 31, 2007 9

[flexcoders] odd behavior when editing in a datagrid

2007-10-15 Thread Ramsey, Robert L
Hi, I'm just playing around and learning how to handle it when users edit a datagrid. I did a copy and paste from the Flex help: ?xml version=1.0? !-- itemRenderers\events\EndEditEventFormatter.mxml -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script

RE: [flexcoders] odd behavior when editing in a datagrid

2007-10-15 Thread Ramsey, Robert L
the focus goes to the alert, the validator fires again since the datagrid lost focus and another alrt goes up which... I do not recommend alerts and itemeditors From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramsey, Robert L Sent

[flexcoders] value of clicked/focused cell in a datagrid

2007-10-15 Thread Ramsey, Robert L
Ok, I am definitely being a real idiot here. All I want to do is find out the value of cell that a user has clicked on, tabbed into, or entered into. I can get the row number and column number, but I can't find the syntax to get the data out of the arraycollection. For other languages, I'd just

RE: [flexcoders] value of clicked/focused cell in a datagrid

2007-10-15 Thread Ramsey, Robert L
acMyStuff[1].name From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramsey, Robert L Sent: Monday, October 15, 2007 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] value of clicked/focused cell in a datagrid Ok, I am definitely

RE: [flexcoders] value of clicked/focused cell in a datagrid

2007-10-15 Thread Ramsey, Robert L
or labelFunctions or custom renderers. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramsey, Robert L Sent: Monday, October 15, 2007 12:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] value of clicked/focused cell in a datagrid

[flexcoders] save a variable to a file

2007-09-19 Thread Ramsey, Robert L
Hi, I have a string variable that is the result of a database lookup formatted as a nice csv file. What I'd like to do is use a button to let the user save that string locally. I looked at the FileReference help, but that seems to be more for the result of a url call. I have something like:

RE: [flexcoders] help linking combobox to httpservice data

2007-09-14 Thread Ramsey, Robert L
selected when you need to. hth Scott Ramsey, Robert L wrote: Hi, I am calling an httpservice to get the following information: people person nameJohn Doe/name uid1/uid phone1234567890/phone email[EMAIL PROTECTED

[flexcoders] help linking combobox to httpservice data

2007-09-10 Thread Ramsey, Robert L
Hi, I am calling an httpservice to get the following information: people person nameJohn Doe/name uid1/uid phone1234567890/phone email[EMAIL PROTECTED]/email /person person nameJane Doe/name uid2/uid phone1234567891/phone email[EMAIL PROTECTED]/email /person person nameRichard Roe/name

[flexcoders] playing a wmv file

2007-09-04 Thread Ramsey, Robert L
Am I reading the manual right that I can't play a wmv file in flex app? I want to reference an mms://server/file.wmv url and have it play within the flash app. Alternatively, is there a way to embed an html frame in a flex app? Thanks, Bob