[flexcoders] Re: Script Time out Issue

2009-04-14 Thread Kuldeep Atil
HI Tracy, Thanks for the reply, As I said, I am using modules and I guess the latter swf overrides the script execution time. http://bugs.adobe.com/jira/browse/FP-243 I tried it manually and it allows for 15 secs only. I am not sure how to overcome the issue. Please let me know if u have

[flexcoders] whole xml response is diaplying as tooltip when i place cursor on data cell

2009-04-14 Thread Ramabhadra Reddy
mx:HTTPService id=getXMLResponse method=GET showBusyCursor=true useProxy=false resultFormat=e4x concurrency=last result=handleResponse(event) requestTimeout=30 fault=parentApplication.showGenericError() / resultFormat=e4x is causing the issue. whole

[flexcoders] how do I install eclipse plugin??

2009-04-14 Thread hworke
Hello all. So far I was using FB but now I do need the eclipse and need to plug in the eclipse plugin that I downloaded. The file that I downloaded is FB3_WWEJ_Plugin. But I could not find any clear instruction to follow and install. Can some one please guide to how to

[flexcoders] Advanced datagrid vs Textarea

2009-04-14 Thread senthilkumarirtt
hi all,i want to copy the entire selected row's data from datagrid to textarea.

[flexcoders] InteractiveObject Problem

