RE: [flexcoders] Cairngorm release dates

2007-06-15 Thread Dimitrios Gianninas
No 100% accurate but: 2.2 - April 2007 2.1 - October 2006 2.0 - June 2006 0.99 - May 2005 0.95 - September 2004 Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gur_sukh Sent: Thursda

[flexcoders] styling for a component library

2007-06-15 Thread Jacob Wright
Hi! I am putting together a component library and am looking for direction on the way to include styles. I am mostly extending existing Flex components, adding a little new functionality and new default skins. I would like for the components to look right in Flex Builder when dragged onto a new F

Re: [flexcoders] Big flex web

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Darron J. Schall wrote: > That said, I don't think every project needs to use modules, but > deciding not to use them just because you don't have a load-on-demand > scenario is shortsighted when thinking about all of the other benefits a > modular architecture bring to the ta

Re: [flexcoders] Big flex web

2007-06-15 Thread Darron J. Schall
Tom Chiverton wrote: > Only if most people won't use that particular panel. > There's no point shaving a bit off the initial load time if most people have > to wait for a Module to load at a later time. > I think that's an unfair assumption. Choosing to use modules in an architecture is more

[flexcoders] Re: [CHARTING COMPONENT] Issue in combining Interpolate effect and Chart type sw

2007-06-15 Thread Claude Hussenet
Thank you Sunli. Which effect and parameters will u suggest me to use for the hideDataEffect so I am getting the same user-experience if the showDataeffect would work ? Thank you for your help. -Claude --- In flexcoders@yahoogroups.com, "Sunil Bannur" <[EMAIL PROTECTED]> wrote: > > One of t

RE: [flexcoders] Flex Remoting and complex objects

2007-06-15 Thread Peter Farland
AS3 doesn't have the concept of generics, so yes, all collections should be instances of mx.collections.ArrayCollection by default. Types like mx.collections.ArrayCollection can only really be sent and received properly by AMF3, so any remoting endpoint would have to understand this version of the

RE: Dee Copy...Re: [flexcoders] Re: How to clone object?

2007-06-15 Thread Peter Farland
We've addressed this on flexcoders a few times before in the past. You simply use ByteArray to clone an object or array. var array:Array = [1, 2, 3]; var ba:ByteArray = new ByteArray(); ba.writeObject(array); ba.position = 0; var cloned:Array = ba.readObject() as Array; You always use writeOb

Re: [flexcoders] Force Tree to redraw using custom itemEditors

2007-06-15 Thread Charles Galpin
On Jun 14, 2007, at 2:16 PM, rottmanList wrote: I am using a custom item renderer that basically allows the user to change the label of any leaf nodes inside of that tree. The leaf nodes are physical files inside folders and on itemEditEnd it updates the filename, however what isn't gettin

[flexcoders] Problem with showDataTips in LineChart

2007-06-15 Thread mvbaffa
Hi, I have a LinheChart that simply does not show the Data Tips. I have already developed a dataTipFunction but it does not work. By the way the itemClick event does not work too I cannot understand the dataTip and itemClick are working perfectly in a ColumnChart. Did any of you had the same

Re: [flexcoders] Storing Values

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Christopher Olsen wrote: > Does flex have something similar to cookies? http://livedocs.adobe.com/flex/201/langref/flash/net/SharedObject.html -- Tom Chiverton Helping to challengingly harvest eigth-generation data on: http://thefalken.livejournal.com

Re: [flexcoders] Storing Values

2007-06-15 Thread Charles Galpin
On Jun 15, 2007, at 9:13 AM, Christopher Olsen wrote: Does flex have something similar to cookies? Yup. flash.net.SharedObject hth charles

[flexcoders] Event listening and broadcasting

2007-06-15 Thread sarah_e_boys
Can anyone point me to some example code or explain how I might listen for an event in a custom component that is broadcast by another custom component? The basic nesting of my components in the application are as follows: I broadcast an event in the filter component which I want to

