[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-23 Thread busitech
I took a look at the FB4 Beta 2 License Agreement, and here's what I found: 2.4.7 Flash (R) Builder(R) with LiveCycle(R) Data Services(LCDS) Data Management Library. Your rights to this Software are limited. In order to (a) utilize the file called fds.swc (the LCDS Library) to develop

RE: [flexcoders] Adobe pulls Single CPU and 100-user licenses [1 Attachment]

2010-01-23 Thread Glenn Williams
I didn't know cf9 had lcds 3 tom? tinylion development design From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom Chiverton Sent: 22 January 2010 09:47 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Adobe pulls Single

Re: [flexcoders] Adobe pulls Single CPU and 100-user licenses

2010-01-23 Thread João Fernandes
No, CF9 is bundled with BlazeDS and can have LCDS 2.6.x deployed on it (manually merging). Currently there is no LCDS 3 support for CF9. João Fernandes On 23 January 2010 08:22, Glenn Williams gl...@tinylion.co.uk wrote: [Attachment(s) #1265a47372272d14_TopText from Glenn Williams included

Re: [flexcoders] Adobe pulls Single CPU and 100-user licenses

2010-01-23 Thread Jochem van Dieten
On Thu, Jan 21, 2010 at 4:38 PM, busitech wrote: I'm curious how many of your projects were deployed into production using the no-charge Single CPU (or the 100-user departmental) licenses of LCDS 2.x. One of our clients is an ISV who would now require licenses for about 700 CPUs. They use a

Re: [flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-23 Thread Jochem van Dieten
On Fri, Jan 22, 2010 at 7:11 PM, busitech wrote: João, would you (and others) mind heading over to Anil Channappa's blog post  about this to voice your concern?  There's a long string of comments which are calling for lower pricing so LCDS can be successful.  We are very passionate about

[flexcoders] Dog woofs, Cat meows; can the same listener listen to either and how do you remove the eventlistener?

2010-01-23 Thread Tim Romano
The question is at the very bottom. Here's the scenario: Let's say I have a base class Animal, and subclasses Dog and Cat that extend Animal. Animal has a protected Speak() method which Dog and Cat each override: when aDog instance and aCat Speak(), they each raise an event, a

[flexcoders] Codefest and Adobe Presents Gumbo Rumble:Are you ready for the new AIR?

2010-01-23 Thread saket
Hello Adobe and Department Of Computer Engineering, IT-BHU presents GumboRumble: Are you ready for the new AIR. It is a completely _online_ event for _students_ across the globe, on development of applications on AIR 2.0 SDK has prizes worth 50,000 INR (approx. 1100 USD) _Adobe

[flexcoders] [HELP] Little help with parsing datas

2010-01-23 Thread ~[TM3]~[Dev]At0ng[/Dev]~[/TM3]~
I recently have this code from gotoandlearnforums to parse datas separated with commas from a text file but the problem is I dunno (I really had no idea how) how to exclude rows that begins with a double slashes (//), hope someone can help me with this. Parsing datas is ok but excluding rows is

RE: [SPAM] Re: [SPAM] [flexcoders] TabNavigator switches to second tab when revealed after a currentState change

2010-01-23 Thread Tracy Spratt
A ViewStack is simply a way to switch between components. It has no visible presence of its own. The children of a ViewStack can be anything (in some container), including a full TabNavigator. You can nest ViewStacks as desired. A side note on TavNavigator; if you think you will ever want

[flexcoders] Re: dynamically loading cssStyle text into Application?

2010-01-23 Thread MicC
thanks valdhor - apologies for delayed appreciation :-) --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: parseCSS only works for text fields (See http://livedocs.adobe.com/flex/3/langref/flash/text/StyleSheet.html) You will need to parse the string yourself and apply

[flexcoders] setting drop on dataGrid.dataGridHeader question

2010-01-23 Thread MicC
To do this I think I need to set events DragEvent.DRAG_ENTER, DragEvent.DRAG_DROP on the dataGridHeader. I have a reference to the grid, but cannot get to its header! I am looking for the correct actionscript for grid.dataGridHeader.addEventListener( DragEvent.DRAG_ENTER, gridDrop ); Unless I

[flexcoders] Re: setting drop on dataGrid.dataGridHeader question

2010-01-23 Thread MicC
var o:Object = new Object; o = grid1.getChildAt(3); o.addEventListener(DragEvent.DRAG_ENTER,allowDrop); o.addEventListener(DragEvent.DRAG_DROP,acceptDrop); works but seems an inelegant way of accessing header - is there a better way? Next question :-) The grid header that is dropped on is

Re: [SPAM] Re: [SPAM] [flexcoders] TabNavigator switches to second tab when revealed after a currentState change

2010-01-23 Thread Penny Laus
On Sun, Jan 24, 2010 at 1:40 AM, Tracy Spratt tr...@nts3rd.com wrote: A ViewStack is simply a way to switch between components. It has no visible presence of its own. The children of a ViewStack can be anything (in some container), including a full TabNavigator. You can nest ViewStacks

[flexcoders] ViewStack versus state changes

2010-01-23 Thread Penny Laus
After struggling a bit to combine a TagNavigator and a few states in an application, I'm wondering - when are states preferable to a ViewStack-derived navigator? ViewStack offers several advantages: * The MXML is clear and easy to reorganize. * You can get a least some kind of help from the

[flexcoders] Reading URL arguments from within initApp()

2010-01-23 Thread Penny Laus
I'm working on a registration system that will be used by new and existing participants. The customer would like to be able to email existing participants a URL that bypasses the login screen. So, if the usual URL is http://www.foo.com/register.html They would like to use a URL that skips

[flexcoders] Re: [HELP] Little help with parsing datas

2010-01-23 Thread jc_bad28
My approach would be to load all the rows and parse the // characters as a column, get a count of rows where that column is not empty, and then delete them. --- In flexcoders@yahoogroups.com, ~[TM3]~[Dev]At0ng[/Dev]~[/TM3]~ atong...@... wrote: I recently have this code from

[flexcoders] Re: How to parse xml with namespaces

2010-01-23 Thread jc_bad28
Here's how I handle the messy SOAP and namespace returned from my web service application server: (I set the return format to e4x) private function webServiceResultHandler(event:ResultEvent):void { var xmlResult:XMLList = event.result as XMLList; var xmlSource:String =

[flexcoders] How to parse words in a PDF file?

2010-01-23 Thread Greg Lafrance
I want to parse the text in a PDF file and extract the words into an array, because I am creating an application to create English to Japanese dictionaries. How can I do this in ActionScript?

[flexcoders] Loading videos/sound in Flex (web) out of a ByteArray

2010-01-23 Thread Mark
Hello, I am working on a flex project for my job, and we have seem to of hit a road block. we have two parts to our project, one part which is written in AIR that is used to create case files, which is really just a zip with a XML file and 'assets', as in pictures, text, audio, video,

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-23 Thread busitech
Successful and available for everyone are two very different thingsI am more concerned with Adobe making enough money of LCDS Hi Jochem, I agree 100%, it should not be given away. A lower price does make it available to a larger market. For example, if a copy of LCDS were: - $1,000 for every