2009-04-14 Thread lehaianh1986
I have an event for my right click mouse on AdvancedDataGrid. I want to collect row item data so my code is public function menuItemSelect(evt:ContextMenuEvent):void { var searchString:String; var inObj:InteractiveObject; inObj = evt.mouseTarget; if (inObj.hasOwnProperty(data)) {

[flexcoders] Re: Flash speed test - please participate - only 1 click required !

2009-04-14 Thread aphexyuri
I'll second that...afterall, we're not machines ;) You have to work on your delivery and presentation. --- In flexcoders@yahoogroups.com, Sam Lai samuel@... wrote: Tom, Could you make the stats available after you complete the test, and also do something on the page so we know the

Re: [flexcoders] problem with mx:horizontalAxisRenderers

2009-04-14 Thread Sam Lai
Well if there's not enough space, there's not much you can do. How do you want to show it? 2009/4/14 Vikram Singh vikisingh...@yahoo.in: Hello Friends, there are many items on X-Axis so can't see clearly name of each and every item. I have tried to implement mx:horizontalAxisRenderers to

[flexcoders] Re: Soap Response cannot be decoded. -- Worked on Friday!

2009-04-14 Thread valdhor
As a guess, I would say that the XML has changed and Flex is having problems decoding the XML. If at all possible, compare the XML that worked to the new XML to see what changed. Also, there may be an invalid character that Flex doesn't like but that the browser will display OK. --- In

[flexcoders] Re: script running longer than....

2009-04-14 Thread valdhor
I don't know about the 10,000 seconds rule. Where did you see that? Anyway, if there is such a thing, use a timer for the 10 minute data reload and a META refresh tag to reload your application every 10,000 seconds. --- In flexcoders@yahoogroups.com, flexaustin flexaus...@... wrote: I have

[flexcoders] Re: anyone know of a good (free) flex component for playing video/swfs?

2009-04-14 Thread valdhor
I have used FXVideo in the past - http://www.fxcomponents.com/flex-video-player/ HTH Steve --- In flexcoders@yahoogroups.com, gmoniey22 gmonie...@... wrote: I'm looking for a simply (and reliable) flex component which can play a flv or a swf and has the basic controls

[flexcoders] Re: urgent

2009-04-14 Thread Nagendra Raju
HI if u dont want alert when u deselect the check box then u need to write one if condection. if(checkbox.selected). correct me if i am wrong. shiva --- In flexcoders@yahoogroups.com, Sri Vidya sri_vidy...@... wrote: hi, ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Module Loading and Unloading

2009-04-14 Thread murali dharan
Thanks On Mon, Apr 13, 2009 at 11:11 PM, claudiu ursica the_bran...@yahoo.comwrote: Make sure you do not use embedded css into modules and you perform proper cleaning before unloading ... There is a good document from adobe modular.pdf google for it it shoul give you some hints ... C

[flexcoders] Re: how do I install eclipse plugin??

2009-04-14 Thread valdhor
Have you read and followed the instructions? http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_fb.html#installation If you have any trouble see this post... http://www.tekool.net/blog/2008/08/20/flex-builder-301-plug-in-now-works-with-ganymede-eclipse-34/ Google is your

[flexcoders] Re: Advanced datagrid vs Textarea

2009-04-14 Thread valdhor
That's nice. --- In flexcoders@yahoogroups.com, senthilkumarirtt senthilkumari...@... wrote: hi all,i want to copy the entire selected row's data from datagrid to textarea.

[flexcoders] Using Vector Collection as a Datasource??

2009-04-14 Thread cox.blair
Hi guys, We're performing some labor intensive calculations with arrays and it is really slow. I've read the threads here describing the array collections being slow, so we decided to switch to using a vector collection. All great, works faster, however it doesn't behave as expected and we

[flexcoders] Socket Timeout on Profiler....help?

2009-04-14 Thread Adrian Williams
Hi all, I've used the FB Profiler with success much in the past, though admittedly, I've had to shut off my windows firewall to avoid socket problems. However, I am having trouble getting it to run again. I had to update my flash player and SDK version to take advantage of a couple

[flexcoders] Re: Can Flex Access Database on different web server than application web server

2009-04-14 Thread raja_s_patil
thanks Tracy Spratt Flex does not access any database directly (except maybe SQLServer, via native http endpoints) You must use a server platform for database integration. .Net, php, ColdFusion, java, etc are popular server tier platforms. yes I am aware of that. We plan to use BlazeDS

[flexcoders] Drag and drop issues

2009-04-14 Thread Charles Galpin
Hi All I have attached a simple example of the kind of things I want to do with dragging and dropping, namely dragging an object across different components in my app. In this example I have a list and two canvases and you can drag from the list to the canvases and between the canvases

[flexcoders] How can I create an event that calls a function?

2009-04-14 Thread sailorsea21
Hi everyone, How can I create an event that calls a function once an ArrayCollection is filled? This is what I'm using at the moment but I would like to avoid setTimeout: public function checkArrayCollection():void { if(myArrayCollection) { } else {

RE: [flexcoders] How can I create an event that calls a function?

2009-04-14 Thread Gregor Kiddie
The array collection dispatches a CollectionEvent when the Array Collection is filled in... http://livedocs.adobe.com/flex/3/langref/mx/events/CollectionEvent.html Just listen for that event when you create the ArrayCollection and have the function you wish to call as the handler. Gk.

[flexcoders] Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread fumeng5
Hi, I'm trying to access a DataGridColumn when a user clicks on a DataGrid row. The problem is that I'm not trying to access the column that was clicked on I want to select a checkbox that is always in the 2nd column whether a user clicks on the 2nd column or not. I'm having trouble

Re: [flexcoders] How can I create an event that calls a function?

2009-04-14 Thread Paresh M More
if ( myArrayCollection) callLater(checkArrayCollection); This might also help u out, callLater is a inbuilt function. -- Regards, Paresh M. More Senior Software Engineer Nashik/Pune, Maharashtra, India. Email - pareshm...@gmail.com On Tue, Apr 14, 2009 at 7:25 PM, Gregor Kiddie

[flexcoders] Re: How to put a well-formatted SQL statement in a string?

2009-04-14 Thread Amy
--- In flexcoders@yahoogroups.com, Mic chigwel...@... wrote: Hi Tracy, I bought the $19 FlexCubed FlexSQL, which uses a SWC and a server-side asp which I place in wwwroot/website. Talked to them and they do not support procs deadline means having to embed while look for proc

RE: [flexcoders] whole xml response is diaplying as tooltip when i place cursor on data cell

2009-04-14 Thread Tracy Spratt
Specify a dataTipField, if your data is a first-level child of the item, or a use a dataTipFunction it it is nested more deeply. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Advanced datagrid vs Textarea

2009-04-14 Thread Tracy Spratt
One is multiple properties, one is a string, so you will need to loop over the selectedItem properties and concatenate the string you want. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

[flexcoders] DateField question

2009-04-14 Thread markgoldin_2000
When I click on calendar icon a date text gets selected and shifted to the right. How can I keep it shown without any changes? Thanks

RE: [flexcoders] Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread Tracy Spratt
You need to study up on item renderers a bit. What you are trying to do will not work. The check box state must be driven by a value in the dataProvider item. You should not attempt to access the check box directly via code. Find an example of a checkbox renderer, there are many, I have one

[flexcoders] Re: Advanced datagrid vs Textarea

2009-04-14 Thread markgoldin_2000
Or, you could have prepared such a string on the server to begin with and deliver it to the front-end as a part of your datagrid data and ready to be copied to a textarea. --- In flexcoders@yahoogroups.com, senthilkumarirtt senthilkumari...@... wrote: hi all,i want to copy the entire

[flexcoders] Validation in Model (rather than in View)

2009-04-14 Thread Borek
Flex supports validation in the View layer quite well but the problem is that the validation rules should not be there at all. They belong to Model but I'm not sure how to implement that in Flex. I would like to be able to do something like this: [Required] [String(minLength=5)] public var

[flexcoders] flex.portal.GenericFlexPortlet - app_uri on Web Logic

2009-04-14 Thread Anthony DeBonis
Has anyone got this to work and if so what did you put into app_uri? The GenericFlexPortlet class is not well documented but it sort of works when you need to deploy a Flex app inside a portal. I can get the application to come up inside the portal running on WebLogic Portal ONLY if I put the

[flexcoders] Re: Memory consumption by the browser

2009-04-14 Thread flexaustin
I am having the same issue and its only on a MAC (FF, Safari). If I run the flex swf in parallels I have no memory issues. I submitted a bug # SDK-20625 --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: One workaround would be to implement the panel in actionscript using

[flexcoders] Extending Flex Webservice class

2009-04-14 Thread variableop
All, I would like to extend the Flex Webservice class to add a header to the call if custom properties have been set in the webservice declaration (or programmatic instantiation through the constructor). 1) Does anyone have experience extending flex's webservice class? 2) If not, can