Re: [flexcoders] Paid research at Adobe SF

2007-06-15 Thread Jon Bradley
I'd be happy to participate in any of your feedbacks - it can only help us out. Heck - I don't get that kind of benefit even as a platinum Maya member with Autodesk!! Well, kinda... Unfortunately, there's a lot of us not located near CafeTownsend, :o), so how about feedback sessions that we

[flexcoders] Storing Values

2007-06-15 Thread Christopher Olsen
Does flex have something similar to cookies? -Christopher

[flexcoders] Re: Number column in DataGrid

2007-06-15 Thread headjoog
The data provider for the grid is "masters" an ArrayCollection. The form uses "master" which is an Object. I had to include the Number(txtMasterRate.text) in the Binding or I get the type coercion error when trying to save back to the database. It almost works - when I make an entry in the form

Re: [flexcoders] borderSkin is ignored if the backgroundColor is not set?

2007-06-15 Thread Michael Schmalle
Hi Brian, 2. ... If there is no backgroundColor defined it is NaN which will not render in the drawRoundRect() method. 3... Stupid question but, have you made sure all other vars are not null that are being passed to the drawRoundRect() method? That example has to work, can you paste all of y

Re: [flexcoders] bulleted list in Flex 2.01?

2007-06-15 Thread keith
You can simply set "condenseWhite" property to true to get rid of the unwanted space from the markup. -- Keith H -- Joan Lafferty wrote: Ric, This does seem to work in Flex 2.0.1: Each bulleted item seems to have too much space in between them though which

Re: [flexcoders] Flex 3 fractional scroll on List?

2007-06-15 Thread Jon Bradley
On Jun 14, 2007, at 5:56 PM, Alex Harui wrote: How about the excuse/reason that we don’t want to generate a renderer for every item in your dataprovider, and if they had variablerowheight, we’d never get the scrollbar parameters right? I do echo Troy's thoughts on the list controls and their

[flexcoders] Embedding and retrieving images from an XML

2007-06-15 Thread Shameer Salim
Hi, I am a new flex user. I have an XML file. I want to embed some images in an XML file and display it on a flex application. What should i do for that. If u have any eg., it'll be really helpful for me. My application is something similiar to RoamerDemo using springchart. Instead

[flexcoders] Re: SWFLoader weirdness when using separated applicationDomain

2007-06-15 Thread pavel.simek
If I understand this problem... For example when loading Moxie app into an Flex2 app (using the same or child app domain, as nothing else is possible), we can expect unpredictable problems. IMHO the whole idea of separated ADs have very limited use now. Adobe could solve this problem very easy

[flexcoders] List duplicate entry bug

2007-06-15 Thread nolanlove
Multiple non-unique values in a List control seem to confuse it. Try selecting the second item in the List below: http://www.adobe.com/2006/mxml"; layout="vertical"> [Bindable] public var listData:Array = ["alpha", "beta", "beta", "gamma", "delta"];

[flexcoders] borderSkin is ignored if the backgroundColor is not set?

2007-06-15 Thread Brian Morearty
Hi friends, I'm seeing the following behavior: if a component's backgroundColor is not set, its borderSkin is completely ignored--even if the borderSkin does not care about the backgroundColor. This seems wrong to me. Does anyone have information about whether this is the correct behavior? Exam

[flexcoders] Re: Add series in lineaChart [ Help Ely ]

2007-06-15 Thread ricoterox
Thanks for answer me... but I need to show more than 2 series. I need to show, all the added item in the second list. For example. If in the second list exist 4 elements .. I need to show 4 lines series. Do you understand me? Thanks

[flexcoders] Flex Remoting and complex objects

2007-06-15 Thread khmerang
Hi all, I'm beginner with Flex, but have quite a lot experience with .Net. We have been testing to move some complicated UI to Flex using Fluorine as the remoting host. Almost everything seems to be working fine, but sending complex objects from Flex seems to have some serious issues. We have valu

