[flexcoders] Re: geting info of a user who has loged in

2009-01-06 Thread johndoematrix
yes i have implemented the login functionality and its working. nw i am faced with the issue of showing the details of the logged in user. any help?

Re: [flexcoders] Re: geting info of a user who has loged in

2009-01-06 Thread Haykel BEN JEMIA
If you implemented le login functionality, then you should have some mechanism (httpservice, rpc ...) to exchange data with the server to send login info and get a response back. Just use the same mechanisms to send a request and get the data back. Haykel Ben Jemia Allmas Web RIA Development

RE: [flexcoders] Dragging to Super Tab Navigator

2009-01-06 Thread Yves Riel
It's not clear where you want the dragged image to appear. Is it on the tab itself or on the container contained in the SuperTabNavigator? If it's on the container, then just implement drag and drop operations for your container and that should do the trick. If you are looking to drag the image on

[flexcoders] DataGrids, itemRenderers and dataChange events

2009-01-06 Thread Guy Morton
Hello I hope someone here will be good enough to help me. I have a DataGrid, and a custom itemRenderer that shows an image depending on the value of the data in that cell. The trouble is that I am updating the value of the data in that cell when I do an update to one of the other cells in

Re: [flexcoders] Re: Call external App from AIR

2009-01-06 Thread Sam Lai
Thank Sam! I build an client AIR app. I find that all the way which I have tried is can't execute. I have received another guide about command proxy so I will search about it. The command proxy allows you to send calls to external code to do things you can't do in AIR via sockets. Effectively,

[flexcoders] Spurious truncateToFit behavior when scaling TabNavigator

2009-01-06 Thread x77686d
On one of our Flex applications we use scaleX and scaleY at the application level to zoom in/out on the whole thing. That works pretty well except for one problem: there's a TabNavigator and we see spurious truncateToFit behavior on the tab labels, turning Some Tab into Some T..., for example. I

Re: [flexcoders] Display HTML Page Code Help

2009-01-06 Thread Sam Lai
AIR or browser? On 1/6/09, horatio_rodriguez h.rodrig...@o2.co.uk wrote: Hi There I have just today started to use Flex Builder on the mac platform, i have looked over a couple of the RIA's and its pretty impressive to start with. I have a small question about coding, I have created a new

[flexcoders] Re: Generating Random Unique ID

2009-01-06 Thread oneworld95
You can also try the GUID generator tool for Flex: http://code.google.com/p/flex-ad-by/ -Alex --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Wow, didn't know about that.still learning the whole framework...

Re: [flexcoders] RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-06 Thread freak182
Hello, Im getting same error by upgrading my flex sdk: here is my scenario: 1. im using flex-compiler-mojo to build flex 2. i upgrade from 3.0.0.477 to 3.2.0.3958 3. it has no when compiling but when i start my app, it gives me error: VerifyError: Error #1079: Native methods are not allowed in

[flexcoders] Which Unit Testing Framework to use?

2009-01-06 Thread b_alen
After a brief search on flex unit testing I found that FlexUnit is supposed to be the leader of the pack. Also, there is FlexMonkey that looks to be promising and it even uses FlexUnit. http://code.google.com/p/flexmonkey/ Are there any other frameworks worth considering and what is your

[flexcoders] Re: Which Unit Testing Framework to use?

2009-01-06 Thread valdhor
I haven't looked into it (Just heard about it on The Flex Show) but Fluint looks like it may be good: http://code.google.com/p/fluint/ --- In flexcoders@yahoogroups.com, b_alen alen.ba...@... wrote: After a brief search on flex unit testing I found that FlexUnit is supposed to be the leader

[flexcoders] Re: Cairngorm v/s others

2009-01-06 Thread gmbroth
--- In flexcoders@yahoogroups.com, Errol Thompson kiw...@... wrote: Cairngorm provides the services locator but that needs to be mocked out if you want to run tests that don't land up calling the remote server. I have achieved this but it suggests to me that there are more flexible solutions.

