[flexcoders] Re: Flex 3 and Oracle

2009-03-03 Thread gers32
Hi, My company's applications are based on Oracle databases and Oracle Forms. I've built a prototype application using a Flex front-end and Ruby-on-Rails back-end. And although it works great, my boss is afraid of customers' potential reactions to Ruby-on-Rails and the whole Ruby + Rails + (oth

[flexcoders] Re: Seperate Parent Field & Hirarchy Field in AdvancedDataGrid

2009-03-03 Thread yossi.baram
Please help --- In flexcoders@yahoogroups.com, "yossi.baram" wrote: > > Hi, > I am creating a TreeGrid using the AdvancedDataGrid in Flex 3. > > The function that build my group columns is : > > private function setGroupedColumns():void > { > > > var groupingColl

Re: [flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread Ashish Verma
You can use code like this // Update the waiting window status splashWindow.msgForUser ="Perparing Wixi Desktop Folder Structure ..."; // taking the evet's current targate tempURLLoader = URLLoader(event.currentTarget); // taking dataString = String(tempURLLoader.data); dataFromWixi = JSON

RE: [flexcoders] Restricting characters in User input controls

2009-03-03 Thread Tracy Spratt
The problem is the quote is causing the msml compile problems. Try using an entity string like " Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kotha poornima Sent: Tuesday, March 03, 2009 11:59 PM To: flexcoders Subject: Fw: [flexcode

RE: [flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread Tracy Spratt
Then if you trace the length of rawArray, what do you get? I do not know JSON, but there are techniques to figure out exactly where a problem lies. Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Keisha Lexie Sent: Tuesday, March 03, 20

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
Well, this is research and I'm trying all possibilities, but I suppose you could say the goal is to allow team A to embed team B's application in a tab with the minimum of disruption to either team. Team B's application is normally embedded in HTML and reads flashvars at startup (i.e. in a creation

[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-03-03 Thread luke_lee1124
Hi, rico Thanks very much. what is the data type of your "gc"? mine is a mx:HierarchicalData, it did not have a refresh() method. Thanks --- In flexcoders@yahoogroups.com, Rico Leuthold wrote: > > Hi Luke, > > I couldn't find any solution to this, but found a workaround. > > Just filter

RE: [flexcoders] Another on try-catch-finally ...

2009-03-03 Thread Alex Harui
Try/catch is a good thing, but terribly slow, so I'm not surprised that taking it out helped CPU utilization. First thing to consider is whether any code in the try{} block will actually throw errors. If so, what is the likelihood of it throwing errors, and how the application should respond i

RE: [flexcoders] Restricting characters in User input controls

2009-03-03 Thread Alex Harui
Try: Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kotha poornima Sent: Tuesday, March 03, 2009 8:59 PM To: flexcoders Subject: Fw: [flexcoders] Re

Fw: [flexcoders] Restricting characters in User input controls

2009-03-03 Thread kotha poornima
Hi All, Can anyone give me an idea how i can solve this. Thanks in Advance, Poornima - Forwarded Message From: kotha poornima To: flexcoders Sent: Tuesday, March 3, 2009 5:20:18 PM Subject: [flexcoders] Restricting characters in User input controls Hi, I want to exclude single quot

Re: [flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread Keisha Lexie
Yes, I have it like this: private function updatedPHPDataResult(event:ResultEvent):void { lblStatus.text = String(event.result); } --Keisha From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Tuesday, March 3, 2009 5:33:05 PM Subject:

Re: [flexcoders] Another on try-catch-finally ...

2009-03-03 Thread Jake Churchill
No, the try/catch block is a good thing. I'm not sure what updateListArray() does but there is always a potential for an error. What if bPollingDatabase is not yet created, then an error will be thrown. The empty catch simply means that IF an error happens, nothing special is done to correct

Re: [flexcoders] try, catch, finally ...

2009-03-03 Thread Jake Churchill
I use try-catch but rarely do I find a need for finally. Finally is optional and it is only needed if you absolutely need some piece of code to run regardless of whether the code hits the try or the catch. Personally, I feel like try/catch blocks are just good practice. Maybe it was only the

RE: [flexcoders] Another on try-catch-finally ...

2009-03-03 Thread Wildbore, Brendon
If the code breaks in the try block it wont stop the application... that's a benefit? Often my catch blocks only has trace(blah) in it. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of SJF Sent: Wednesday, 4 March 2009 4:01 p.m. T

[flexcoders] Another on try-catch-finally ...

2009-03-03 Thread SJF
I have a head-cold (hence the possibly obvious answer to this question) and a block of code as such: function checkResponder(e:Event = null):void { try { bPollingDatabase = true; updateListArray(); } catch (err:Error) { // } } Now considering there is no code in the 'catch' block, the

[flexcoders] try, catch, finally ...

2009-03-03 Thread SJF
Technically, it's good practice/professional to use try-catch-finally blocks in your actionscript logic. This ensures a robust, easily debugg-able application. However, can anyone comment if they actually use try-catch-finally or whether anyone is for or against it's use. I ask because I've recei

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Tracy Spratt
I am confused now, which method are you using? Are you attempting to pass values between the fully instantiated components, or are you trying to use flashvars? I have successfully use both approaches, but the last few posts have been dealing with using component lifecycle events to trigger dir

[flexcoders] Re: Truncated last item in list

2009-03-03 Thread stldvd
After reading up on this, and since moving something in the list seems to fix it, I'm thinking I need to try : invalidateProperties(); invalidateDisplayList(); super.commitProperties(); Where should these be called? On creationComplete? --- In flexcoders@yahoogroups.com

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth wrote: > > Thanks for the example, Amy. I was able to do this (on application complete > in the host): > > loadedApp = event.target.application as > Application; > loadedApp[

[flexcoders] Re: flex charts: disable default verticalAxisRenderer issue

2009-03-03 Thread syrgakt
--- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, "syrgakt" wrote: > > > > Hello everybody, > ... > > > Below is my code snippet adding vertical axes renderers: > > > > public function > > addVerticalAxisRenderer(axisRenderer:AxisRenderer):void{ > > var

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
Yes, that's what Amy's example does, and since I do control both apps, it seems that's probably the way to go. Nevertheless, I am curious, because a) there must be many apps one would like to embed that do something at startup that depends on a flashVar b) the literature on sub apps vs modules say

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Bjorn Schultheiss
The question begs. Why would you want to use the untyped params object to pass values between swf applications. why not just create a setter on the sub application and when its loaded the set the value on it via the parent application. use a common interface to get the setter method signature.

[flexcoders] Re: Flex 3.3 SDK and AdvancedDataGrid

2009-03-03 Thread Bjorn Schultheiss
>From the release notes A new version of the data visualization libraries needs to be downloaded and installed into the SDK 3.3 installation to leverage features such as charts and the Advanced DataGrid. The library can be downloaded from the main Flex download page: http://www.adobe.com/produc

[flexcoders] Flex 3.3 SDK and AdvancedDataGrid

2009-03-03 Thread Troy A. Binford
Hi, I updated to 3.3 today and now AdvancedDataGrid is not found. Is there something I am missing? Thanks.

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Tracy Spratt
Those traces tell me it should be working, that the embedded app is ready when the host app attempts to communicate with it. Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Tuesday, March 03, 2009 6:42 PM To: flexcoder

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Alex Harui
File:// will affect timing and can cause the trace order you are seeing. If you've set the source attribute of a child SWF in SWFLoader, it can load before the main app dispatches applicationComplete.If you set the source in applicationComplete then it will guarantee that the main app is do

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
No, Event.INIT did not help. I wonder if it's because I'm running the host from Flexbuilder and the url passed to SWFLoader is a file URL. On Tue, Mar 3, 2009 at 3:47 PM, Bjorn Schultheiss < bjorn.mailingli...@gmail.com> wrote: > Application.creationComplete should be fine. > > on your Loaders

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Bjorn Schultheiss
Application.creationComplete should be fine. on your Loaders try Event.INIT I'm passing flashVars from shell to modules fine, don't see why there would be any hurdles with sub-applications. --- In flexcoders@yahoogroups.com, Richard Rodseth wrote: > > I just did a quick trace test, and the mes

[flexcoders] Re: Adding verticalaxis(es) via actionscript

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, "Trefalgar Bain" wrote: > > --- In flexcoders@yahoogroups.com, "Amy" wrote: > > I think you just need to play with the dataFunctions and/or > > labelfunctions on the axes until you get what you want. > > > DataFunction sets the data up to be graphed on the li

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
I just did a quick trace test, and the messages were written to the console in the following order: 1) SWFLoader load complete (registers listener for app complete) 2) embedded application creation complete handler 3) embedded application app complete handler 4) host app handler for embedded app a

Re: [flexcoders] File uploads with JSON?

2009-03-03 Thread Fotis Chatzinikos
What is the point of using JSON to do that? On Tue, Mar 3, 2009 at 8:32 PM, oneworld95 wrote: > Is it possible to use JSON to do file uploads in Flex to a Java servlet? > > > - Alex C > > >

RE: [flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread Tracy Spratt
Is your data in event.result? Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of keishalexie Sent: Tuesday, March 03, 2009 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

Re: [flexcoders] Question: Strategies for compiling individual modules into SWCs

2009-03-03 Thread David Adams
On Wed, Mar 4, 2009 at 7:57 AM, claudiu ursica wrote: > Try with ant or maven, have to manually write build scripts though... Thanks for the confirmation. I ended up spending a couple of hours the other night writing executable scripts that call the compc compiler in the SDK. I haven't figured ou

RE: [flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Tracy Spratt
That (and any item dependent behavior) would have to happen in the itemRenderer, probably commitProperties. Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Johannes Nel Sent: Tuesday, March 03, 2009 3:25 PM To: flexcoders@yahoogroups.com Subje

[flexcoders] Re: Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread keishalexie
Here's where it is trying to decode from the project I have private function getPHPData(event:ResultEvent):void { var rawArray:Array; var rawData:String = String(event.result); rawArray = JSON.decode(rawData) as Array; dataArray = new ArrayCollection(rawArray);

[flexcoders] F10 in AIR problem

2009-03-03 Thread kyle.vanvranken
Anyone here have any experience using function keys in AIR? I am having a problem most specifically with the F10 key under windows. The default behavior of said key being to open the current window's context window. Any help would be greatly appreciated. Thanks, Kyle

RE: [flexcoders] distributing air apps without install

2009-03-03 Thread Jim Hayes
That's slightly different, in that case the app *is* installed. As far as I know, the AIR runtime and the app* must be installed on the local system, as opposed to a totally "standalone" application. The shu player used to temporarily install both to the users temp directory and run them from there

[flexcoders] WordWrap in ToggleButtonBar

2009-03-03 Thread markgoldin_2000
Can I span button's text across multiple lines in a ToggleButtonBar control? Thanks

Re: [flexcoders] distributing air apps without install

2009-03-03 Thread Weyert de Boer
Yes, you only need to have a freely redistrubition license from Adobe which also comes with the information to install your AIR app and the runtime silently. See: http://www.adobe.com/products/air/runtime_distribution1.html > > Is it possible to distribute an AIR app that can be run without bei

[flexcoders] distributing air apps without install

2009-03-03 Thread arieljake
Is it possible to distribute an AIR app that can be run without being installed? Can I zip the directory of an installed air app and distribute it to users for them to decompress and run without having to install?

Re: [flexcoders] Question: Strategies for compiling individual modules into SWCs

2009-03-03 Thread claudiu ursica
Try with ant or maven, have to manually write build scripts though... HTH, Claudiu From: David Adams To: flexcoders@yahoogroups.com Sent: Friday, February 27, 2009 5:23:56 AM Subject: [flexcoders] Question: Strategies for compiling individual modules into SWCs

[flexcoders] Re: Setting the resize event handler for Application?

2009-03-03 Thread valery_j
--- In flexcoders@yahoogroups.com, "Keith Hughitt" wrote: > > Hi all, > > I am getting run-time errors in strange situations and was wondering if > anyone might be able to provide some insight as to what is going on. > > If I try to attach a "resize" event handler to the Application class, >

[flexcoders] Re: Menubar sub menu pop up orientation

2009-03-03 Thread Sefi Ninio
Bump... Anyone? On Mon, Mar 2, 2009 at 3:12 PM, Sefi Ninio wrote: > Hmm... No-one can think of a way? > > I have tried everything I can think of, but nothing makes the menu bar open > upwards instead of downwards... > I am desperate! > > Any help would be greatly appreciated. > > Thanks, > Sefi

[flexcoders] Re: Modules Communication

2009-03-03 Thread jtgrassie
This is a crazy long thread! How you need to implement communication between modules and host application is very application specific in that there is no 'one size fits all' solution. For some solutions, simple Events is the way to go. Others may well suit dependency injection, others a more cen

Re: [flexcoders] static function and getDefinitionByName

2009-03-03 Thread Sefi Ninio
Hmmm... I know I should have though about that... Thanks On Tue, Mar 3, 2009 at 8:50 PM, Alex Harui wrote: >Oh, if it is a getter then just use > > ClassRef[getter] > > > > as in: > > > > trace(ClassRef[getter]); > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc.

Re: [flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Johannes Nel
i cannot determine this at the point where my factory gets created, also the rows get reused. On Tue, Mar 3, 2009 at 7:33 PM, Tracy Spratt wrote: >Set the rowCount = to the number of items in the dataProvider? > > > -- > > *From:* flexcoders@yahoogroups.com [mail

[flexcoders] Setting the resize event handler for Application?

2009-03-03 Thread Keith Hughitt
Hi all, I am getting run-time errors in strange situations and was wondering if anyone might be able to provide some insight as to what is going on. If I try to attach a "resize" event handler to the Application class, and refer to other components within the application, I end up getting run-tim

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
It was on creation complete. On Tue, Mar 3, 2009 at 11:17 AM, Alex Harui wrote: >Not sure when you tried the code that didn’t work, but application is > not available right away > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. > > Blog: http://blogs.a

[flexcoders] Re: list control multiple lines?

2009-03-03 Thread ppongtong
You will need wordWrap="true" variableRowHeight="true" --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > Set variableRowHeight="true" > > > > Tracy > > > > _ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of Greg Morphis > Sent: T

[flexcoders] Re: list control multiple lines?

2009-03-03 Thread ppongtong
It is there, it is belong to ListBase properties. You will have to click on "Show Inherited Public Properties" from the top property table of List.

Re: [flexcoders] list control multiple lines?

2009-03-03 Thread Greg Morphis
I dont see either of those listed on the language reference site. http://livedocs.adobe.com/flex/2/langref/mx/controls/List.html Where would I find those properties? On Tue, Mar 3, 2009 at 1:19 PM, Alex Harui wrote: > And wordWrap=true > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems

RE: [flexcoders] Application default button no longer functions after closing popup

2009-03-03 Thread Alex Harui
I think there are some issues with a popup on startup going away and the application not being activated. You can use systemManager.activate(application) to activate it. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders

[flexcoders] Truncated last item in list

2009-03-03 Thread stldvd
Hi all, I've got an application which is being loaded as a SWF into another app. Everything looks and works fine on Mac, but not on Windows. The loaded app consists of Application --> VBox --> List. The list allows drag and drop to change the order of its elements. Everything works fine, except t

RE: [flexcoders] list control multiple lines?

2009-03-03 Thread Alex Harui
And wordWrap=true Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Tuesday, March 03, 2009 10:44 AM To: flexcoders@yahoogroups.com Subje

[flexcoders] Re: flex charts: disable default verticalAxisRenderer issue

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, "syrgakt" wrote: > > Hello everybody, ... > Below is my code snippet adding vertical axes renderers: > > public function > addVerticalAxisRenderer(axisRenderer:AxisRenderer):void{ > var tp:Array = this.verticalAxisRenderers; > tp.push(axisRenderer)

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Alex Harui
Not sure when you tried the code that didn't work, but application is not available right away Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard R

Re: [flexcoders] jQuery for Flex - a Behavior Injection Framework

2009-03-03 Thread Sean Clark Hess
Just a quick note - the behavior tags in bifff (going to be the name) have nothing to do with Mate. So... no docs yet, sorry. Check out the example apps if you want more info for now. ~sean On Tue, Mar 3, 2009 at 10:09 AM, Michael Wills wrote: > Heh yeah just a play on the names you mentioned

[flexcoders] Re: updating an item renderer

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, "flexrookie" wrote: > > --- In flexcoders@yahoogroups.com, "Amy" wrote: > > > > --- In flexcoders@yahoogroups.com, "flexrookie" wrote: > > > > > > hi amy, > > > the manager class approach is interesting, and sounds safe from a > > > memory-management perspec

RE: [flexcoders] static function and getDefinitionByName

2009-03-03 Thread Alex Harui
Oh, if it is a getter then just use ClassRef[getter] as in: trace(ClassRef[getter]); Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Sefi Ninio Sent: Mo

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
Thanks for the example, Amy. I was able to do this (on application complete in the host): loadedApp = event.target.application as Application; loadedApp["configid"] = "Default"; and see the value in the loaded application. p

RE: [flexcoders] list control multiple lines?

2009-03-03 Thread Tracy Spratt
Set variableRowHeight="true" Tracy _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Greg Morphis Sent: Tuesday, March 03, 2009 1:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] list control multiple lines? I'm working on an enhancem

[flexcoders] Re: Rotate a custom Marker icon with Google Maps Flex API

2009-03-03 Thread bigdummy504
--- In flexcoders@yahoogroups.com, "bhaq1972" wrote: > > Google maps flex API have their own forum. You can ask the question > there...very helpful bunch. Hi, thank you. Could you provide a link? I have not been able to find this group, is it a yahoo or google group? J

[flexcoders] File uploads with JSON?

2009-03-03 Thread oneworld95
Is it possible to use JSON to do file uploads in Flex to a Java servlet? - Alex C

RE: [flexcoders] LCDS DatSync Issue

2009-03-03 Thread Jeff Vroom
Just from this description, I'm not sure why you are getting that fault event either... can you turn on the and send along the flashlog.txt? The server debug log might also be helpful - in services-config.xml, set level="Debug" and make sure Message.* and Service.* are in the filter patter

[flexcoders] Re: Add Flex Server capability to already existing FlexBuilder project?

2009-03-03 Thread erdal
maybe there's a more formal way of doing it but once I did this editing the .flexProperties file in your project folder. (Use another server project's .flexProperties file for cheat sheet) --- In flexcoders@yahoogroups.com, "javaguy44" wrote: > > Hi, > > I have an existing project that was crea

Re: [flexcoders] amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-03 Thread Fotis Chatzinikos
I never use amf to upload images. I always post to a normal upload.php page. If you do not find a solution to your amf problem try this... Have in mind that you will need to send the server session as well if you follow my advice, as the flash player has a different session id in some browsers (t

[flexcoders] list control multiple lines?

2009-03-03 Thread Greg Morphis
I'm working on an enhancement for an existing app and currently there's a list control being populated. The problem is that if there's too much text entered in the admin section then it's just running off to the side and being hidden. I looked at the List properties (this is Flex 2 btw) and nothing

[flexcoders] amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-03 Thread Rico Leuthold
Hi, I have a really annoying, randomly occuring, problem with amfphp when I want to export an image file. The application is sending a byteArray (png encoded) to php over amfphp, where the png file is created and the image file is served for download. Sometimes that works perfect, but the s

[flexcoders] Show Text deleted as shown in Word Document

2009-03-03 Thread ilikeflex
Hi I want to show the text as "deleted text" just like in microsoft word. The black line over the text is shown as deleted. How can we do the same in flex. Thanks ilikelfex

RE: [flexcoders] Re: Modules Communication

2009-03-03 Thread Tracy Spratt
I'm not sure, maybe since modules are independent swf's, but that is way more complicated than necessary. Look into the singleton data model. In such a case, you would do: 1. in the source module, MyModel.getInstance().id = myTextInput.text; 2. In the target module, text={ MyModel.g

[flexcoders] Recommended MVC for Flex/AS?

2009-03-03 Thread Adrian Williams
Hi All, I'm curious as to what our overall community would recommend, why and the pros/cons of the various MVC's that are out there for Flex/AS. Thanks, Adrian

RE: [flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Tracy Spratt
Set the rowCount = to the number of items in the dataProvider? _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Johannes Nel Sent: Tuesday, March 03, 2009 9:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] adg as adg renderer - sizing the ch

Re: [flexcoders] Re: Flex 3.3 and Flash Player 10.0.22 coming?

2009-03-03 Thread Matt Chotin
Rollout wasn't so smooth but everything's up now. http://www.adobe.com/products/flex/flexdownloads/ The DMV bits are there too. SDK bug fixes are here: https://bugs.adobe.com/jira/secure/IssueNavigator.jspa?mode=hide&requestId=12020 I'll get one for DMV too, though you can search the bugbase y

RE: [flexcoders] Re: Modules Communication

2009-03-03 Thread Tracy Spratt
If you don't want to set up a full blown communication manager, you could do this: 1) dispatch a *bubbling* event from your source module 2) Set up a listener at the main application on "this" (this.addEventListener.) 3) Have the handler for that listener re-dispatch the event

[flexcoders] Re: Modules Communication

2009-03-03 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, "thelordsince1984" wrote: > > --- In flexcoders@yahoogroups.com, Simon Bailey wrote: > > > > On the tip for communicating between modules using a framework, > > PureMVC has a utility called Pipes which helps you accomplish this: > > > > http://trac.puremvc.or

Re: [flexcoders] jQuery for Flex - a Behavior Injection Framework

2009-03-03 Thread Michael Wills
Heh yeah just a play on the names you mentioned in your blog, i.e. "decaf", "cola", "bif(ff?)", etc. I am only just getting started with Mate but have appreciated the injection concept. My first hands on dose of that was with PureMVC's ViewMediators. Mate and your framework is simpler for folks

[flexcoders] Re: Adding verticalaxis(es) via actionscript

2009-03-03 Thread Trefalgar Bain
--- In flexcoders@yahoogroups.com, "Amy" wrote: > I think you just need to play with the dataFunctions and/or > labelfunctions on the axes until you get what you want. DataFunction sets the data up to be graphed on the line (sets the yField and xField). The lines are graphing fine, just not on

Re: [flexcoders] Add Flex Server capability to already existing FlexBuilder project?

2009-03-03 Thread Jeffry Houser
I think all you need to do is add a services config argument to the compiler string. javaguy44 wrote: > Hi, > > I have an existing project that was created since FlexBuilder 2.0.x, > and it didn't have integration w/ a J2EE server / BlazeDS / LiveCycle. > > I now want to change the properties

Re: [flexcoders] Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread Anggie Bratadinata
Have you decoded the JSON data ? Here's a snippet from a project I'm working on: public function resultHandler(e:ResultEvent):void{ var rawString:String = String(e.result); var json:* = JSON.decode(rawString); var players:Array = json as Array; _model.leaders = new ArrayCollection(players); } I

[flexcoders] Re: Flex 3.3 and Flash Player 10.0.22 coming?

2009-03-03 Thread tntomek
--- In flexcoders@yahoogroups.com, "Tianzhen Lin" wrote: > > Not sure if this is old news, I just noticed a massive commit of Flex > framework classes on Flex framework's repository, along with a nifty comment > > "Merge 3.x revisions 5042,5072-5073,5090-5091 -> trunk > This includes the latest r

Re: [flexcoders] Detecting other type of mouse event

2009-03-03 Thread Adrian Williams
Will listening for MOUSE_DOWN then MOUSE_MOVE then MOUSE_UP help? carlo giordano wrote: Is possible in the Flex Framework detecting the continuous press of mouse click like when we drag and drop a UIComponent ? And then detecting when the mouse is released ? I have not found anything in the net

Re: [flexcoders] Detecting other type of mouse event

2009-03-03 Thread Fotis Chatzinikos
mouse move? on press, register mouse move and then on release / drop unregister... On Tue, Mar 3, 2009 at 6:17 PM, carlo giordano wrote: > Is possible in the Flex Framework detecting the continuous press of > mouse click like when we drag and drop a UIComponent ? And then > detecting when the

[flexcoders] Detecting other type of mouse event

2009-03-03 Thread carlo giordano
Is possible in the Flex Framework detecting the continuous press of mouse click like when we drag and drop a UIComponent ? And then detecting when the mouse is released ? I have not found anything in the network, anyone has ideas about ? Very Thanks.

Re: [flexcoders] Question about how to draw a line connecting two UIComponent

2009-03-03 Thread Tom Chiverton
On Tuesday 03 Mar 2009, carlo giordano wrote: > Thanks for the link, but now I would connect the node with straight > lines not curved lines. Have you some idea or some tututorial how to > do this ? Graphics.lineTo(); -- Tom Chiverton Helping to apprehensively integrate visionary magnetic distri

Re: [flexcoders] Flex 3.3 and Flash Player 10.0.22 coming?

2009-03-03 Thread Tom Chiverton
On Tuesday 03 Mar 2009, Kenneth Sutherland wrote: > Do you mean the livedocs URL for version 3.2? if so you can download it > from here. Sort of :-) I mean, where can I get the 3.2 LiveDocs online (not downloadable), now that 3.3 is at .../3/... ? The same way I can get ColdFusion 7 docs even th

[flexcoders] Re: Rotate a custom Marker icon with Google Maps Flex API

2009-03-03 Thread bhaq1972
Google maps flex API have their own forum. You can ask the question there...very helpful bunch. --- In flexcoders@yahoogroups.com, "Jean H. Chandler" wrote: > > Greetings ladies and gentlemen of Flex, > > My name is Jean. I'm something of a Flex newby, though I've done a few small Flex

[flexcoders] Re: Modules Communication

2009-03-03 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, Simon Bailey wrote: > > On the tip for communicating between modules using a framework, > PureMVC has a utility called Pipes which helps you accomplish this: > > http://trac.puremvc.org/Utility_AS3_MultiCore_Pipes > > ;S > > On 3 Mar 2009, at 10:10, claudiu

RE: [flexcoders] flexlib and subversion

2009-03-03 Thread Kevin Benz
The metadata for SVN will conflict trying to cover two repositories in the same source directories. There are a couple of ways to overcome this. The first (and probably least risky) would be to use build automation with Ant and have your Ant scripts copy over your source to a shadow direct

[flexcoders] Re: Access the DLL from Flex

2009-03-03 Thread anatolet
Lucio, If you a looking to develop communication piece yourself, you could either implement socket server (accessible form both environments) or LocalConnection implementation as C++ DLL. Socket server might have issues with your clients security, while LocalConnection(based on memory-mapp

[flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Johannes Nel
Hi All When using an adg as the renderer for another adg, has anyone got any tipes on how to size the child renderers so i don't have empty rows. thanks -- j:pn \\no comment

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth wrote: > > I'm experimenting with loading sub applications using SWFLoader. I've read > numerous posts about this, but for the life of me can't figure out how to > pass flashvars to the sub application. In particular, the technique > described h

[flexcoders] Re: Flex 3 and Oracle

2009-03-03 Thread oneworld95
Flex is a presentation tool; it requires some server-side tech (JSP, PHP, .NET, etc.) to fetch the data and provide it to Flex (via XML or BlazeDS). I think some databases have capability for web services to hit them directly, and then you could connect to them from Flex using the WebService class.

[flexcoders] Re: Adding verticalaxis(es) via actionscript

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, "Trefalgar Bain" wrote: > > --- In flexcoders@yahoogroups.com, "Amy" wrote: > > A quick scan of your code isn't revealing to me what you changed. > > Could you add in comments that show where you've modified it? > > I'm getting close. I've got the lines gra

[flexcoders] Add Flex Server capability to already existing FlexBuilder project?

2009-03-03 Thread javaguy44
Hi, I have an existing project that was created since FlexBuilder 2.0.x, and it didn't have integration w/ a J2EE server / BlazeDS / LiveCycle. I now want to change the properties of my FlexBuilder project so that it integrates w/ a BlazeDS server. Right clicking on the project properties in

[flexcoders] Flex 3 and Oracle

2009-03-03 Thread srinuguda
Friends, I am new to flex 3. I want to know how to connect flex to backend (directly) oracle and do the communication ie inserts/updates/deletes and queries. We already have application in oracle with forms/reports as front end. I am planning move to flex (front end ) from forms/reports. We hav

[flexcoders] Error #1034: Type Coercion failed: cannot convert JSON Data

2009-03-03 Thread keishalexie
Hi Everyone, I am fairly new to Flex and am doing a project using Flex 3, the as3corelib, and a PHP file that is sending json data. The json data is not being displayed in my data table and what is coming through is valid (I checked in the JSON Validator). I really am not sure where the problem

Re: [flexcoders] Question about how to draw a line connecting two UIComponent

2009-03-03 Thread carlo giordano
Thanks for the link, but now I would connect the node with straight lines not curved lines. Have you some idea or some tututorial how to do this ? 2009/2/28 Maciek Sakrejda : > It's not a drop-in library, but you may want to take a look at Simon > Gladman's node-based UI: > > http://flexmonkey.bl

[flexcoders] flex charts: disable default verticalAxisRenderer issue

2009-03-03 Thread syrgakt
Hello everybody, Currently I'm making dynamically flex 3.2 charts entirely using actionscript only. I had to do this since I need full control over the chart by AS3. I've managed to do it within MXML with no problem. But in case of actionscript I'm struggling with some obstacles. The thing is

[flexcoders] LCDS DatSync Issue

2009-03-03 Thread deepali_kaul
We are having LCDS Data management services which is using Abstract Assembler approach . Autos sync is enabled for the service. Situation is like this Two clients are seeing same fill method First client deletes one row Second client inserts one record before sync happens Second Client ge

[flexcoders] Access the DLL from Flex

2009-03-03 Thread Lucio Batistella
OUR Project based in history and real time graphic available for active to exchange. We developed the Application in Adobe Flex Builder 3.0, with ActionScript 3.0, and we are implementing all features necessary. This product will be available within a solution already developed for our customer in

  1   2   >