[flexcoders] using as breaks data binding?

2009-05-09 Thread Pan Troglodytes
I've run across some peculiar behavior and I am trying to figure out if I should report it and if so, how exactly to explain it. Given these two bits of code: *TestObject.as:* package { public class TestObject { [Bindable] public var a:uint = 2; [Bindable] public var b:uint = 3;

[flexcoders] Re: Anyone using Flex with LCDS ColdFusion

2009-05-09 Thread Brendan Meutzner
LiveCycle DataServices ES... comes packaged w/ Coldfusion installation, or on it's own integrated with Tomcat or such... What do you want to know re: the configuration? --- In flexcoders@yahoogroups.com, Charles Parcell pokemonkil...@... wrote: I am going to go ahead and out myself. What

[flexcoders] session pooling with Flex/SQLServer w/o ColdFusion?

2009-05-09 Thread Mic
All of our business logic is within stored procedures so we do not need ColdFusion logic. We bought one of the Flex webservices (FlexSQL) to get started, but this is single-threaded. Is it possible to create a pool of webservices? Not sure how how one would bundle them as they would have no

[flexcoders] .csv import stuff

2009-05-09 Thread Vikram Singh
is there any nice and easy way to 'Browse' .csv file on flex and after that send 'Import Request' to php and php will import this .csv file's data to database.? any thought on this stuff!!? Cricket on your mind? Visit the ultimate cricket website. Enter http://beta.cricket.yahoo.com

Re: [flexcoders] Collaborative project: realtime ActionScript WMA converter

2009-05-09 Thread Sam Lai
This should be possible in theory, given Microsoft Silverlight has just added support for doing this exact thing in Silverlight 3 (and there is a project for providing Ogg Vorbis support going on). Who knows what the licensing implications here are though. The only WMA decoder I know of that has

Re: [flexcoders] session pooling with Flex/SQLServer w/o ColdFusion?

2009-05-09 Thread Mike Chabot
If that tool is single threaded then don't use it since that would be a significant downside. Instead, use a programming language like PHP, Java, .NET, or ColdFusion. -Mike Chabot On Sat, May 9, 2009 at 4:28 AM, Mic chigwel...@yahoo.com wrote: All of our business logic is within stored

Re: [flexcoders] Re: Anyone using Flex with LCDS ColdFusion

2009-05-09 Thread Charles Parcell
I am not at all familiar with the LiveCycle products. What does it do for you? within the context of ColdFusion? Charles P. On Sat, May 9, 2009 at 2:54 AM, Brendan Meutzner bmeutz...@gmail.comwrote: LiveCycle DataServices ES... comes packaged w/ Coldfusion installation, or on it's own

Re: [flexcoders] Anyone using Flex with LCDS ColdFusion

2009-05-09 Thread João Fernandes
Brendan, I daily fight against LCDS + CF problems too. Sorry if I missed any previous emails but flexcoders is quite heavy in email traffic. I'm currently running with CF8.0.1 and LCDS 2.6. Didn't upgrade to 2.6.1 since it seems there are a lot of new bugs. So, what issues do you have with this

[flexcoders] Re: dynamic labels with public variable

2009-05-09 Thread Jason B
Thanks Tracy I put that into a try catch statement and still get the ReferenceError: Error #1069 but it's working now? Should i be concerned with the error I tried only one line to less complicate things try{ this[public_ + whichmeal + _image1] = urlpath +

[flexcoders] Re: dynamic labels with public variable

2009-05-09 Thread Jason B
nevermind i had another try statement i forgot with the old code, thanks again Tracy your the best ! --- In flexcoders@yahoogroups.com, Jason B nos...@... wrote: Thanks Tracy I put that into a try catch statement and still get the ReferenceError: Error #1069 but it's working now? Should

Re: [flexcoders] Re: Anyone using Flex with LCDS ColdFusion

2009-05-09 Thread João Fernandes
Charles, LCDS brings Flex applications to a new level of data centric applications. LCDS is a super-set of BlazeDS, everything it's in Blaze is also available in LCDS. LCDS does however contain a Data Management service which relies on Messaging to keep all your clients connected to the same

Re: [flexcoders] .csv import stuff

2009-05-09 Thread Weyert de Boer
What do you mean with browse? You can just load the file using FileReference.load() and then just show it. Just split the text of the file by \n\r (or just \r) and then split every line by the separator (normally the comma). After parsing the first line you could use those as the keys for

[flexcoders] Slider: dataTips always visible?

2009-05-09 Thread Hyder
Can this be done? I tried searching online but no one seems to have a concrete solution.