[flexcoders] Adding items to arrayCollection

2007-06-15 Thread darenbell
I'm about to pull my hair out trying to determine exactly how to add items deep into an arrayCollection. Below is some sample code (with irrelevant code removed for brevity) in which I'm trying to add a link name to a list of links inside of XML that I've pulled via HTTPService. How exactly, can

[flexcoders] Re: Help Request : Deferred Instantiation and Bound SWFLoader

2007-06-15 Thread ibid049
Quite possibly not. While I'm a reasonably experienced web programmer, I'm completely new to Flex, so if there's a better or more standard way of doing what I'm trying to do, I'm all for it. What I actually need is to take a dynamically generated list of filenames (populated via RemoteObject),

[flexcoders] Re: Help Request : Deferred Instantiation and Bound SWFLoader

2007-06-15 Thread ibid049
Assuming that theory is correct, do you have an idea how I should fix it? I've got a band-aid in place, which is to set creationPolicy="none" and then at the end of populating the array, call createComponentsFromDescriptors() on the ViewStack, but there's three problems with that: 1) I'm loa

[flexcoders] Paid research at Adobe SF

2007-06-15 Thread msliberty6833
Adobe User Research would like to talk to Flex developers next week in our historic San Francisco office. We know your time is valuable, so in exchange for your coming to our office on Townsend Street (at 7th Street) for about an hour, we would be happy to give you $100. To see if you qualify

RE: [flexcoders] Flex 3 Beta is now available!

2007-06-15 Thread Matt Chotin
If you have a FB2 license it will last until well after we hope to ship our next milestone. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Thursday, June 14, 2007 6:43 AM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] VerifyError when loading a module

2007-06-15 Thread Alex Harui
Make sure the modules have been built with the same libraries. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Thursday, June 14, 2007 12:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] VerifyError when loading a

[flexcoders] Advanced tooltips

2007-06-15 Thread borekbe
Does anyone know of any Flex component for advanced tooltips? For user interaction, I prefer non-obtrusive tooltips rather than Alert pop-ups but I obviously need more functionality than just text and some basic formatting. There are many such components for HTML/JavaScript but I didn't find anythi

Re: [flexcoders] setFocus on TextInput created in AS

2007-06-15 Thread Charles Galpin
On Jun 15, 2007, at 1:05 AM, Joan Lafferty wrote: You can call setFocus() on the creationComplete event for the TextInput. Thanks Joan! That's exactly what I was looking for. charles

Re: [flexcoders] Big flex web

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, Giro wrote: > I need to take some considerations about it? I can make a unique swf, or is > best to load external swf, and divide each panel in one swf? Only if most people won't use that particular panel. There's no point shaving a bit off the initial load time if most peop

[flexcoders] Flex 3 Localization

2007-06-15 Thread Victor Ayon
Hello , I just had a very small time to play around with Flex 3, but I have question that I ha vent been able to find it anywhere, I know localization in Flex 3 is improved because now you can switch languages on runtime, but my question is this, lets say I have a website and I want it to be meta

[flexcoders] Re: Embed html with iframe problem

2007-06-15 Thread wpding
you can find the source here source --- In flexcoders@yahoogroups.com, "Mark Ingram" <[EMAIL PROTECTED]> wrote: > > I get a 404 error when trying to view the source. > > > > > > > > From: flexcoders@yahoogro

[flexcoders] Big flex web

2007-06-15 Thread Giro
I start a big flex project, a complex web with many components principally based in Panels. I need to take some considerations about it? I can make a unique swf, or is best to load external swf, and divide each panel in one swf? Any recommendation. Thk. Giro.

Re: [flexcoders] Collapse/expand panel