[flexcoders] Can only seem to connect to flash remoting service in air running charles

2009-01-06 Thread djhatrick
If I run Charles it works, but when i stop Charles i get this error. Anybody seen this one? Thanks, Patrick TypeError: Error #1006: value is not a function. at mx.rpc::Responder/fault()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responder.as:53] at

re: [flexcoders] Which Unit Testing Framework to use?

2009-01-06 Thread Wally Kolcz
Been looking at FlexUnit, FUnit, and ASUnit. Like FlexUnit best so far... From: b_alen alen.ba...@gmail.com Sent: Tuesday, January 06, 2009 5:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Which Unit Testing Framework to use? After a brief

[flexcoders] Re: Can only seem to connect to flash remoting service in air running charles

2009-01-06 Thread valdhor
So, using Charles it works normally and goes to the function with the resultEvent. Without Charles, it looks like it is getting a faultEvent and your fault handler function setting is incorrect. I think you need to fix the faultEvent handler before moving on to why it is getting a faultEvent.

[flexcoders] Re: FLEX soap client and php soap client

2009-01-06 Thread valdhor
Can you post a link to the wsdl and I can see if I can get a Flex client working. --- In flexcoders@yahoogroups.com, ocslhk martin.kab...@... wrote: Hello, This is my first post here and the first time i use yahoo groups. I have searched for something similar on the boards but haven't

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Jason B
No using httpservice throws an error but your example with an array is working, how can i get this to work with httpservice? --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: So you have everything working as you wish now? Tracy

[flexcoders] Working with nested Buttons

2009-01-06 Thread Todd
Hello, I have a custom Button control that uses extensive skinning (done in Flash, and linked through the Button's skin-style) to change the skins for mouse over, down,etc. The custom Button can contain multiple child objects, like other LinkButtons. I can't get the sub-button to trigger,

[flexcoders] Re: Working with nested Buttons

2009-01-06 Thread Todd
I solved my problem. On the nested-child button, all I had to do was set buttonMode=true and useHandCursor=true. It wasn't enough to just have the LinkButton and assume that it would behave as a button. All works perfectly now with my complex button skin. --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Session tracking in Flex

2009-01-06 Thread Tom Chiverton
On Tuesday 30 Dec 2008, Matt Weaver wrote: Experimentally, I've seen that if you put the session id into a cookie it will be sent along with any server calls you make from Flex. Except file upload from FireFox. There's a bug in the issue tracker for it. -- Tom Chiverton Helping to

[flexcoders] Re: Font for tab navigator heading not working

2009-01-06 Thread Tim Hoff
Wow, this only took 2 days to post. See Doug's post for the solution. -TH [Moderator note: Things run slower over Xmas when we're all on holiday ;-)] --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: The only other thing that I can suggest that you try is: .myTabs {

Re: [flexcoders] AIR code signing certificate

2009-01-06 Thread Tom Chiverton
On Saturday 03 Jan 2009, arieljake wrote: I am trying to purchase an AIR code signing certificate from Chosen Security. ... They are refusing to issue me a Use someone else ? -- Tom Chiverton Helping to appropriately improve information

Re: [flexcoders] Re: FLEX soap client and php soap client

2009-01-06 Thread Nate Beck
Yea, if you're WSDL is public facing, I'll see if I can create a Flex Client against it as well. On a similar note... Have you looked into AMFPHP (http://www.amfphp.org/)? SOAP is a great standard but, like everything, there are issues with it. If you are only using your SOAP webservice to talk

RE: [flexcoders] AIR code signing certificate

2009-01-06 Thread Jim Hayes
I think Ryan Stewart(?) posted just the other day that they are the first to offer a personal cert, so It's my impression that they are currently the only one to do so. -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom Chiverton

[flexcoders] Re: FLEX soap client and php soap client

2009-01-06 Thread valdhor
I would have to agree. AMF is much easier to get up and running and (I feel) is more object oriented. I would be inclined to use WebOrb or ZendAMF (Part of the Zend Framework): http://www.themidnightcoders.com/products/weborb-for-php http://framework.zend.com/download/amf --- In

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread oneworld95
What does the error say? -Alex --- In flexcoders@yahoogroups.com, Jason B nos...@... wrote: No using httpservice throws an error but your example with an array is working, how can i get this to work with httpservice? --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote:

Re: [flexcoders] Cairngorm v/s others

2009-01-06 Thread Marco Catunda
I would love to know how pronounce it correctly too. This name is a tongue twister for me. :) :) On Sat, Jan 3, 2009 at 10:15 PM, Hyder hyder_...@hotmail.com wrote: Btw, I've always wondered, how does one pronounce Cairngorm... Kane Gaum ?

