[flexcoders] Ambiguous reference to setStyle.

2007-10-22 Thread reflexactions
FB3 Issue: I have a class which needs to use the mx_internal namespace to access some things. Seperately this class also has a function that manipulates an AdvancedGridDataColumn. If I import the mx_internal namespace then all of a sudden just calling a simple setStyle on the column generates

[flexcoders] Binding visibility based on class property

2007-10-22 Thread Paul Steven
I want to set the visibility of an embedded swf file based on the property of a class Here is what I am trying but it does not work and I get a warning saying - Data binding will not be able to detect assignments to uploadingFile mx:SWFLoader visible={_session.uploadingFile}

Re: [flexcoders] Re: Flex is becoming unviable

2007-10-22 Thread Tom Chiverton
On Saturday 20 Oct 2007, [EMAIL PROTECTED] wrote: So how do I make my browser cache the swf? Every time I navigate to my app, the swf loads from the server. Assuming the file hasn't changed, this is wrong. Is your browser set to use a cache ? Of what size ? What headers is your web server

Re: [flexcoders] Binding visibility based on class property

2007-10-22 Thread Tom Chiverton
On Monday 22 Oct 2007, [EMAIL PROTECTED] wrote: Here is what I am trying but it does not work and I get a warning saying - Data binding will not be able to detect assignments to uploadingFile You need to add [Bindable] tags. -- Tom Chiverton. Are you a great Flex programmer, who knows

RE: [flexcoders] Binding visibility based on class property

2007-10-22 Thread Paul Steven
Thanks Tom - that sorted it good and proper!! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: 22 October 2007 09:45 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Binding visibility based on class property On

[flexcoders] Re: TabNavigator and includeInlayout

2007-10-22 Thread johantrax
Apologies for the late reply, I have been busy with some other project. I'll check out the superTabNavigator as suggested, will post subsequent data on failure. --Johan --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: includeInLayout is a flag on UIComponent and

[flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-22 Thread stephen50232
Hi guys, I've been reading through your comments, thanks for the help. I looked on the Livedocs as you mentioned and I saw that there is a remoting-config.xml file, so I wondered if that was the cause of the problems Im having. THen when I went to the wwwroot/web-inf/flex folder there is no

[flexcoders] Having duplicate rows in a chart

2007-10-22 Thread Mark Ingram
Hi, does anyone know how I can get duplicate rows in a datagrid / chart? I have a datagrid and chart (using xml data source) that looks like this: Monday 4 Tuesday56 Wednesday404 Thursday 3 Friday

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-22 Thread Tom Chiverton
On Monday 22 Oct 2007, [EMAIL PROTECTED] wrote: I've been reading through your comments, thanks for the help. I looked on the Livedocs as you mentioned and I saw that there is a remoting-config.xml file, so I wondered if that was the cause of the problems Im having. THen when I went to the

[flexcoders] AdvancedDataGrid Hierarchical data and columns

2007-10-22 Thread Scott - FastLane
I have an AdvancedDataGrid with a Hierarchical data provider. The Hierarchy is two levels deep. The top level objects have something like 5 attributes (columns) to display, while only the first attribute (descrtipion) applies to their children. It was easy enough to get the grid to display

RE: [flexcoders] Having duplicate rows in a chart

2007-10-22 Thread Sunil Bannur
If you use a categoryAxis, this is not possible. Try using a Datetime Axis and define a label function, to get the labels you want. Thanks -Sunil From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Ingram Sent: Monday, October

RE: [flexcoders] Having duplicate rows in a chart

2007-10-22 Thread Mark Ingram
Hi, using a DateTime axis isn't suitable because it won't always be a DateTime (it could be 1, 1, 1, 1, 1, 1 etc for the labels). However - you did give me an idea with regards to using the labelFunction property. I've now added in an [EMAIL PROTECTED] attribute to my xml. So test data now

[flexcoders] What EVENT should I capture - Tilelist data loaded / All tiles created ?

2007-10-22 Thread oneproofdk
In a Flex 2.01 app I create TileLists based on dynamic data. Afterwards the data comes rolling in from JSON data. Now I want to resize the canvas that the tilelist is placed inside... Actually it's placed inside a tabnav tabnavigatorcanvastilelist/// NOW... How can I capture an event when the

Re: [flexcoders] Problem with AdvancedDataGrid

2007-10-22 Thread Scott - FastLane
Have you tried AdvancedDataGrid.invalidateList() after you set the data? hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com reflexactions wrote: I am having an issue with the ADG. I have it set up and I load data into it say with 1 row and it displays fine

[flexcoders] Re: AdvancedDataGrid and setItemAt()

2007-10-22 Thread monkeeeh
Thanks! getItemIndex works not indexOf. But still I have one problem. i have ADG and arraycollection where all data is. Arraycollection have ordernumber, orderline, product etc. data. And i have grouped lines by ordernumber. If i edit line it moves to last. Is there possible to sort data by

Re: [flexcoders] Re: AdvancedDataGrid and setItemAt()

2007-10-22 Thread Scott - FastLane
You need to set the ArrayCollection.sort property... have a look at mx.collections.Sort and mx.collections.SortField. There are examples on this page http://livedocs.adobe.com/flex/2/langref/mx/collections/Sort.html that show how you can create a Sort with multiple SortFields. hth Scott

[flexcoders] Re: Detect fullscreen availability without engaging fullscreen?

2007-10-22 Thread John
Well, I generally develop in standalone, but the whole point of writing games in Flash is the portability, so I'd want a way to check that wasn't tied to a specific version of the flash player. What is Capabilites.playerType? From:

Re: [flexcoders] radar chart

2007-10-22 Thread Christophe Jolif
Hi Girish, If you are ok to wait for Flex 3.0 or use Flex 3.0 beta you can give a try at Elixir: http://flex.ilog.com it has a radar chart: http://visudemos.ilog.com/webdemos/radar/radar.html girish_ok wrote: Hi All, I want to develop a radar chart using FLEX 2.0.1. I didn't found any

[flexcoders] Re: Flex 3 DateTimeAxis - Problem with Disabled Days

2007-10-22 Thread imjackson84
Sorry for bumping my own message, but does no-one have any idea about this? It's quite important for the project I'm working on... Iain --- In flexcoders@yahoogroups.com, imjackson84 [EMAIL PROTECTED] wrote: I'm currently experimenting with the Flex 3 DateTimeAxis (for stock market data),

[flexcoders] Re: Joining two (or more) ArrayCollections

2007-10-22 Thread Hans
newAC:ArrayColleciton = new ArrayCollection(ac1.toArray().concat(ac2.toArray())); --- In flexcoders@yahoogroups.com, Andrew Mikkelsen [EMAIL PROTECTED] wrote: I've been searching and searching on this, but I can't seem to find an answer on how to do this. Surely, someone, somewhere must have

[flexcoders] Using HTTP Service over an Intranet? HELP Pls!

2007-10-22 Thread jiokoh
I am new to flex coding and I developed an application for a hospital using flex 2 and I used HTTP for the data service. But on deploying I ran into a problem. I could not access my application through the intranet. Even after I had wrriten a crossdomain policy file. Pls I need help

[flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Hi all, Got a bit of a tricky problem here that I'm banging my head against... If you assume I have some function that returns a Class object - for example: getAssetClass(id:String):Class This returns a Class object which, at some future time, will be called with new SomeClass() to

[flexcoders] Re: Problem with AdvancedDataGrid

2007-10-22 Thread reflexactions
Hmm didnt make any difference unfortunately. --- In flexcoders@yahoogroups.com, Scott - FastLane [EMAIL PROTECTED] wrote: Have you tried AdvancedDataGrid.invalidateList() after you set the data? hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com

[flexcoders] Scale image

2007-10-22 Thread Anzer
I want to make the bottom right corner of a picture dragable to scale the image. I am trying with http://www.rogue-development.com/objectHandles.xml and http://www.sephiroth.it/file_detail.php?id=154 but I would like to know if there are any other implementations. Thanks Anz

Re: [flexcoders] Re: Problem with AdvancedDataGrid

2007-10-22 Thread Scott - FastLane
Hmmm... well, since a column resize ends up displaying the data it certainly sounds like you are missing an invalidate. A couple of other things to try: invalidateDisplayList on the grid, or refresh() on the ArrayCollection after you alter the data. The following code may not be optimal...

[flexcoders] Re: dataGridColumn width problems

2007-10-22 Thread joshua gatcke
Thanks Alex, That worked perfectly! Such a simple solution, I love it. I guess I missed that property the 100 times I read the property list! lol. I hope that this post helps someone else in the future.

[flexcoders] Re: Using HTTP Service over an Intranet? HELP Pls!

2007-10-22 Thread oneproofdk
Could you tell us what the setup is? Can you access any files on the webserver ? Is it the httpservice that fails - and if so, what are the errors you see ? Please give us a better understanding of what's going on - then I'm sure that you will get some help. Regards, Mark

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Christophe Herreman
Hi Ian, maybe this will solve your problem (if I understood correctly): var clazz:Class = getDefinitionByName(com.domain.MyClass) as Class; http://livedocs.adobe.com/flex/2/langref/flash/utils/package.html#getDefinitionByName() regards, Christophe 2007/10/22, Ian Thomas [EMAIL PROTECTED]:

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Hi Christophe, Unfortunately not, but thanks. To explain, I'll copy a response email that I just posted to Flash_tiger: - I know of getDefinitionByName, but that won't work for me as I'm not returning back different class definitions - I'm returning the _same_ class definition each

[flexcoders] FormItemLabel style

2007-10-22 Thread diehlryan
I can style a FormItemLabel to be bold using a global style, but I can't figure out how to style a Form on a single component only and not affect the other forms throughout the application. I can get it working via ActionScript and using the StyleManager, but again, this affects all instances of

Re: [flexcoders] FormItemLabel style

2007-10-22 Thread Scott - FastLane
If you only want to set it for one label, can't you just set it on the label declaration i.e. mx:Label fontWeight=bold text=Your Label Text/ hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com diehlryan wrote: I can style a FormItemLabel to be bold using a

[flexcoders] Re: Fullscreen Flash and PopUpManager

2007-10-22 Thread kevin.gurton
Ideally, I wouldn't be using a size for the app - I'd be using 100% there as well. I'm only using 1024x768 because the app appears to be about twice as large as the screen when using StageScaleMode.SHOW_ALL. If I don't use 100% when embedding the movie, it isn't fullscreen. I want the movie to be

[flexcoders] DataGrid: column width and horizontal scroll

2007-10-22 Thread gers32
Hi, I'm having a hard time figuring out how to set the column widths of a DataGrid which is constrained inside its container (width=100% height=100%), has two locked columns (lockedColumnCount=2), and which I force to scroll horizontally (horizontalScrollPolicy=on). The DataGridColumn widths are

[flexcoders] Re: Problem with AdvancedDataGrid

2007-10-22 Thread reflexactions
Ah, I should have added that we are using a GroupingCollection rather than an ArrayCollection --- In flexcoders@yahoogroups.com, Scott - FastLane [EMAIL PROTECTED] wrote: Hmmm... well, since a column resize ends up displaying the data it certainly sounds like you are missing an invalidate.

Re: [flexcoders] Re: Problem with AdvancedDataGrid

2007-10-22 Thread Scott - FastLane
The sample that I posted for you is using a HierarchicalData as the dataProvider so there is some difference there. But, it still seems to me like you are only missing an invalidate since your data shows up on a column resize. To me that sounds like a missing invalidateDisplayList(). I did

[flexcoders] Share Code for Flex and Air projects

2007-10-22 Thread Dennis van Nooij
Hi, Our project here has to run on both the web and in Air and I'm looking for a solution how to structure my project. Lots of articles about how to convert a Flex project to Air, but it's all no way back. I found this link

[flexcoders] Re: Problem with AdvancedDataGrid

2007-10-22 Thread reflexactions
Thanks I will take a look. I seem to have found a work around for the moment, what I was doing was reset the source on the original GroupingCollection, calling refresh and then resetting the dataProvider. What seems to work is to create a new GroupingCollection each time instead of just

[flexcoders] Re: FormItemLabel style

2007-10-22 Thread diehlryan
I'm not trying to set it on a Label per se, I'm trying to set the style on the label that gets generated in a FormItem. mx:FormItem id=... label=User Id: I've tried setting the fontWeight style on the FormItem itself, but that will style the control as well as the label. --- In

[flexcoders] Container backgroundImage aligned to top left?

2007-10-22 Thread tddclare
Hey everyone, I'm trying to set a backgroundImage for a Container (well, a Canvas, but it looks like the BGimage stuff is handled in Container). I'd like the image to align itself to the top left, not the center which is the framework default. Has anyone come up with a good way to do this?

Re: [flexcoders] Re: FormItemLabel style

2007-10-22 Thread Scott - FastLane
I see. I wonder if you could do something like this: var children:Array = formItem.getChildren(); for each(child:DisplayObject in children) { if(child is Label) { child.setStyle... } } Just a thought... but, there is likely some easier way. Scott Scott Melby Founder, Fast

RE: [flexcoders] Share Code for Flex and Air projects

2007-10-22 Thread Samuel R. Neff
I'd suggest creating three projects, one for Flex, one for Air, and one Shared. Flex and Air project can reference Shared (either as a library or as a source path). That will also help prevent accidentally referencing Flex/Air specific code from something that's supposed to be Shared. HTH,

Re: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Daniel Freiman
I haven't been able to recreate this bug in another app even if the app is inside the same project and I call the exact same classes/methods that create the error. However, I did find that the StyleManager(Imp) doesn't have a DataGrid selector. On applicationComplete I call: var obj:Object =

[flexcoders] Re: Draw a straight line with your mouse

2007-10-22 Thread jensen.axel
thanks for the help here is the finished stuff. http://axel.cfwebtools.com/index.cfm/2007/10/22/Drawing-in-Flex-using-the-UIComponent-part-2-note-dynamic-classes-too --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Should be something like: class LineDragging

[flexcoders] Livecycle DS

2007-10-22 Thread Gregor Kiddie
Afternoon all, Does anyone on this list have any experience of deploying Livecycle DS over a clustered environment? This question arises from the 'Adobe LifeCycle Data Services ES Developer's Guide'. The sections around clustering, from page 481, imply that there are only 2 options

Re: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Daniel Freiman
Yup, _DataGridStyle isn't being added to the mixins in _app_mx_managers_SystemManager - Dan Freiman On 10/22/07, Daniel Freiman [EMAIL PROTECTED] wrote: I haven't been able to recreate this bug in another app even if the app is inside the same project and I call the exact same

Re: [flexcoders] Share Code for Flex and Air projects

2007-10-22 Thread Jeffry Houser
Create a Flex Library project (No AIR Libraries) for all 'generic' functionality. Write a Flex project that uses your library and an AIR project that uses your library. Dennis van Nooij wrote: Hi, Our project here has to run on both the web and in Air and I'm looking for a solution

RE: [flexcoders] Re: Draw a straight line with your mouse

2007-10-22 Thread Mark Ingram
It's probably worth noting that your class doesn't allow drawing a square from bottom right to top left... An easy fix tho :-) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jensen.axel Sent: 22 October 2007 16:16 To:

Re: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Daniel Freiman
It looks like _DataGridStyle wasn't being compiled into the project. I couldn't even access it manually. Creating a variable of type DataGrid in applicationComplete fixes the problem. I'll file a bug. Thanks for the help in tracking it down. - Dan Freiman On 10/22/07, Daniel Freiman [EMAIL

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Arul
Dear Ian, I understand your use-case, I also needed something similar Let me do a quick experiment and get back to you on this Regards, Arul www.shockwave-india.com/blog/ - Original Message - From: Ian Thomas To: flexcoders@yahoogroups.com Sent: Monday, October 22, 2007

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thanks Arul, The more I delve in to this and experiment with it the more I'm beginning to think it's not possible. Ben Stucki has an interesting post on a similar solution: http://blog.benstucki.net/?p=42 But it relies on you needing to know exactly which component container the resulting

Re: [flexcoders] Scale image

2007-10-22 Thread Steve Mathews
Try this one: http://www.senocular.com/index.php?id=1.372 It works great, and is skinable. On 10/22/07, Anzer [EMAIL PROTECTED] wrote: I want to make the bottom right corner of a picture dragable to scale the image. I am trying with http://www.rogue-development.com/objectHandles.xmland

RE: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Alex Harui
You would write a custom itemRenderer to show bitmaps instead of class instances. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent: Monday, October 22, 2007 8:47 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

RE: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Alex Harui
It may not be a bug. How does DataGrid the class get into the main app? Or is it coming in from a module? Do you have a multi-module topology? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Monday, October 22,

[flexcoders] Re: Share Code for Flex and Air projects

2007-10-22 Thread Dennis van Nooij
sounds good but some of my mxml components are 5 views deep. Meaning that all mxml files above the AIR / Flex specific files will be AIR / Flex specific to. :( in both the Air and Flex project I have to specify all specific Air /Flex mxml --- In flexcoders@yahoogroups.com, Samuel R. Neff

RE: [flexcoders] Container backgroundImage aligned to top left?

2007-10-22 Thread Alex Harui
I would put a canvas with an Image on the left and your other container on top of it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tddclare Sent: Monday, October 22, 2007 7:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thank you, Alex. But as I said, that's what I'm trying to avoid doing; it means that I can't supply runtime-created asset data via any other means than rewriting/extending every single Flex component that I need to do it for. That seems completely backwards, and seems an ill-thought-out strategy

RE: [flexcoders] DataGrid: column width and horizontal scroll

2007-10-22 Thread Alex Harui
Did you just try setting width and not minwidth? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gers32 Sent: Monday, October 22, 2007 7:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid: column width and horizontal

Re: [flexcoders] AdvancedDataGrid Hierarchical data and columns *** SOLVED ***

2007-10-22 Thread Scott - FastLane
The solution turns out to be very simple using rendererProviders... mx:AdvancedDataGrid mx:rendererProviders mx:AdvancedDataGridRendererProvider columnIndex=0 columnSpan=7 depth=2

RE: [flexcoders] What EVENT should I capture - Tilelist data loaded / All tiles created ?

2007-10-22 Thread Alex Harui
updateComplete fires every time it redraws. The dataprovider fires collectionChange when it changes From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of oneproofdk Sent: Monday, October 22, 2007 4:21 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Ambiguous reference to setStyle.

2007-10-22 Thread Alex Harui
public::setStyle From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of reflexactions Sent: Monday, October 22, 2007 12:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Ambiguous reference to setStyle. FB3 Issue: I have a class

[flexcoders] DataGridColumn - vertical styling...

2007-10-22 Thread qnotemedia
How can I set a selction style that runs vertically AND horizontally in a DataGrid? i.e. selecting a cell by default selects the entire row. I want one that selects both the row and the column.

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Arul
Dear Ian, Thanks for the links Right now I'm stuck in the same place as Josh Tynjala . old school style Function prototypes are not treated as Class. since flex components expect a class it fails But I'm going to dig further in the morning (now its 1 am in Singapore) Regards, Arul -

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thanks Arul - I've wrestled with it for about 6 hours now and am going to take a break for the night. A bunch of different avenues seem to be closed off: - You can't subclass Class - You can't replace the constructor() function of a class - You can't set any static data on the Class instance that

[flexcoders] LiveCycle Data Services running native on Mac OSX (instructions)

2007-10-22 Thread Duane Nickull
If anyone is interested in developing against LiveCycle Data Services (formerly Flex data Services) on a Mac, I posted some instructions on how to get it up and running.: http://technoracle.blogspot.com/2007/10/how-to-install-and-run-adobe- livecycle.html Duane Speaking only for myself

RE: [flexcoders] Livecycle DS

2007-10-22 Thread Dimitrios Gianninas
Hi Gregor, Yes we have used LCDS in a clustering environment and what is basically outline is what we have done to get LCDS to work as such: 1) using sticky sessions has nothing to do with LCDS per se, all our apps are configured this way. I would not want to have to review the logs for

[flexcoders] Re: Flex Builder cannot locate the required debug version of the Flash Player

2007-10-22 Thread Brian
I'm having the same problem. I've installed Flex Builder 2.0.1. I also had installed the SDK first, so I have the %%FlexSDKInstall%%\player\debug\Install Flash Player 9.exe, which I have also installed. I still get the same message: C:\Program Files\Mozilla Firefox\plugins\NPSWF32.dll Flex

Re: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Daniel Freiman
No modules. Also, _dataGridStylesStyle is compiled into the app (if that is relevant information). - Dan Freiman On 10/22/07, Alex Harui [EMAIL PROTECTED] wrote: It may not be a bug. How does DataGrid the class get into the main app? Or is it coming in from a module? Do you have a

RE: [flexcoders] Re: Flex Builder cannot locate the required debug version of the Flash Player

2007-10-22 Thread Thomas Spellman
I got this error when I upgraded my flash player to a newer version via the adobe flash site. I then had to get one of the newest debug flash plugins from the adobe download site. Now it works fine. T From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Sent:

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Daniel Freiman
Fill ClassFactory work? http://livedocs.adobe.com/flex/201/langref/mx/core/ClassFactory.html - Dan Freiman On 10/22/07, Ian Thomas [EMAIL PROTECTED] wrote: Hi Christophe, Unfortunately not, but thanks. To explain, I'll copy a response email that I just posted to Flash_tiger:

[flexcoders] Re: Dragging from Datagrid to Tree

2007-10-22 Thread jensen.axel
i have a blog post on this... includes code http://axel.cfwebtools.com/index.cfm/2007/9/7/Using-a-tree-with-drag-and-drop-FROM-a-grid --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: DataGrids have linear data and place into the dragsource a format called items. A tree

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Dan, Thanks for that; I don't think so (I'd already looked at it). As far as I can see it's only useful for things expecting a ClassFactory, not a Class. Cheers, Ian On 10/22/07, Daniel Freiman [EMAIL PROTECTED] wrote: Fill ClassFactory work?