[flexcoders] Re: Sending textinput id

2009-05-09 Thread Gustavo
--- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: And if you do need to just send changed items, put a, isModified property on the VO and set it when the data is updated.. I have never done anything like it, you think you can maybe, elaborate a little more? a little example,

RE: [flexcoders] Re: dynamic labels with public variable

2009-05-09 Thread Tracy Spratt
Glad you got it. One more piece of advice, avoid using lastResult in AS code. It is intended for use in binding expressions only. Normally, it is not a problem, but in more complex architectures, lastResult can be null or can contain what you do not expect. Tracy Spratt, Lariat

RE: [flexcoders] Re: Sending textinput id

2009-05-09 Thread Tracy Spratt
There is really too much happening, too many options to give you an example. Do you understand what a VO, value Object is? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gustavo

[flexcoders] Flash Speed test - RESULTS !

2009-05-09 Thread tom s
Thanks to all those who took part in my Flash speed test a few weeks ago. I'd like to share back the results, but I must caveat that I only got a small amount of data, so these results are not statically significant. The Purpose = I wanted to know how consistent the timing is in Flash

RE: [flexcoders] using as breaks data binding?

2009-05-09 Thread Alex Harui
Which version of Flex? I don't get it on the latest builds that will ship as 3.4 Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Pan Troglodytes Sent:

[flexcoders] Difference between URLRequest and HTTPService

2009-05-09 Thread oneworld95
What's the benefit of using HTTPService over URLRequest? When would you use one over the other? Thanks. - Alex

[flexcoders] Re: Custom List Item Render to have multiline (so variable Height)

2009-05-09 Thread elysianbob
Looking for an answers on how to solve my ItemRenderer height 100% woes, I stumbled on this post (and subsequently FlexCoders!) and have a few questions. After taking the advice below to override measure and set minHeight and invalidateSize() on my Text controls dataChange event, it appears to

Re: [flexcoders] .csv import stuff

2009-05-09 Thread khaled hafez
Hey, I am not an Expert in Flex but i do know that .csv files are Easy to handle using a Paser on ',' that's the separator in the .csv files (Comma Separated Value). If i were you, i would take the .csv file and convert it to a Well formated XML file then send it in an AJAX request to PHP to

[flexcoders] create a file in system using AIR

2009-05-09 Thread kanu kukreja
I know how i can create a file in documentsDirectory, applicationStorageDirectory, desktopDirectory userDirectory. but how i can create a file using file system in AIR in the path like c:\kanu\test\Hello.txt

[flexcoders] create a file in memory and downlof it using AIR

2009-05-09 Thread markflex2007
Hi, I plan to create a in-memory file with AIR.the content come from other remote object. I can download it when I click a button in AIR. Thanks for your help Mark

Re: [flexcoders] create a file in system using AIR

2009-05-09 Thread Sam Lai
See 'the second way' under the 'Referencing a file or directory' section. http://labs.adobe.com/wiki/index.php/AIR:Articles:Adobe_AIR_Local_File_System_Access#Reading_and_writing_files 2009/5/10 kanu kukreja kanukukr...@gmail.com: I know how i can create a file in documentsDirectory,

[flexcoders] Re: Setting currentState from a function located a child mxml file

2009-05-09 Thread Tim Hoff
While I've also suggested using these in the past, in the spirit of loose coupling, the prefered method would be to dispatch an event, from the component, that would trigger the drillDown method in the parent; where the states are actually located. This way the child doesn't know or care about

[flexcoders] Re: change color text when doing toggle The button

2009-05-09 Thread Tim Hoff
Use the textSelectedColor style. -TH --- In flexcoders@yahoogroups.com, ade_huh ade_...@... wrote: hello there. do u know how to change color text when doing 'toggle function'(it is similar 'selected function') The button? thank before

[flexcoders] how to know the AIR version in my local pc?

2009-05-09 Thread markflex2007
Please give me a idea,thanks Mark

RE: [flexcoders] .csv import stuff

2009-05-09 Thread Tracy Spratt
You will have two delimiters. One, the row delimiter is a newline or carriage-return or both. The other is the field delimeter, often but not always a comma. Google this and I think you will find some examples. I haven't parsed a csv file in actionscript myself. In .net, you actually read

Re: [flexcoders] using as breaks data binding?

2009-05-09 Thread Pan Troglodytes
3.3.0. I also get it with 4.0.0.6137. Just downloaded and got it in 6772, too. I'm using player version 10,0,12,36. Do you need to know anything about my Flex Builder version? Let me know anything else I can provide. When you say you don't get it with the soon-to-be 3.4, what exactly do you