[flexcoders] ADT package command run from a diff location

2011-12-01 Thread superabe superabe
The adobe docs for ADT package command says: The -package command should be run from the main application directory

[flexcoders] ADT build from outside application directory?

2011-12-01 Thread superabe superabe
The adobe docs for ADT say: The -package command should be run from the main application directory Is there any way to run ADT from a different location that the main application source. So for e.g I am trying to integrate with a ANT build system, I have my ANT scripts in the builds/ location

[flexcoders] Convert Spark List for tablet and phones

2011-10-13 Thread superabe superabe
Hi, I have a flex 4.0 app with a lot of Spark Lists and would like to port it to work for tablets (phones later). I realize I would need to go and optimize stuff for better performance, but what is the way to enable the Spark lists to get the new gesture based interaction? Is there a flag I need

Re: [flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-08 Thread superabe superabe
Ok. That's an older version of the OSMF swc. My app depends on some of the newer features in OSMF 1.0, so have to use that version. So this seems like version compatibility bug with OSMF1.0 and the automation_spark.swc. Any Adobe folks who can confirm this and hopefully suggest a workaround ? On

Re: [flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-08 Thread superabe superabe
Thanks for looking into this. Trunk of the Flex 4SDK? That might be the older OSMF version. Will need to check. I am using the GM release version of OSMF located here (in source.zip) http://opensource.adobe.com/wiki/display/osmf/Downloads That does not include DimensionEvent. On Sun, Aug 8,

Re: [flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-07 Thread superabe superabe
Yes. I tried that. Did not seem to help. On Sat, Aug 7, 2010 at 4:19 AM, Oleg Sivokon olegsivo...@gmail.com wrote: Did you try to change the order they are included?

Re: [flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-07 Thread superabe superabe
Which version of OSMF did you see DimensionEvent in ? I am using the OSMF 1.0 version. On Sat, Aug 7, 2010 at 7:56 AM, Oleg Sivokon olegsivo...@gmail.com wrote: OK, I've just checked and DimensionEvent is compiled into osmf.swc, so, my guess is that you need to include that library too. The

[flexcoders] Flex 4.1 , automation_spark.swc and OSMF 1.o issues

2010-08-06 Thread superabe superabe
Hi , There seems to an issue when trying to compile in the automation libraries into a Flex 4.1 app that also includes the OSMF1.0 swc. I get the compiler error: Description Resource Path Location Type 1046: Type was not found or was not a compile-time constant: DimensionEvent. Test Unknown

[flexcoders] Change Application width and height at runtime

2009-09-28 Thread superabe superabe
Hi, I'd like to change the width and height of the top level Application object in my Flex app, at runtime. However the usual attempts to do this simple task do not seem to work. Binding does not work, changing width and height on any of the lifecycle events does not work Anybody know how to

Re: [flexcoders] Flex 4 System Manager idle threshold

2009-07-09 Thread superabe superabe
Of *superabe superabe *Sent:* Wednesday, July 08, 2009 5:18 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Flex 4 System Manager idle threshold Is there a way to change the idle time threshold for the Flex 4 SystemManager. ? I'd like to change the idle time to be 2 seconds

[flexcoders] Flex 4 System Manager idle threshold

2009-07-08 Thread superabe superabe
Is there a way to change the idle time threshold for the Flex 4 SystemManager. ? I'd like to change the idle time to be 2 seconds but the value seems to be read from a private static const in SystemManager and set to a default of 1 second? TIA, superabe

Re: [flexcoders] Multiline Textfield Trunctation

2008-05-29 Thread superabe superabe
http://blogs.adobe.com/bhellema/2007/03/truncating_text_1.html On Thu, May 29, 2008 at 8:31 PM, Gordon Smith [EMAIL PROTECTED] wrote: The Flex framework doesn't support multiline truncation. I don't know there's third-party code to do this. Gordon Smith Adobe Flex SDK Team

Re: [flexcoders] add item to the top of a sorted datagrid

2008-05-28 Thread superabe superabe
. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Tuesday, May 27, 2008 5:08 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] add item to the top of a sorted datagrid Is there any way to add new items to the top

[flexcoders] add item to the top of a sorted datagrid

2008-05-27 Thread superabe superabe
Is there any way to add new items to the top of a sorted datagrid? I know how to add stuff to a datagrid/provider, but am unsure about how to keep the new item at the top of the datagrid and not have the underlying sort kick-in. TIA - superabe

[flexcoders] Re: prevent ADG datagrid column from being dragged [bump]

2008-05-25 Thread superabe superabe
Is there anyway to prevent a column in an AdvancedDataGrid from being draggable. I see a draggable property on the regular Datagrid, but not on the ADG ? TIA - superabe

Re: [flexcoders] Re: prevent ADG datagrid column from being dragged [bump]

2008-05-25 Thread superabe superabe
. There is an undocumented protected method called isDraggingAllowed that takes a column and returns a Boolean. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Sunday, May 25, 2008 5:14 AM *To:* flexcoders

[flexcoders] prevent datagrid column from being dragged

2008-05-22 Thread superabe superabe
Is there anyway to prevent a column in an AdvancedDataGrid from being draggable. I see a draggable property on the regular Datagrid, but not on the ADG ? TIA - superabe

[flexcoders] Flash Player 9.0.124 debug version and flashlog.txt

2008-04-17 Thread superabe superabe
I noticed that the latest debug player version 9.0.124 does not seem to writing the trace outputs to flashlog.txt. Anybody know how to enable this back on ? TIA - superabe

[flexcoders] AdvancedDataGrid horizontal scroll position

2008-03-01 Thread superabe superabe
Is there a way to convert the horizontalScrollPosition property of the ADG into pixel coordinates? It currently seems to be returning the columnIndex ? TIA -superabe

Re: [flexcoders] Re: programatically deselect cells in an AdvancedDataGrid (bump)

2007-12-09 Thread superabe superabe
Thats what I had hoped would happen too, unfortunately thats not the case with the ADG. Setting selectedIndices to an empty array seems to have no effect on the ADG. It looks like a bug at this point. -superabe On Dec 8, 2007 4:49 PM, David Spurr [EMAIL PROTECTED] wrote: In the standard

[flexcoders] Re: programatically deselect cells in an AdvancedDataGrid (bump)

2007-12-08 Thread superabe superabe
On Dec 7, 2007 5:59 AM, superabe superabe [EMAIL PROTECTED] wrote: Anybody know how to programmatically deselect cells, in an AdvancedDataGrids (Flex 3 Beta2). ? I can successfully use the selectedCells property of the ADG, with selectionMode set to multipleCells to select cells

[flexcoders] programatically deselect cells in an AdvancedDataGrid

2007-12-07 Thread superabe superabe
Anybody know how to programmatically deselect cells, in an AdvancedDataGrids (Flex 3 Beta2). ? I can successfully use the selectedCells property of the ADG, with selectionMode set to multipleCells to select cells programmatically. I cannot however seem to find a convenient way to deselect them.

Re: [flexcoders] Using CSS to style LineChart

2007-11-09 Thread superabe superabe
as it stands now seems you cannot set the stroke prop in CSS as the property expects a Stroke object. hence you have to do series.setStyle(stroke, new Stroke()); One way to support CSS defined Stroke props is to create your own custom props..in your type/class selector. ...so when creating

[flexcoders] Flex 3 beta swf expiration

2007-11-08 Thread superabe superabe
Anybody from Adobe or otherwise, know if the swfs/swc we generate today using the Flex 3 beta version (including the datavisualization charts), will expire when the final versions ships ?? If it will, is there sufficient overlap between when the final version will be availablle for purchase online

Re: [flexcoders] Flex 3 beta swf expiration

2007-11-08 Thread superabe superabe
Thanks for the reply. Thats good to know. On Nov 8, 2007 12:35 PM, Matt Chotin [EMAIL PROTECTED] wrote: The SWFs themselves should not expire. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of superabe superabe Sent: Thursday, November 08, 2007 3

Re: [flexcoders] Setting Chart LineSeries properties in ActionScript

2007-11-07 Thread superabe superabe
these are style properties of the Series so try setStyle like so . var s:LineSeries = new LineSeries(); s.setStyle(legendMarkerRenderer, new ClassFactory(CircleItemRenderer)); - superabe On Nov 7, 2007 8:46 PM, cuddlygunchi [EMAIL PROTECTED] wrote: Hello, In MXML I can set the

[flexcoders] Flex 3 Charts : DateTimeAxis labelFunction

2007-11-07 Thread superabe superabe
I am trying to specify a custom labelFunction for the DateTimeAxis for a LineChart. The canDropLabels property of this horizontalAxis is set to true. The problem I am facing is that the labelFunction seems to get called for *ALL* labels, even the ones getting dropped. This is an issue for me

[flexcoders] Re: Integrate ANT script with the Flex Builder debug (F11) key [bump]

2007-11-02 Thread superabe superabe
On 11/1/07, superabe superabe [EMAIL PROTECTED] wrote: I use ant buildfiles for my Flex projects. A typical application would usually involve an ant script that builds a few lib swcs and then finally builds the swf. I'd like to integrate this as part of the Flex Builder IDE, meaning when I

[flexcoders] Integrate ANT script with the Flex Builder debug (F11) key

2007-11-01 Thread superabe superabe
I use ant buildfiles for my Flex projects. A typical application would usually involve an ant script that builds a few lib swcs and then finally builds the swf. I'd like to integrate this as part of the Flex Builder IDE, meaning when I hit F11 (the debug key) I'd like Flex Builder to run my ant

Re: [flexcoders] RIA Developer Camp at Adobe San Francisco

2007-10-30 Thread superabe superabe
any chance you can hold one of these on the East Coast? out of your Newton office maybe ? - superabe On 10/30/07, Matt Chotin [EMAIL PROTECTED] wrote: We're having a Developer Camp at Adobe in our San Francisco office on Monday November 5th from 4-8pm. Registration is free but is limited.

[flexcoders] Cairngorm and multiple Applications in a Single Flex Project

2007-10-04 Thread superabe superabe
I am starting the planning process for a project that, in its current vision is a web site with 8-10 pages that each will contain a Flex application that makes up most of the page. I would like to use a single Flex Project for these applications that has the 8-10 application MXML files and then

Re: [flexcoders] Cairngorm and multiple Applications in a Single Flex Project

2007-10-04 Thread superabe superabe
Easier to manage single apps/swfs. These fit into a AJAX/DHTML navigation frame, giving us the flexibility to replace the swfs with HTML/AJAX/Silverlight equivalents in the future, should we choose to do so. They can really be considered as standalone mini applications that share a common

Re: [flexcoders] Re: flex builder 3 beta 2 always launching my app with debug player.

2007-10-04 Thread superabe superabe
FWIW, I really like this new workflow...makes a lot of sense and really speeds up compilation. Most of my release builds use ANT anyway so I never really have a need to run the release swf while I am in FBuilder - superabe On 10/4/07, Mike Morearty [EMAIL PROTECTED] wrote: Aaron, you can fix

[flexcoders] Specify custom colors for a LineChart is not possible ??

2007-09-27 Thread superabe superabe
Is there a simple way to specify custom colors for a LineChart Series using CSS (Flex 3) ? This should be a no-brainer. I can't believe there is no documentation on this anywhere. I am finding with the Charting stuff, that simple stuff can sometimes seem frustratingly difficult. Hoping somebody

Re: [flexcoders] Specify custom colors for a LineChart is not possible ??

2007-09-27 Thread superabe superabe
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Thursday, September 27, 2007 3:32 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Specify custom colors for a LineChart is not possible ?? Is there a simple way to specify custom colors

Re: [flexcoders] Specify custom colors for a LineChart is not possible ??

2007-09-27 Thread superabe superabe
Thanks!.. -superabe AS - *private* *function* init():*void* { *var* s1:Stroke = *new* Stroke(0xFF,2); *var* s2:Stroke = *new* Stroke(0xFF,2); *var* s3:Stroke = *new* Stroke(0x00FF00,2);

Re: [flexcoders] Specify custom colors for a LineChart is not possible ??

2007-09-27 Thread superabe superabe
is still in works. Thanks for providing feedback. Thanks -Sunil -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Thursday, September 27, 2007 4:08 PM *To:* flexcoders@yahoogroups.com *Subject:* Re

Re: [flexcoders] ToggleButtonBar

2007-09-17 Thread superabe superabe
Thanks for that. (was hoping we would not have to resort to callLaters. What happens if we reset the dataProvider.? I guess I'll try it out and see) This is one of the few times, I get both irritated and happy with the the framework. ... irritated that such a simple/common use case does not have

Re: [flexcoders] air namespace (adobe)

2007-09-17 Thread superabe superabe
a File class. So our rule is that packages do not indicate the platform. - Gordon -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Saturday, September 15, 2007 5:03 AM *To:* flexcoders@yahoogroups.com

[flexcoders] ToggleButtonBar

2007-09-16 Thread superabe superabe
Is there any way to deselect all the buttons in a ToggleButtonBar? Specifically, what I would like to do when I set the dataprovider for a ToggleButtonBar, is to just display the buttons and not have the first one selected? TIA, superabe

[flexcoders] air namespace (adobe)

2007-09-15 Thread superabe superabe
Are there any plans to create a separate namespace for AIR related components in the SDK? For e.g. I am looking inside the mx.controls package and I see controls like FileSystemComboBox and FileSystemDataGrid listed, which dont seem to be usable in a non-AIR flex context, thus leading to

[flexcoders] LineSeries Stroke color

2007-09-07 Thread superabe superabe
This feels like a really simple thing, but I am new to using the charts so having trouble figuring this out (using Flex 3 beta) I have a LineChart with a few LineSeries in them. I want to change the weight of the stroke of the all the LineSeries to be thinner, yet I want to use the default colors

Re: [flexcoders] LineSeries Stroke color

2007-09-07 Thread superabe superabe
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *superabe superabe *Sent:* Friday, September 07, 2007 5:31 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] LineSeries Stroke color This feels like a really simple thing, but I am new to using the charts so having trouble

[flexcoders] Re: Clear out content of a display.Loader

2007-03-22 Thread superabe superabe
Note to self... pay more attention to docs..:-) loader.unload() On 3/21/07, superabe superabe [EMAIL PROTECTED] wrote: I am using a flash.display.Loader to load in an image. On a subsequent event I would like to clear out the image in the Loader and leave the Loader object intact, without

[flexcoders] Clear out content of a display.Loader

2007-03-21 Thread superabe superabe
I am using a flash.display.Loader to load in an image. On a subsequent event I would like to clear out the image in the Loader and leave the Loader object intact, without loading in a new image. What is the best way to acheive this ? TIA - superabe

Re: [flexcoders] Modules at 360Flex conference

2007-03-07 Thread superabe superabe
Thanks for posting the slides. Great talk at 360 BTW. - superabe On 3/7/07, alex_harui [EMAIL PROTECTED] wrote: We've seen lots of questions on modules recently. I just presented on Modules at the 360Flex conference where I tried to answer some of these questions. Slides and examples are at

[flexcoders] add actionscript project as a library to a flex project

2007-01-15 Thread superabe superabe
I have an AS Project in FB2, which I would like to use as a library in another Flex project. I tried using the Add Project option in the project properties for FB2, but cant seem to find a way to specify an AS project. I get the No Flex Library Project Exists error dialog. Any ideas on how I

[flexcoders] FlexBuilder 2 and Flex 1.5

2006-04-15 Thread superabe superabe
Had anybody had any luck with figuring outplugins/workflow that might allowfor working with Flex1.5 projects inFlexBuilder 2, with at least the following support #code coloring mxml(including as in script block) #code coloringas # code hinting mxml(including as in script block) # code

Re: [flexcoders] FlexBuilder 2 and Flex 1.5

2006-04-15 Thread superabe superabe
Thanks, will try that out. - superabe On 4/15/06, Johannes Nel [EMAIL PROTECTED] wrote: its not possible. why don't u just use eclipse with asdt plugin for the as and the wtp plugin for the mxml. darron schall posted about this on his blog a while ago. On 4/15/06, superabe superabe [EMAIL

[flexcoders] Flex 1.5 : DataGrid HeaderRenderer

2006-03-31 Thread superabe superabe
I am trying to use a custom HeaderRenderer class in my DataGrid for a 4 columns, and I would like to get a reference to the headerText property of the DataGridColumn from inside the HeaderRenderer's setValue method. The idea being to use a single HeaderRenderer class, but have it display

[flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
Hi List, I havea potential use case where my top level Application consists of a ViewStack that might have around 10 children that are themselves composite components with multiple views It seems prettycertain that if I create one single Flex (Flex 1.5)application, I would most probably run

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
the loadedSWFs to even be full applications.Anyway, its feasible, just takes a bit of work.Stay tuned for some help down the road.-rg -Original Message- From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of superabe superabe Sent: Tuesday, February 07, 2006 9:37 AM

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
] On Behalf Of superabe superabe Sent: Tuesday, February 07, 2006 10:06 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Split a single Flex application into parts Thanks Roger. That would be really helpful. This is something I was quite familiar with while architecting pure Flash based

[flexcoders] DataGrid Header lines

2006-01-27 Thread superabe superabe
I have custom Header Renderers for my Datagrid with backgroundImages, but for some reason the lines (white lines) to resize the columns show up, even though I have set resizeColumns to false. Anybody know a way to get rid of this. Its quite annoying visually. TIA - superabe -- Flexcoders

Re: [flexcoders] Datagrid Cell Renderer

2006-01-27 Thread superabe superabe
Boy do I feel dumb! Thanks - superabe On 1/27/06, Matt Chotin [EMAIL PROTECTED] wrote: Store the value in an instance variable as well as passing it thorugh to the image. Then in setValue check to see if it's != your stored value and only update the Image source if true. Matt From:

[flexcoders] access DataGrid Row

2006-01-26 Thread superabe superabe
I have a question that seems like it should be a basic one. I have a DataGrid and I need to go over its currently visible rows and deselect a check box in one of the cellrenderers based on a condition. Is there some property on the datagrid that canbe usedaccess the rows and then the cell

Re: [flexcoders] access DataGrid Row

2006-01-26 Thread superabe superabe
Thanks for the reply Stacey. I dont have the state of the checkBox in my dataProvider right now. If I do manage to stick it in there, what is this refresh method that you are referring to ? On 1/26/06, Stacey Mulcahy [EMAIL PROTECTED] wrote: Technically if you go to the model, change the

Re: [flexcoders] Component DataBinding issue

2006-01-14 Thread superabe superabe
Thanks Matt, Will try that out. Soif I read you correctly Ishould prolly have a: # a default value for rating # a drawRatings() method thatis called from createChildren()and/or rating setter. Nowif Ido call the drawRatings() method from the rating setter, would I need to call invalidate from

Re: [flexcoders] Re: ViewStack creationIndex

2006-01-12 Thread superabe superabe
/flex_docs_en/1145.htmHope this helps.Brendan--- In flexcoders@yahoogroups.com, superabe superabe [EMAIL PROTECTED]wrote: Hi Bendan, Thanks for the tip, Can you elaborate some more on what you mean by manuallyinstantiate the children using createComponent with recursion set to true. Where

Re: [flexcoders] Re: ViewStack creationIndex

2006-01-12 Thread superabe superabe
with recursion set to true. Haven't tried this, so let me know if this helps.Brendan--- In flexcoders@yahoogroups.com , superabe superabe [EMAIL PROTECTED]wrote: Hi list, Is there any way to combine the effects of creationPolicy=auto and creationPolicy=queued within the same ViewStack. So for e.g

[flexcoders] VBox scrollbar bug ?

2006-01-12 Thread superabe superabe
Hello list, This sounds like a really basic thing so I can't believe this is a bug, so probably am doing something wrong. I have a custom AS container(extends off VBox)in which I create a large number of child controls by overriding the createChildren method. The component is used in Main.mxml

Re: [flexcoders] VBox scrollbar bug ?

2006-01-12 Thread superabe superabe
No luck, same behaviour. :( Works for Canvas, does not work for VBox - superabe On 1/12/06, Paul BH [EMAIL PROTECTED] wrote: what happens if you call super.createChildren() at the beginning of the createChildren method? On 1/12/06, superabe superabe [EMAIL PROTECTED] wrote: Hello list

Re: [flexcoders] VBox scrollbar bug ?

2006-01-12 Thread superabe superabe
Update on this, setting fixed widths and heights on the parent VBox resolved the issue. That will do fine for now :) - superabe On 1/12/06, superabe superabe [EMAIL PROTECTED] wrote: No luck, same behaviour. :( Works for Canvas, does not work for VBox - superabe On 1/12/06, Paul BH [EMAIL

Re: [flexcoders] Re: ViewStack creationIndex

2006-01-11 Thread superabe superabe
setting creationPolicy=none and manually instantiate thechildren using createComponent with recursion set to true. Haven't tried this, so let me know if this helps.Brendan--- In flexcoders@yahoogroups.com, superabe superabe [EMAIL PROTECTED]wrote: Hi list, Is there any way to combine the effects

[flexcoders] Databinding in custom component

2006-01-10 Thread superabe superabe
Hi all, Had a question on how to handle databinding related visual changes in a custom AS component. Say, we have a custom AS component myComp that extends off a VBox. myComp has a data object property called dataModel myComp handles all ui creation by overriding the createChildren method

[flexcoders] Component DataBinding issue

2006-01-09 Thread superabe superabe
Hi there, I have a customAS component that seems to generate a script time-out error when I use databinding to set one of its params. It works fine if I hard code the param value. Any ideas as to why this may be happening ? TIA - superabe Component code(RatingCell.as)

[flexcoders] {Resending] Component DataBinding issue

2006-01-09 Thread superabe superabe
Resending in case this was missed. Hi there, I have a customAS component that seems to generate a script time-out error when I use databinding to set one of its params. It works fine if I hard code the param value. Any ideas as to why this may be happening ? (code pasted below) TIA -

[flexcoders] Alternative to Repeater

2006-01-07 Thread superabe superabe
Is there an alternative to using a Repeater , that I could make use of in my component (AS based). For e.g. Say I have a component called Comp Comp.mxml (Pseudo-code) === mx:VBox mx:Script public var dp:Array; /mx:Script mx:Repeater dataProvider={dp} mx:Image

Re: [flexcoders] Alternative to Repeater

2006-01-07 Thread superabe superabe
, say, to create images, and then call load on them based on the url for the current item. Then, you can finally use that AS component as MXML elsewhere. Make sense? - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent: Saturday, January 07, 2006 11:09 AM

Re: [flexcoders] Alternative to Repeater

2006-01-07 Thread superabe superabe
once: - modelChanged fired for setting the dataProvider - modelChanged fired for adding cow to it - modelChagned fired for addingmoo to it Since I use a doLater, and only 1, it'll only redraw once per frame. - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent

[flexcoders] Re: Image load time-out settings

2005-11-16 Thread superabe superabe
Resending this, in case somebody knows the answer. Looking for a way to increase the default timeout value for an Image control, before i shows the broken image icon. TIA - superabe On 11/5/05, superabe superabe [EMAIL PROTECTED] wrote: Is there any setting in Flex that controls how long

Re: [flexcoders] Re: Scrollbar in canvas

2005-11-15 Thread superabe superabe
Anybody find the answer to this yet? i.e is there any method that will force a container (in this case a Canvas) to recalculate / activate its scrollbars? TIA, - superabe On 8/26/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi Igor,It works sometimes it does not work some times.. how do I

Re: [flexcoders] Re: Flex prototype - production approach

2005-11-05 Thread superabe superabe
pretty much stayed true every project involing serious back-ends. I've always tried to utilize dummy data early on and get confirmation from the back-end guys on what I'm getting, so I havne't run into the problem you are describing. - Original Message - From: superabe superabe

[flexcoders] Image load time-out settings

2005-11-05 Thread superabe superabe
Is there any setting in Flex that controls how long an Image control tries to load an external image file, before displaying the broken image icon? I am facing a situation where, images load fine on a dev server, but fail to show up on a staging server. Refreshing the page seems to resolve the

[flexcoders] Flex prototype - production approach

2005-11-04 Thread superabe superabe
Just curious about what folks here on the list think / have experienced about the prototype based approach to RIA developemnt with Flex. Am evaluting a potential project that needs to be prototyped first and eventually built using Flex, and trying to decide what to use for prototyping and how

Re: [flexcoders] Re: Flex prototype - production approach

2005-11-04 Thread superabe superabe
, definately.Obviously, I'm implying scope here, but you get the gist. - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent: Friday, November 04, 2005 5:19 AM Subject: [flexcoders] Flex prototype - production approach Just curious about what folks here on the list think

[flexcoders] Force binding for Arrays

2005-11-03 Thread superabe superabe
I realize that we can force binding for Arrays to occur, when modifying one of their indexes by doing something like Model.myList = Model.myList Is there any performance reasons or other reasons why this would be a bad idea to use? TIA - superabe -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Force binding for Arrays

2005-11-03 Thread superabe superabe
. - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent: Thursday, November 03, 2005 11:11 AM Subject: [flexcoders] Force binding for Arrays I realize that we can force binding for Arrays to occur, when modifying one of their indexes by doing something like

[flexcoders] Embed Flash 8 swf in Flex 1.5

2005-11-02 Thread superabe superabe
Is itpossible to embed a flash 8 swf into a Flex 1.5 app.? I tried embedding a test swf with some basic actionscript into a Flex 1.5 app. When the swf is exported as Version 7 it loads fine. When exported as Version it gives the following error: Exception java.lang.IllegalArgumentException

Re: [flexcoders] Embed Flash 8 swf in Flex 1.5

2005-11-02 Thread superabe superabe
Thanks for the reply. Bummer about the parser. Works fine when loading the swf at runtime. So will try work with that (although from your comments below it seems thats not supposed to be so straightforward) ? - superabe On 11/2/05, Roger Gonzalez [EMAIL PROTECTED] wrote: No, please see my

[flexcoders] Image load timeout

2005-11-01 Thread superabe superabe
Is there a setting that controls how long the Image control waits to load the image before displaying the broken image icon? I am facing a situtaion when my app load the first time, it fails to show some of the images, and displays my custom broken image icon instead. When Irefresh the app in

Re: [flexcoders] script time warning and Flash Player 8

2005-11-01 Thread superabe superabe
understand why they did it. My opinion; if you are using that attribute of the application tag, it's time to refactor whatever part of your code requires it. - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent: Monday, October 31, 2005 10:36 AM

[flexcoders] script time warning and Flash Player 8

2005-10-31 Thread superabe superabe
Hello list, resending this, hoping somebody has an answer. The scriptTimeOut property for the application tag does not seem to beworking. (I am testing the app using the debug version of Flash Player 8).I saw a thread reporting this issue in the flexcoders list

Re: [flexcoders] script time warning and Flash Player 8

2005-10-31 Thread superabe superabe
of the worst features Macromedia could of implemented in Flex, although, I understand why they did it. My opinion; if you are using that attribute of the application tag, it's time to refactor whatever part of your code requires it. - Original Message - From: superabe superabe

[flexcoders] Cairngorm Sequence Command Example

2005-10-31 Thread superabe superabe
Hi there, Does anyone have an example implementation ofa Cairngorm SequenceCommand class. I need to chain 5 of my asynch Command's together to perform an action once _all_ 5 have completed execution. Am I wrong in expecting that a single SequenceCommand will be able tochain all 5 commands ?

Re: [flexcoders] Re: Cairngorm Sequence Command Example

2005-10-31 Thread superabe superabe
, superabe superabe [EMAIL PROTECTED]wrote: Hi there, Does anyone have an example implementation of a Cairngorm SequenceCommand class. I need to chain 5 of my asynch Command's together to perform anaction once _all_ 5 have completed execution. Am I wrong in expecting that a single SequenceCommand

Re: [flexcoders] Flash Player quality setting

2005-08-24 Thread superabe superabe
quality setting It's global so anywhere. However, do it it your Application's main method. - Original Message - From: superabe superabe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, August 22, 2005 8:51 PM Subject: Re: [flexcoders] Flash Player quality

[flexcoders] Flash Player quality setting

2005-08-22 Thread superabe superabe
Hello List, Anybody know how/where I can set the Flash player's quality property to best. This is for a Flex app. Typically for Flash I would set it in the object tags in the html container page, but am not sure how to do that for Flex Thanks, - superabe Yahoo!

Re: [flexcoders] Flash Player quality setting

2005-08-22 Thread superabe superabe
Where would you set _quality=BEST? on the Application tag ? in flex_config ? where :-) - superabe On 8/22/05, JesterXL [EMAIL PROTECTED] wrote: _quality = BEST; - Original Message - From: superabe superabe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, August

Re: [flexcoders] Re: Exchanging custom objects between Flex .NET

2005-08-04 Thread superabe superabe
ASObject or should we change them to Custom classes. 2)Does this hold good even for Java? i.e Do I have to use ASObject to exchange data from Java to Flex, or is it possible to pass custom classes itself from Java to Flex. Regards Priyanka superabe superabe [EMAIL PROTECTED] wrote

Re: [flexcoders] Exchanging custom objects between Flex .NET

2005-08-03 Thread superabe superabe
Hmm AFAIK, you cannot return a custom class from .Net back to Flex like that (yet)..I could be wrong here so if somebody knows otherwise...please do tell :-) Try this instead : //= public ASObject getEmployee(string au_id) { conn = new SqlConnection(data

Re: [flexcoders] Exchanging custom objects between Flex .NET

2005-08-03 Thread superabe superabe
sorry typo (or cut'n'pasto) === ASObject title = title.ASType = RemoteTest.Title new ASObject(); === SHOULD BE ASObject title = new ASObject(); title.ASType = RemoteTest.Title - superabe On 8/3/05, superabe superabe [EMAIL PROTECTED] wrote: Hmm AFAIK, you cannot return a custom class

Re: [flexcoders] Re: Returning an object Array from .NET to Flex

2005-07-29 Thread superabe superabe
I suspect the issue may be with the return type of the GetData method in your remoting class. ( I havn't run your code so am guessing here :) Since you are using Flash remoting, have you tried using the ASObject type to return back to Flex/Flash? This is normally handled decently by Flex/Flash

Re: [flexcoders] use diff themes(graphical skins) for 2 Accordion

2005-07-24 Thread superabe superabe
trueOverSkin:String; [Embed(yourSWF.swf#yourTrueDisabledIcon)] var trueDisabledSkin:String; } Then in the mxml set the AccordionHeader's headerClass like this mx:Accordion id=acc headerClass=MyHeader . your components /mx:Accordion On 7/23/05, superabe superabe [EMAIL PROTECTED

[flexcoders] use diff themes(graphical skins) for 2 Accordion

2005-07-23 Thread superabe superabe
Hello List, Is'nt there any way of specifying different theme skins to be used by diff instances of the same component? E.G. Accordion A has green graphical skins with a Icon on the top right. Accordion B has blue graphical skins with no Icon Form the docs it seem like we can specify only one

[flexcoders] Model class or equivalent at runtime

2005-06-13 Thread superabe superabe
Hi list, I understand that it is not possible to instantiate a Model class at runtime. Is there any other utility class in Flex that will convert Xml (nested nodes with attributes) to an object tree at runtime? Thanks, superabe Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Add mxml component to a Panel title bar

2005-06-09 Thread superabe superabe
. Dimitrios Jimmy Gianninas RIA Developer Optimal Payments Inc. From: superabe superabe [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 1:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Add mxml component to a Panel title bar Hi

[flexcoders] resize a child in a Tile after its drawn

2005-06-09 Thread superabe superabe
hi flexcoders, Is it possible to resize a child in a TIle after its been drawn on the screen? I know I can do this with the childCreationComplete event, but what i really want to do is Resize a child after the Tile has been drawn and laid out. e.g. (click a button should run through all/some

[flexcoders] Add mxml component to a Panel title bar

2005-06-08 Thread superabe superabe
Hi folks, Anybody know if its possible to add an mxml component like a checkbox, or a slider _inside_ the tile bar for a Panel. If so any tips would be appreciated. Thanks, superabe Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/