RE: [flexcoders] Dynamic class creation?

2007-10-22 Thread Alex Harui
I repeat: the recommended practice is to use a custom itemRenderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Monday, October 22, 2007 11:13 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Dynamic

RE: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Alex Harui
I'd like to see the test case before you file the bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Monday, October 22, 2007 11:07 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DataGrid not

RE: [flexcoders] DataGridColumn - vertical styling...

2007-10-22 Thread Alex Harui
AdvancedDataGrid in Moxie. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qnotemedia Sent: Monday, October 22, 2007 10:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGridColumn - vertical styling... How can I set a

[flexcoders] does something like this exist?

2007-10-22 Thread Greg Morphis
I'm looking for an actionscript tester.. for example, I dont want to have to build, and run my app every time just to check what 6 % 2 is (for example). So does something exist that allows you to throw simple AS code at it and return a value? Thanks..

Re: [flexcoders] does something like this exist?

2007-10-22 Thread Scott - FastLane
Not sure if anything official exists... I keep a very simple flex project around on my dev box for trying out simple code ideas etc. I also find this useful for when I want to create a sample app to include along with questions I post to this list, etc. hth Scott Scott Melby Founder, Fast

Re: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Daniel Freiman
Unfortunately I haven't been able to get a test case to work. I already filed the bug (ASC-2894) this morning stating explicitly that I can't reproduce the problem outside the original application (Even other test applications in the same project don't have this problem). Basically its just

RE: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Alex Harui
The renderers, and icons in buttons are almost always class instances because embedding small assets and instantiating them is the fastest way of getting them on-screen. The notion of customizing bitmaps is less common as Flash is a better vector-graphics engine than a bitmap-engine. Also,

RE: [flexcoders] DataGrid not initializing default styles

2007-10-22 Thread Alex Harui
Can I see the code where you instantiate the DataGrid? Feel free to send it directly to me off-list. Remove [flexcoders] from the subject if you can. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Monday, October

[flexcoders] Re: Flex Builder cannot locate the required debug version of the Flash Player

2007-10-22 Thread Mike Morearty
See if this helps: http://www.morearty.com/blog/2007/04/16/new-flash-player-and-also-a-flex-builder-patch/ Note that if you run the beta of Flex Builder 3, then the Flex Builder patch won't be necessary. - Mike Morearty, Adobe Flex Builder team --- In flexcoders@yahoogroups.com, Brian [EMAIL

RE: [flexcoders] Re: Joining two (or more) ArrayCollections

2007-10-22 Thread Deepa Subramaniam
How timely! I just spoke about this at my MAX talk - the code example and supporting slides are on my blog: http://iamdeepa.com/blog/?p=7 Look for the code example and slides called Merged Collections. Basically what you want to do is write a custom collection that does the merging of your

RE: [flexcoders] Re: Detect fullscreen availability without engaging fullscreen?

2007-10-22 Thread Alex Harui
I thought that some player types didn't support fullscreen, although I think you can still turn it off some other way too. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Sent: Sunday, October 21, 2007 11:07 PM To:

RE: [flexcoders] Re: Fullscreen Flash and PopUpManager

2007-10-22 Thread Alex Harui
I don't have the recipe 'ready', but basically, the non-NO_SCALE stage modes never send resize events to the application, they simply scale the entire stage, expecting that everything fit within it. So, you have to pick a size for the stage, get the app to layout at that size so there is no

[flexcoders] What is StackTraceElement?

2007-10-22 Thread Derek Vadneau
I was looking into what I could do with error logging and throwing, and found StackTraceElement by pressing Ctrl+Space in Flex Builder 2. However, I can't find anything in the docs, nor anything Flex 2 or AS3 related on Google. I was able to Ctrl+Click it and found the definition in Global.as. In

[flexcoders] Re: DataGridColumn - vertical styling...

2007-10-22 Thread qnotemedia
Yikes...project is due today...nothing for Flex2? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: AdvancedDataGrid in Moxie. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qnotemedia Sent: Monday,

[flexcoders] All valid metadata tags?

2007-10-22 Thread Robert Csiki
Hello, If you look at this http://livedocs.adobe.com/flex/201/html/metadata_141_04.html documentation page, there are lots of valid metadata tags missing (just a couple of examples: Exclude, Managed). Why that? Where can I find the full list of documented metadata tags that are permitted in

[flexcoders] Setting the corner radius of one corner

2007-10-22 Thread marine4854
I have a tab navigator which needs to have a corner radius of 8. With a corner radius of 8, the top left corner leaves a gap between the corner and the tab. Does anyone know a way to specify a corner radius of 0 for one specific corner? Thanks in advance.

[flexcoders] Flex3 - LCDS anyone know status? Does it work?

2007-10-22 Thread John Menke
If somebody has it working can you pls give me a few pointers on how you got it running. Is there a web tier compiler for Flex3??

RE: [flexcoders] Re: Flex is becoming unviable

2007-10-22 Thread Matt Horn
For comparison, just going to Yahoo.com's main page results in 38 network requests with an aggregate file size of 261K. -matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Monday, October 22, 2007

Re: [flexcoders] All valid metadata tags?

2007-10-22 Thread Daniel Freiman
http://nondocs.blogspot.com/2007/04/metadata.html - Dan Freiman On 10/22/07, Robert Csiki [EMAIL PROTECTED] wrote: Hello, If you look at thishttp://livedocs.adobe.com/flex/201/html/metadata_141_04.html documentation page, there are lots of valid metadata tags missing (just a couple of

[flexcoders] Re: All valid metadata tags?

2007-10-22 Thread Robert Csiki
Thank you, Dan. Cheers!! Robert --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: http://nondocs.blogspot.com/2007/04/metadata.html - Dan Freiman On 10/22/07, Robert Csiki [EMAIL PROTECTED] wrote: Hello, If you look at

[flexcoders] Drag and drop

2007-10-22 Thread g07m5064
Hi, I not sure what is missing on my code. In addition to dragging a row from a datagrid to a listgrid I would like to have an image dragged to the listgrid. I am able to drag the image. However my dragEnter function is not working. I would appreciate any help you offer. Thanks in advance. Mathe

RE: [flexcoders] Re: DataGridColumn - vertical styling...

2007-10-22 Thread Alex Harui
There is no support for cell selection in DG in 2.x. You might be able to fake it somehow by overriding drawHighlightIndicator. Good luck. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qnotemedia Sent: Monday, October 22, 2007 12:59

[flexcoders] ItemEditor and tabbing

2007-10-22 Thread Richard Rodseth
In order to wire up a validator for in-place editing, I'm following this example: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=celleditor_073_17.html I know Alex has some blog entries discouraging the use of containers as item

[flexcoders] Re: ItemEditor and tabbing

2007-10-22 Thread Richard Rodseth
Not sure if there are any gotchas with this, but it looks like implementing IFocusManagerComponent, such that the setFocus() implementation calls setFocus() on the inner component does the trick. On 10/22/07, Richard Rodseth [EMAIL PROTECTED] wrote: In order to wire up a validator for in-place

RE: [flexcoders] Drag and drop

2007-10-22 Thread Alex Harui
Usually you have to call preventDefault() so the underlying component does not execute its default behavior. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g07m5064 Sent: Monday, October 22, 2007 1:46 PM To: flexcoders@yahoogroups.com

[flexcoders] RichTextEditor - Customizing the look

2007-10-22 Thread Austin Kottke
Hi, does anyone have any idea how I could customize the richtexteditor component so that it looks the way I want it to? I want to call the bold/ital/underline text directly through the richtexteditor class without having to use the stock component's look and feel. Mainly just use the

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thanks Alex. Bitmaps are only an example, here - any kind of derived Asset class suffers from the same issues. I can understand your comments about CSS skinning etc.; and that the Flex framework is designed for embedding. The particular situation I am working in requires - specifically - that

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Alex - again, thanks. Please see the other thread for a much fuller explanation. Cheers, Ian On 10/22/07, Alex Harui [EMAIL PROTECTED] wrote: I repeat: the recommended practice is to use a custom itemRenderer.

Re: [flexcoders] RichTextEditor - Customizing the look

2007-10-22 Thread Andriy Panas
Hi Austin, Click F3 on mx:RichTextEditor (RTE component) tag in Flex Builder 2 and study its source code to better understand its behavior. You can skinn toolbar buttons with a new graphics easily and decorate RTE's container with new CSS styles. But if you'd like to have a complete control

  1   2   >