2007-06-15 Thread Tom Chiverton
On Friday 15 Jun 2007, sharad_srivastava2000 wrote: >Actually i need a accordion kind of stuff but the catch is > it should be able to open more than one child at a time if > required.(although Accordion can open only one.Thats y i`m going for > this approach using many exp/coll panels)

Re: [flexcoders] Flex 3 apache module on OSX?

2007-06-15 Thread Tom Chiverton
On Thursday 14 Jun 2007, John Robinson wrote: > Anyone? Anything in the Apache log ? -- Tom Chiverton Helping to assertively streamline next-generation ROI on: http://thefalken.livejournal.com This email is sent for and on behalf of Halliwel

Re: [flexcoders] Getting styleNames at runtime?? ( CSSStyleDeclaration::getExplicitStyleNames() )

2007-06-15 Thread Tom Chiverton
On Thursday 14 Jun 2007, Aldo Bucchi wrote: > Any ideas? The StyleManager. What are you trying to do ? -- Tom Chiverton Helping to challengingly streamline transparent m-commerce on: http://thefalken.livejournal.com This email is sent for

[flexcoders] Dynamic Datagrid Height

2007-06-15 Thread smustafa77
Hi everybody, We have a datagrid which has a fixed number of rows. But since the row height is variable the grid height vary's. So either it brings in empty rows when rows heights are less due to less row data or else it brings in vertical scrollbars when rows have larger data. Is there some wa

[flexcoders] Magnifier using flex

2007-06-15 Thread sharad_srivastava2000
Hi Guys, I need some help in flex.Anybody has amde any kind of magnifier using flex.I need a rectangular magnifier kind of stuff which when moved on data grid should highlight(make that bold) the row contents.Can anybody suggest me how to go for it. regards Sharad

[flexcoders] Collapse/expand panel

2007-06-15 Thread sharad_srivastava2000
Hi Guys, I`m new to flex and need some help in making a collapse/expand panel.I have made it but when i`m placing several such panels on top of another i`m not able to remove the space between them although i have tried removing paddding,margin etc. Actually i need a accordion ki

Re: [flexcoders] SWFLoader weirdness when using separated applicationDomain

2007-06-15 Thread Oleg Filipchuk
If I understand this problem... for example when loading Moxie app into an Flex2 app (using the same or child app domain, as nothing else is possible), we can expect unpredictable problems, right? IMHO the whole idea of separated ADs has very limited use now (or the question if it has it at all...

Re: [flexcoders] Printed content had vertical bar

2007-06-15 Thread Tom Chiverton
On Thursday 14 Jun 2007, Alex Harui wrote: > Did you try a "hello world" app with backgroundColor="0xFF"? If I don't use a print view, but construct the print component in AS inside the doPrint() method (before calling flexPrintJob.start()) then all is well, that's about as far as I've got

[flexcoders] Is Microphone.getMicrophone() broken in AS3 / FP9?

2007-06-15 Thread Dirk Eismann
Anyone here with experience when using Microphone.getMicrophone() in Flex / AS3 when multiple Microphones are attached to the system? In contrast to Camera.getCamera() (which always gives a reference to the currently selected Camera as specified by th euser in the FP Settings Panel) Microphone.get

RE: [flexcoders] > FLV file reader

2007-06-15 Thread Dirk Eismann
Something like this? http://www.richapps.de/?p=48 Dirk. > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer > Sent: Friday, June 15, 2007 6:33 AM > To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] > Subject: [flexcoders] > FL

RE: [flexcoders] > FLV file reader

2007-06-15 Thread Dirk Eismann
> -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer > Sent: Friday, June 15, 2007 6:33 AM > To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] > Subject: [flexcoders] > FLV file reader > > Hi > > Anyone know some AS3 classes f

[flexcoders] Re: How to clone object?

2007-06-15 Thread sgrace99
How about mx.utils.ObjectUtil.copy ??? --- In flexcoders@yahoogroups.com, "williamkusumo" <[EMAIL PROTECTED]> wrote: > > How do you clone/make copies of an object? I see some clone() > functions in the docs, but they are all part of some unrelated class > like Events. > > Any help is greatly ap