Re: [flexcoders] Re: check for daylight savings time

2009-04-14 Thread Dennis Falling
Thanks, that's exactly what I needed. The isDST function didn't seem to work for me (always returned false), but comparing my date's against the dst start and dst end worked. I'm using a range of dates from March 5th (not DST) to now (DST). On Mon, Apr 13, 2009 at 6:54 PM, lampei

Re: [flexcoders] Validation in Model (rather than in View)

2009-04-14 Thread claudiu ursica
Have a look a the presentaion model pattern maybe helps your cause... C From: Borek bore...@yahoo.co.uk To: flexcoders@yahoogroups.com Sent: Tuesday, April 14, 2009 6:16:56 PM Subject: [flexcoders] Validation in Model (rather than in View) Flex supports

Re: [flexcoders] Serialize Java ResultSet To Flex

2009-04-14 Thread Daniel Freiman
Yeah, it just felt inelegant to do manual, untyped serialization. 2009/4/13 Josh McDonald j...@joshmcdonald.info You could put them in a list of HashMaps, which should get serialised into an Array of simple name-value objects on the way to the Flex client? -Josh 2009/4/14 Daniel Freiman

[flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread Borek
How does the Presentation Model pattern help? --- In flexcoders@yahoogroups.com, claudiu ursica the_bran...@... wrote: Have a look a the presentaion model pattern maybe helps your cause... C From: Borek bore...@... To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread claudiu ursica
Now the validation is triggered by the view but you can forward the actual validation to the presentationModel instance who actually does the validation ... so the view only display the info that comes from the model and that's it... C From: Borek

[flexcoders] Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Hello friends, refer following code sniplet /*** private function onItemClick(event:ListEvent):void { if ((event.target as List).selectedIndex == 0 )

[flexcoders] Creating PDFs with embedded Flex apps from Flex

2009-04-14 Thread Geoffrey
I've read that you can create PDFs from your Flex application, and that you can embed Flex applications into PDFs using Acrobat. Do you think it's possible to create a PDF from a Flex application that has an embedded Flex app inside it? Here's a possible scenario. You have some sort of custom

Re: [flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread Richard Rodseth
Whether or not the validation is done in the view or presentation model, note that the framework classes like NumberValidator can be instantiated and invoked in ActionScript. On Tue, Apr 14, 2009 at 9:49 AM, claudiu ursica the_bran...@yahoo.comwrote: Now the validation is triggered by the

[flexcoders] Re: SecurityError: Error #2047

2009-04-14 Thread alekseyvays
The problem was the following - the loading file was local (file://...) instead of being loaded via IIS.

[flexcoders] ICollectionView

2009-04-14 Thread niel.ru...@ymail.com
I have an view defined on an arraycollection. The view initially returns the correct result subset, but subsequently is refreshed to reflect the entire arraycollection. Has anyone experienced this problem? The view is a dataprovider for yahoo.astra.AutoCompleteManager which triggers the

Re: [flexcoders] Re: Can Flex Access Database on different web server than application web server

2009-04-14 Thread eRoom-D
Hello Raja, You probably want to take a look at this article: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailspostId=10284productId=2 It has samples of what the crossdomain.xml file should look like. If you open up your crossdomain file to more than just the domains

Re: [flexcoders] Re: script running longer than....

2009-04-14 Thread eRoom-D
The only time out error I know is the 60 second timeout for scripts. You can change the value for that in the compiler settings (max-execution-time ): http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html The Timer class won't run into this though. Memory leaks would probably

[flexcoders] How to emulate passing parameters to a new instance of a custom component?

2009-04-14 Thread Penny Laus
I've got a custom MXML component called GridView that includes a DataGrid and some other display objects, such as a bit of text. The component uses one HTTPService to fetch the column definitions and another to fetch data for the grid. The idea here is to be able to store and configure DataGrid

[flexcoders] Re: anyone know of a good (free) flex component for playing video/swfs?

2009-04-14 Thread smitade
Tried this - not sure if it plays swf? http://www.fxcomponents.com/flex-video-player/ --- In flexcoders@yahoogroups.com, gmoniey22 gmonie...@... wrote: I'm looking for a simply (and reliable) flex component which can play a flv or a swf and has the basic controls (Play/Pause/Progress bar)

[flexcoders] Glue - Beautiful Gooey MVC Framework for Flex

2009-04-14 Thread Sean Clark Hess
link - http://code.seanhess.net/?p=195 [...] So, this isn’t an official release, but more of a call for feedback. I just finished a first-draft of a new MVC framework for Flex that I’m calling Glue. I started out with several specific goals in mind. I’ve been trying to think of how the

RE: [flexcoders] Create mxml custom component in a actionscript event handler

2009-04-14 Thread Tracy Spratt
What error? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of raja_s_patil Sent: Tuesday, April 14, 2009 12:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Create mxml custom

[flexcoders] Re: Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread fumeng5
Tracy, Thank you for your response. I've got the checkbox renderer from cflex and it's working just fine. i've updated my XMLListCollection with the 'selected' property and it renders fine as well. The problem is updating the collection on click of a datagrid row. Here is what I have:

RE: [flexcoders] ICollectionView

2009-04-14 Thread Tracy Spratt
view is not a member of ArrayCollection. What are you actually doing? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of niel.ru...@ymail.com Sent: Tuesday, April 14, 2009 12:34 PM To:

[flexcoders] Re: anyone know of a good (free) flex component for playing video/swfs?

2009-04-14 Thread gmoniey22
Yea, I found that one too, but there is no indication that is plays swfs...I will tinker with it a bit. Thanks. --- In flexcoders@yahoogroups.com, smitade smit...@... wrote: Tried this - not sure if it plays swf? http://www.fxcomponents.com/flex-video-player/ --- In

[flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread fred44455
Thanks

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
thanks Tracy Spratt What error? ReferenceError: Error #1065: Variable Form1 is not defined. at global/flash.utils::getDefinitionByName() at MyFirst/menuSelected()[I:\Flex\RSP_TESTS\MyFirst\MyFirst.mxml:31] at

Re: [flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread Paul Andrews
Depends on you really. Most people would do well with a mixture of both. It's free to check out some sample videos on lynda.com. Flex in a week is to be recommended: http://www.adobe.com/devnet/flex/videotraining/ and is free. Did you expect some definitive answer? Paul

Re: [flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread Alan Rother
Is Chocolate Ice Cream Better than Vanilla? It's really more of an opinion than a provable fact. I've done both, read a bunch of books and watched some of the videos on Lynda.com. I found them both very helpful, the videos more so than the books at the beginning and the books more helpful now

Re: [flexcoders] Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread Jeffry Houser
Vanilla is better by far. That said, I tend to learn best by doing; and by quickly skimming text (often documentation) I can find the answer to my question. Videos are hard to skim. You may also want to check out our Flex Show video series in addition to the Adobe Flex in a Week stuff. (

Re: [flexcoders] How to emulate passing parameters to a new instance of a custom component?

2009-04-14 Thread Jeffry Houser
You can certainly pass parameters to a custom MXML component. Just create your public properties in a script block and they will act just like properties in an AS only class. Beyond that, I would probably make your public property a custom interface. That way you can pass in any object

[flexcoders] Re: Is it better easier to learn Flex3 AS3 via a book or videos?

2009-04-14 Thread raja_s_patil
I am also beginer and have just started writing some exercise applications before we take up a project. No database connectivity, no styling/skinning/effects yet. Plain vanila mxml and actionscript application. This is what i followed 1 Lynda Eccential training 2 Total Training video tutorial 3

RE: [flexcoders] Re: Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread Tracy Spratt
You are very close. But setItemAt requires an entire item, not just the changed property. While setItemAt might be better practice, I would just set the property directly, and then call itemUpdated: private function onItemClick( event:ListEvent ):void { var oItem:Object =

[flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread flexcoder99
We had similar issue in our application. We had two different ways of adding datain the grid or in a form view. So one model - two views. With Validation being coupled tightly with View, validation logic would be in two places - Grid column level AND FormItem level To avoid this we

[flexcoders] Re: InteractiveObject Problem

2009-04-14 Thread Amy
--- In flexcoders@yahoogroups.com, lehaianh1986 lehaianh1...@... wrote: I have an event for my right click mouse on AdvancedDataGrid. I want to collect row item data so my code is public function menuItemSelect(evt:ContextMenuEvent):void { var searchString:String; var

[flexcoders] Re: Problem with LinearAxis on an horizontal axis

2009-04-14 Thread enriirne
LinearAxis should do just what you expect You are right, I realized only yesterday that *Axis also have the xField property, which does exactly what I needed :) Enri

[flexcoders] Flex Developer Needed (Fulltime)

2009-04-14 Thread joshbuhler
Rain in American Fork, Utah is currently looking for a (preferably senior level) Flex developer. This is a full-time position, with great benefits. Details can be found at: http://mediarain.com/us/employment/flexdeveloper

[flexcoders] Re: Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread fumeng5
Thank you, this is working very well now except for one bug: When I click directly on the checkbox I get the following error: Property @selected not found on Boolean and there is no default value. Meaning that 'oItem', instead of coming back as an object (event.currentTarget.selectedItem) is

RE: [flexcoders] Re: Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread Tracy Spratt
Ah, your items are XML, that is fine, I am personally quite fond of XML. First, what line is throwing that error? Also, make this change: var xmlItem:Object = XML(event.currentTarget.selectedItem); and change oItem to xmlItem everywhere in that function too. This toggles the

RE: [flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread Tracy Spratt
Have you imported Form1 and Form2? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of raja_s_patil Sent: Tuesday, April 14, 2009 1:47 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Adobe Bug | http://bugs.adobe.com/jira/browse/SDK-17299

2009-04-14 Thread ilikeflex
Hi Adobe bug http://bugs.adobe.com/jira/browse/SDK-17299 Does anybody has idea when Adobe is going to fix the above bug ot there is any workaround. Thanks Rajan

[flexcoders] Re: Access DataGridColumn on DataGrid Row Click

2009-04-14 Thread fumeng5
Yes, I want a user to be able to continuously select and unselect the checkbox. And casting the selectedItem to XML now suppresses that error but I am still unable to select/unselect the checkbox. It seems that when I mouse over a row when i'm in the 2nd column, the row isn't being

[flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread Borek
Thanks Haritha, I think something along the lines you described would be the way to go, although I like the default look and feel of invalid controls (red border, tooltip with error etc.) I guess I would need to develop my own validation framework which I currently don't have time to,

Re: [flexcoders] Adobe Bug | http://bugs.adobe.com/jira/browse/SDK-17299

2009-04-14 Thread Igor Costa
Rajan Isn't a bug, Not a Bug the problem is the way of your code implementation works. The PopUpManager doesn't work to cast itself. Due to the dependecy of IFlexDisplayObject. Instead of current code example. NOT Right way //action1 if (myPopUp == null) { myPopUp =

[flexcoders] VideoDisplay rewind

2009-04-14 Thread [p e r c e p t i c o n]
Hi all, Does anyone have a cool way to rewind a video using the VideoDisplay Object? thanks and many cheers percy k

Re: [flexcoders] Serialize Java ResultSet To Flex

2009-04-14 Thread Josh McDonald
You can always create a typed ActionScript VO. Since you'll have to go from ResultSet to typed object on the Java side before you can use the built-in marshaller, you may as well just marshal straight from your resultSet to AMF. -Josh 2009/4/15 Daniel Freiman freima...@gmail.com Yeah, it

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Thanks Tracy Spratt Have you imported Form1 and Form2? I tried import Form1; but no effect. How a import statement if Form1 and Form2 are in same source directory that of application ? The output directory is bin-debug within the source directory. Project directory is same as source

RE: [flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread Tracy Spratt
Ok, what happens if you just try to instantiate a Form1? If the code is not finding this class then you certainly can't proceed. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

Re: [flexcoders] ICollectionView

2009-04-14 Thread Josh McDonald
Could you post some code that shows how you're creating the view? -Josh 2009/4/15 niel.ru...@ymail.com niel.ru...@ymail.com I have an view defined on an arraycollection. The view initially returns the correct result subset, but subsequently is refreshed to reflect the entire

[flexcoders] BlazeDS data push over SSL

2009-04-14 Thread pratima_jrao
I have an application that uses the data push technology of blazeDS to send data to a Flex Client event 5 seconds. The application works fine when I run it via HTTP with or without a proxy. When I run it via https the data push doesn't work anymore. I get the following error rootCause

[flexcoders] Re: Animated Flash Component Resizing when used as Button Skin

2009-04-14 Thread tpokrajcic
Hi Aurek, sorry for not replying earlier but I was on the trip. There is no need to override Button width/height, I guess the problem is in dimensions of the MovieClip that's used as a skin. I plan to play with my similar problem tomorrow. If you want, send me sources of your button and swf of

[flexcoders] how can I get an application to grow as its children gro (example inside)

2009-04-14 Thread gmoniey22
I have an application which has a tabnavigator with a handful of VBoxes inside of it. Those boxes can have dynamic content (which will grow horizontally). The only problem is that I can't get the application to grow horizontally as well. My plan is to have the application grow, and then fire an

Re: [flexcoders] Extending Flex Webservice class

2009-04-14 Thread Josh McDonald
There's currently compile-time voodoo that exists to support the MXML declaration of web services, so you can't really do this sort of thing declaratively. Programmatically it's pretty easy to add headers to web service calls though, what exactly are you trying to do? -Josh 2009/4/15 variableop

[flexcoders] Re: InteractiveObject Problem

2009-04-14 Thread lehaianh1986
How? I don't understand what you say. If I click on header of AdvancedDataGrid or another area, it false because an object have no data property. But when I click on row item in AdvancedDataGrid, an object I collect have data property. I use code if (inObj.hasOwnProperty(data)) to avoid wrong

Re: [flexcoders] BlazeDS data push over SSL

2009-04-14 Thread Josh McDonald
Do you have the corrent channels set up for http and https on the server? Have you tried going through Charles to make sure it's returning the correct response type? If there's a Java problem you might be getting a 500 as it's still going through a servlet, in which case you'll just get the stream

Re: [flexcoders] Why SharedObject.flush so slowly

2009-04-14 Thread iiley
Finally, we found a way, first time request a big enough space by shareObject.flush(bigNumber), make use to allow the big number space, then later save, we do not need to call flush method, because if the space is enough, then the data will be save successful when GC or SWF closing. 2009/4/2

[flexcoders] dynamic number of column in Advanced datagrid

2009-04-14 Thread senthilkumarirtt
hi all, i need to create dynamic number of column in Advanced datagrid.

[flexcoders] How transmiting a string to variable in contexmenu

2009-04-14 Thread btc132
hello all i want to transmit a string to variable by when i highlight a string contexmenu and click right mouse to choose search function which is the same copy function. i done in the following. public function clone():ContextMenu; private function search(evt:ContextMenuEvent):void { var

[flexcoders] Re: Create mxml custom component in a actionscript event handler

2009-04-14 Thread raja_s_patil
Thanks Tracy Spratt, Ok, what happens if you just try to instantiate a Form1? If the code is not finding this class then you certainly can't proceed. As I have stated in my earlier posts commenting the onItemClick function the Form1 can not be instantiated if I remove comment on

[flexcoders] Mate and sharing data across files

2009-04-14 Thread Seona Bellamy
Hi guys, I'm not sure that the subject line is all that clear, but I honestly can't think of how best to express it. My brain's just really tied in a knot over this one. Bear with me for a moment and I'll try and explain where I'm coming from and what I'm trying to do. I'm pretty new to Flex as