Re: [flexcoders] Tree is not correctly updated when dragging and dropping item twice when using XML data provider

2009-01-06 Thread Manish Jethani
On Tue, Dec 30, 2008 at 7:52 PM, Sergey Kovalyov skovalyov.flexcod...@gmail.com wrote: [comments inline] Steps to reproduce: Create an application with the Tree component instance and XMLListCollection dataProvider binded to it that contains 5 items: private var itemsXML : XML = items

[flexcoders] Re: Cairngorm v/s others

2009-01-06 Thread oneworld95
You can hear the correct pronunciation here (look for the Hear button): http://dictionary.reference.com/browse/cairngorm -Alex --- In flexcoders@yahoogroups.com, Marco Catunda marco.catu...@... wrote: I would love to know how pronounce it correctly too. This name is a tongue twister for me.

Re: [flexcoders] Tree is not correctly updated when dragging and dropping item twice when using XML data provider

2009-01-06 Thread Manish Jethani
On Tue, Jan 6, 2009 at 10:27 PM, Manish Jethani manish.jeth...@gmail.com wrote: function doWorkaround() { var e = new CollectionEvent(collectionChange); e.kind = update; Hey, I meant: e.kind = reset; That'll refresh everything. myXMLListCollection.dispatchEvent(e); } Manish

RE: [flexcoders] Slow datagrid updates

2009-01-06 Thread freak182
Hello Tracy, Im experiencing same problem too, added that in my case the data in first row was repeated in next row when i insert data on database and load all data in datagrid.(although the list is 10) I use remoteobject to save and get all the list of data. When i save the data and get

RE: [flexcoders] Slow datagrid updates

2009-01-06 Thread Tracy Spratt
Please do not hijack threads for a different question. This is not the same problem, start a new thread.. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of freak182 Sent: Tuesday, January 06, 2009 12:07 PM To:

RE: [flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Tracy Spratt
Then answer the questions in my previous post. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Tuesday, January 06, 2009 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid

RE: [flexcoders] DataGrids, itemRenderers and dataChange events

2009-01-06 Thread Tracy Spratt
Flex uses events to cause the UI to update in response to changes in the underlying data. If you use the correct API to update the data, then Flex will dispatch the necessary events. Common API methods include setItemAt(), addItem(), ... using the API is the best practice. If you manually

Re: [flexcoders] Spurious truncateToFit behavior when scaling TabNavigator

2009-01-06 Thread Manish Jethani
On Tue, Jan 6, 2009 at 3:30 PM, x77686d wh...@mitchellsoftwareengineering.com wrote: On one of our Flex applications we use scaleX and scaleY at the application level to zoom in/out on the whole thing. That works pretty well except for one problem: there's a TabNavigator and we see spurious

Re: [flexcoders] Generating Random key

2009-01-06 Thread Manish Jethani
On Tue, Jan 6, 2009 at 7:42 AM, Josh McDonald dzn...@gmail.com wrote: A quick take on it: Trying to improve on some already neat code... function randomLetter() : String { const noVowels : String = BCDFGHJKLMNPQRSTVWXYZ;

[flexcoders] scriptable flex testing (for continuous integration)

2009-01-06 Thread Maciek Sakrejda
Earlier today, a fellow flexcoder asked about flex unit testing frameworks. After looking at the suggestions, I realized that I need similar advice, but focused on tests that can be run automatically, (as opposed to running interactively). It seems fluint is pretty slick, but the ant-based test

[flexcoders] Re: Display HTML Page Code Help

2009-01-06 Thread horatio_rodriguez
I am using Flex Builder For Mac, Trying to release for browser. Thanks --- In flexcoders@yahoogroups.com, Sam Lai samuel@... wrote: AIR or browser? On 1/6/09, horatio_rodriguez h.rodrig...@... wrote: Hi There I have just today started to use Flex Builder on the mac platform, i

Re: [flexcoders] components in modules

2009-01-06 Thread Manish Jethani
On Tue, Jan 6, 2009 at 2:24 AM, rockorgames eguilhe...@gmail.com wrote: i have a zip search component.. but only a few modules uses it.. should i copy the code from the zip component to those modules ? the problem is that i would have to change the code in all modules if i needed to change

Re: [flexcoders] File Size is not same when compiled through mxmlc and flex builder

2009-01-06 Thread Manish Jethani
On Tue, Jan 6, 2009 at 1:01 AM, ilikeflex ilikef...@yahoo.com wrote: I think that the file Size is not same when compiled through mxmlc and flex builder. [snip] The file size is not same in the above two methods.The ant script file compiles with more file size. I know flex builder also uses

[flexcoders] Re: WANTED: Online help integration, authoring, best practices (for Flex or Ajax)

2009-01-06 Thread jim.abbott45
Tracy: thanks for the information. --Jim --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: One would hope that the company that owns Flash, Flex and RoboHelp is working on some integration. I have not seen anything myself yet. Here is what I did: * I use an

[flexcoders] Properly remove children

2009-01-06 Thread markgoldin_2000
How do I remove children from a container in order to completely destroy them? Will removeAllChildren do the job? Thanks

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Jason B
var oSelectedItem:Object = mccert_refund_grid.selectedItem; oSelectedItem.CERTPRESENT = NOT PRESENT; var iIndex:int = mccert_refund_grid.selectedIndex; search_cert_refund_dataprovider.lastResult.DATARESULTS.setItemAt(oSelectedItem,iIndex); mx:HTTPService id=search_cert_refund_dataprovider

[flexcoders] useHandCursor doesn't work when using custom cursors

2009-01-06 Thread Aaron Miller
Hello, I am using custom cursors with CursorManager, but I would like the hand cursor to override the default (custom) for some controls similar to the way editable text overrides the default cursor with the text indicator. Normally I would just set buttonMode=true useHandCursor=true but it

RE: [flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Tracy Spratt
1010? What the heck is that? Answer the other question too. Look for the ? symbols. They indicate a question. Jason, I am losing patience here. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent:

Re: [flexcoders] useHandCursor doesn't work when using custom cursors

2009-01-06 Thread Manish Jethani
On Wed, Jan 7, 2009 at 1:47 AM, Aaron Miller amil...@openbaseinteractive.com wrote: I am using custom cursors with CursorManager, but I would like the hand cursor to override the default (custom) for some controls similar to the way editable text overrides the default cursor with the text

[flexcoders] CartesianDataCanvas Drawing a Rectagle from Edge to Edge

2009-01-06 Thread pratikshah83
Hey guys I have been using DataDrawingCanvas, which is an awesome component, but unfortunatly no longer works in the constraints with Flex 3. For which i've been trying to port the code over to use the new CartesianDataCanvas which is the replacement (or update) to it. With DataDrawingCanvas,

Re: [flexcoders] Properly remove children

2009-01-06 Thread Manish Jethani
On Wed, Jan 7, 2009 at 12:22 AM, markgoldin_2000 markgoldin_2...@yahoo.com wrote: How do I remove children from a container in order to completely destroy them? Will removeAllChildren do the job? To remove an object visually, you'll have to remove it from the display list by calling removeChild

Re: [flexcoders] DataGrids, itemRenderers and dataChange events

2009-01-06 Thread Guy Morton
Thanks Tracy! Yes, I was expecting it to dispatch an event because my data is an ArrayCollection, however now I know that modifying my underlying Objects' values via properties doesn't trigger the necessary change events. :-) Manually calling itemUpdated on the Object that I've changed

[flexcoders] LineSeries dataFunction to return Array instead of a String

2009-01-06 Thread Chad Callahan
The specifications for the LineSeries dataFunction states that the function is to return an Object. From what I gather, it assumes that the Object is one single data point. However, my data is grouped a little differently. I would like to be able to graph my data to look like this (this is not

[flexcoders] Validating Checkboxes in an item renderer

2009-01-06 Thread stldvd
Hi All, I've got a checkbox in an item renderer. I need to know that at least one checkbox has been selected in order for the data to be considered valid and the 'save' function to go through. But I'm not sure how to iterate through the checkboxes, since in the code there's only one:

[flexcoders] Re: Properly remove children

2009-01-06 Thread markgoldin_2000
I dont really have a name (myButton). Objects are added to a container at run-time. --- In flexcoders@yahoogroups.com, Manish Jethani manish.jeth...@... wrote: On Wed, Jan 7, 2009 at 12:22 AM, markgoldin_2000 markgoldin_2...@... wrote: How do I remove children from a container in order to

[flexcoders] Anyone written a ComboBox that can take an AdvancedDataGrid as a dropdown?

2009-01-06 Thread Pan Troglodytes
I find myself in the position of really needing a ComboBox that can take an AdvancedDataGrid descendant in the dropdownFactory. Unfortunately, ComboBox is pretty hardcoded to use ListBase and AdvancedListBase does not inherit from it. Recreating a DataGrid version of my existing ADG descendant

Re: [flexcoders] Which Unit Testing Framework to use?

2009-01-06 Thread Josh McDonald
I can report that I'm happy with FlexUnit as well. I *really* don't like the syntax for async stuff, but wrapping nice syntax around bad is what we do for a living, so when I need it I'll write it (and release it, of course!) -Josh On Wed, Jan 7, 2009 at 12:02 AM, Wally Kolcz

[flexcoders] Re: BlazeDS - Best practice for determining if server session is invalid.

2009-01-06 Thread rydellfinn
Seth - Thanks for the detail - I just noticed your answer on this one over break. Setting login-after-disconnect to true does sound appealing. I'm was curious, where are the credentials stored to allow the reconnection? In the server session or on the client? Also - I did successfully get

Re: [flexcoders] Generating Random key

2009-01-06 Thread Josh McDonald
That's better (also cleaner and faster). I just don't trust IEEE floats :) -Josh On Wed, Jan 7, 2009 at 4:05 AM, Manish Jethani manish.jeth...@gmail.comwrote: On Tue, Jan 6, 2009 at 7:42 AM, Josh McDonald dzn...@gmail.com wrote: A quick take on it: Trying to improve on some already neat

Re: [flexcoders] Re: Properly remove children

2009-01-06 Thread Manish Jethani
On Wed, Jan 7, 2009 at 3:39 AM, markgoldin_2000 markgoldin_2...@yahoo.com wrote: I dont really have a name (myButton). Objects are added to a container at run-time. while (container.numChildren 1) container.removeChildAt(0); Or you can use removeAllChildren Manish

Re: [flexcoders] Re: Working with nested Buttons

2009-01-06 Thread Josh McDonald
I *have* to know - what kind of evil requires a button that contains other buttons? ;-) -Josh On Wed, Jan 7, 2009 at 1:37 AM, Todd tpreka...@gmail.com wrote: I solved my problem. On the nested-child button, all I had to do was set buttonMode=true and useHandCursor=true. It wasn't enough to

[flexcoders] Re: Properly remove children

2009-01-06 Thread markgoldin_2000
removeAllChildren Yes, that's what I use but I dont see objects being completely destroyed. --- In flexcoders@yahoogroups.com, Manish Jethani manish.jeth...@... wrote: On Wed, Jan 7, 2009 at 3:39 AM, markgoldin_2000 markgoldin_2...@... wrote: I dont really have a name (myButton). Objects

Re: [flexcoders] Re: Properly remove children

2009-01-06 Thread Manish Jethani
On Wed, Jan 7, 2009 at 4:23 AM, markgoldin_2000 markgoldin_2...@yahoo.com wrote: removeAllChildren Yes, that's what I use but I dont see objects being completely destroyed. Define destroyed. Surely you see them go away? Manish

[flexcoders] Re: Properly remove children

2009-01-06 Thread markgoldin_2000
Ok, here what I am getting. I have a container that I am adding different forms to at the run time. These forms are all based on the same class though. So, before I add a new form I am removing current form using: container.removeAllChildren(); each form when created is adding a custom event

[flexcoders] Datagrid duplicate row

2009-01-06 Thread freak182
Hello Tracy, Im experiencing same problem too, added that in my case the data in first row was repeated in next row when i insert data on database and load all data in datagrid.(although the list is 10) I use remoteobject to save and get all the list of data. When i save the data and get

RE: [flexcoders] Validating Checkboxes in an item renderer

2009-01-06 Thread Alex Harui
You could use a derivative of the example on my blog and then just test if selectedIndex != -1 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stldvd Sent: Tuesday, January 06, 2009 1:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Validating

RE: [flexcoders] RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-06 Thread Alex Harui
Maybe you're loading the wrong version of the RSL? From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of freak182 Sent: Tuesday, January 06, 2009 5:45 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] RSL VerifyError: Error #1079: Native methods are not

Re: [flexcoders] Re: Properly remove children

2009-01-06 Thread Sam Lai
I think you need to use weak references when adding event listeners. Set the last parameter of addEventListener to true when adding event listeners. Alternately, you can remove event listeners when the forms are removed using the removeEventListener function. The flex profiler is useful here too

Re: [flexcoders] Re: Properly remove children

2009-01-06 Thread Paul Andrews
I think Sam is right. The garbage collector won't collect objects until there are no references to them. If you don't use weak references you'll have to remove every listener first before the object can be garbage collected. Removing an object from a container is only part of the story.

[flexcoders] Re: Using ActiveXObject with Adobe AIR and Flex

2009-01-06 Thread pratikshah83
Any help would be appreciated. If any one could throw some light. Thanks Pratik --- In flexcoders@yahoogroups.com, pratikshah83 pratiksha...@... wrote: Hi Guys, I am trying to execute a application on the desktop using ActiveXObject... but I am unable to get it working with Adobe AIR +

[flexcoders] Re: Validating Checkboxes in an item renderer

2009-01-06 Thread stldvd
Hi Alex, I've been studying your code at http://blog.flexexamples.com/2008/01/27/using-a-checkbox-control-as-a-list-item-renderer-in-flex/ You use the filter method on the underlying array (source) for the arrayCollection datasource of the list. The signature of your function is: private

[flexcoders] Re: Validating Checkboxes in an item renderer

2009-01-06 Thread stldvd
I also tried adding this to the arrColl_collectionChange function: if(list.selectedIndex == -1) { Alert.show(No items are selected!); } But the only time it fires is when the app first loads, presumably because the list

Re: [flexcoders] flex builder could not publish the project source: null

2009-01-06 Thread Joseph Balderson
This just happened to me on a Flex project in FB 3.0.1. What cleared it up was I had downloaded a linked folder from a repository which was broken because I didn't have the same reference as the person who created it. Once I deleted the linked folder it exported the source just fine.

Re: [flexcoders] Re: Display HTML Page Code Help

2009-01-06 Thread Sam Lai
http://drumbeatinsight.com/htmlcomponent is probably your best option. Although there are some issues with that approach apparently - http://www.deitte.com/archives/2008/07/dont_use_iframe.htm I've been looking at something similar, and decided to break up my app into HTML/Flex components

[flexcoders] How to Push database update/insert into Datagrid using LCDS.

2009-01-06 Thread bonny_us
Hi All, Anyone have idea, how can i push my MYSql database update/insert into Datagrid using LCDS. if anyone have any example then please let me know. I will appreciate your help. Thanks, Bonny

[flexcoders] Re: Properly remove children

2009-01-06 Thread Sam Lai
You should clean up your event listeners when you remove the children. As long as a reference exists on those children they will never be garbage-collected. Is there an easy, standard way to do this? I've tried using the removedFromStage event, but that event gets fired when an AIR/Flex app

[flexcoders] Re: Call external App from AIR

2009-01-06 Thread lehaianh1986
I want to build an App which have function : open MS word document, work with it, save it to plain text, then upload text file to server. So I choice AIR because I see it have same functions. The command proxy allows you to send calls to external code to do things you can't do in AIR via

Re: [flexcoders] How to Push database update/insert into Datagrid using LCDS.

2009-01-06 Thread Paul Kukiel
Here is an example using LiveCycle with Coldfusion: http:// sherifabdou.com/2008/07/understanding-flex-data-management-by-using- coldfusion-livecycle/ Paul. On 06/01/2009, at 9:01 PM, bonny_us wrote: Hi All, Anyone have idea, how can i push my MYSql database update/insert into Datagrid

Re: [flexcoders] Re: Call external App from AIR

2009-01-06 Thread Sam Lai
So can command proxy execute something I talk above? Yes it can, because it has full access to the desktop (within user permissions). I'm not sure if Java has the ability to use ActiveX objects, but I believe it does. There is a .NET command proxy concept out there too, but it isn't as

[flexcoders] security sandbox violation in standalone player but not in browser

2009-01-06 Thread Maciek Sakrejda
Our application has been working fine in various browsers. I'm trying to get it to work in the standalone player (version 9 debug and 10 debug--same behavior--for Linux) for automated testing, but I'm hitting some security sandbox violations: *** Security Sandbox Violation *** Connection to

[flexcoders] Re: RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-06 Thread Darrell Loverin
This error is caused by trying to load playerglobal.swc as an RSL. playerglobal.swc must always be linked as external. -Darrell --- In flexcoders@yahoogroups.com, freak182 eman.noll...@... wrote: Hello, Im getting same error by upgrading my flex sdk: here is my scenario: 1. im using

[flexcoders] How to Push database update/insert into Datagrid using LCDS in Java and MySQL

2009-01-06 Thread bonny_us
Hi All, Anyone have idea, how can i push my MYSql database update/insert into Datagrid using LCDS in Java. if anyone have any example then please let me know. I will appreciate your help. Thanks, Bonny

[flexcoders] Re: LineSeries dataFunction to return Array instead of a String

2009-01-06 Thread Amy
--- In flexcoders@yahoogroups.com, Chad Callahan chad.calla...@... wrote: The specifications for the LineSeries dataFunction states that the function is to return an Object. From what I gather, it assumes that the Object is one single data point. However, my data is grouped a little

Re: [flexcoders] RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-06 Thread freak182
Hello, here is the trace when i compile my flex app: compiler.es=false compiler.external-library-path D:\shared_maven_repo\repository\com\adobe\flex\framework\playerglobal\9-3.2. .3958\playerglobal-9-3.2.0.3958.swc compiler.fonts.local-fonts-snapshot

Re: [flexcoders] Which Unit Testing Framework to use?

2009-01-06 Thread Alen Balja
Interestingly, nobody ever mentioned FlexMonkey on this forum, but it seems like good stuff. Thanks for the responses and advice. A. On Wed, Jan 7, 2009 at 3:50 AM, Josh McDonald dzn...@gmail.com wrote: I can report that I'm happy with FlexUnit as well. I *really* don't like the syntax for

[flexcoders] Animated border around thumbnails - similar to MTV header

2009-01-06 Thread asli_binal
Hi everyone, I'm looking for advice on how to easily accomplish the following task. I already have a Flex app that displays four thumbnail images in a vbox on the right side, and when I click on one, that image is displayed in a larger format within the same app (left of the vbox). What I'd like

[flexcoders] trying to put a Degrafa BezierSpline on a Papervision3D Sphere...

2009-01-06 Thread addlistener
Hi all, I'm trying to put a Degrafa BezierSpline on a Papervision3D Sphere... Any idea? I've made a Canvas with three others, one for a map, a red one and a empty to receive the BezierSpline SolidFill id=fill color blue /color /SolidFill BezierSpline

[flexcoders] Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-06 Thread john.casey64
I'm working on an application where I build a tree (in actionscript buildtree()) where I add new leafs from data that is retieve from a remote call. Since the buildtree() function deals with the view - I have this coded in the view mxml. The tree is bound to a XMLListCollection which is updated

Re: [flexcoders] Animated border around thumbnails - similar to MTV header

2009-01-06 Thread Josh McDonald
I'd make the border a Degrafa surface (or just a mx:Box with a border). Add a moveEffect and a resizeEffect, put it in the same container as the thumbnails, but last in the list so it'll be on top. If they're in a hbox or something like that and you don't want to mess up the layout of the

Re: [flexcoders] trying to put a Degrafa BezierSpline on a Papervision3D Sphere...

2009-01-06 Thread Josh McDonald
You might need to use a degrafa surface rather than rendering into another component. If that's not going to do it, I imagine you'll have to have degrafa render into a bitmapData (or something along those lines) and add an mx:image with that data set as the source. Also there's a Degrafa list

Re: [flexcoders] Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-06 Thread Josh McDonald
Bindings work with any objects, so long as the fields (or the whole class) are marked with [Bindable] -Josh On Wed, Jan 7, 2009 at 11:44 AM, john.casey64 john.case...@yahoo.comwrote: I'm working on an application where I build a tree (in actionscript buildtree()) where I add new leafs from

RE: [flexcoders] security sandbox violation in standalone player but not in browser

2009-01-06 Thread Alex Harui
Might be a bug or subtle intended behavior. Read up on the security doc to see if it talks about that case. For sure, in local sandboxes, you can't back out to higher folders using ..\ so maybe that check runs in Standalone player. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Validating Checkboxes in an item renderer

2009-01-06 Thread Alex Harui
I wish I could claim credit, but I'm not the FlexExamples guy. I was thinking of my post here: http://blogs.adobe.com/aharui/2008/02/checkbox_selection_in_datagrid.html From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stldvd Sent: Tuesday, January 06, 2009

Re: [flexcoders] Re: Using ActiveXObject with Adobe AIR and Flex

2009-01-06 Thread Johannes Nel
I suspect this cannot work, mostly since the browser in air would have to be cross platform and OLE objects are windows based. you can reverse this of course and embed the whole flex application into a win app as an ActiveX control and then use browser active X control as well. not nearly as nice

[flexcoders] Updates Issue in Mozilla ....any thoughts to share???

2009-01-06 Thread akila_ksri
The application we are developing needs the controls like labels, data grid etc., to be updated every second. This works fine without any issue in IE 7, but the updates fail to happen in Mozilla most of the time. Clearing cache through html does not work!!! We have to get it working in