Re: [flexcoders]How to create Heavy interface properly?

2006-02-13 Thread Stanislav Zayarsky
Matt, Thanks for the answer! I made experiments, and I decided to use auto creationPolicy, I will optimize my mxml and I think it will work fine. Best regards Stanislav On 2/13/06, Matt Chotin [EMAIL PROTECTED] wrote: With the queued policy you may want to specify the creationIndex to

[flexcoders] Automatic layout positioning

2006-02-13 Thread Alberto Albericio Salvador
Hi all, When defining non-basic form layouts, I need sometimes to hide/reveal extra information or editable areas. When doing this, I need the rest of the form to automatically rearrange, similar to setting the document.getElementById(foobar).style.display = none or = in HTML. If I try to

Re: [flexcoders] Automatic layout positioning

2006-02-13 Thread Abdul Qabiz
Hi Alberto,If you are using Flex 2.0, you can use:includeInLayout and visible property together to acheive this.Check out Manish Jethani's post, where he has talked about it. http://mannu.livejournal.com/319589.html (scroll down in the page to see).-abdulOn 2/13/06, Alberto Albericio Salvador

Re: [flexcoders] Automatic layout positioning

2006-02-13 Thread Alberto Albericio Salvador
Hi and thanks Abdul! I found the same solution looking at the help provided by the new FlexBuilder : visible + includeInLayout. Thanks again Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Abdul Qabiz escribió: Hi Alberto, If you are using Flex 2.0, you can use:

Re: [flexcoders] Datagrid to HTTPService - Pls help

2006-02-13 Thread Abdul Qabiz
Hi,Datagrid's dataProvider property contains the entire data. You can create a XML or property-value pairs by iterating over it. I don't remember if there is a direct way of doing.Had you been using RemoteObject etc, you could have passed the entire dataProvider array as it is. -abdulOn

[flexcoders] Cairngorm 2 SequenceCommand issues

2006-02-13 Thread Simon Barber
Hi, Here are 5 steps that lead to my issue. 1. The user types his username, password and clicks login. 2. The LoginEvent is dispatched with the user details. 3. The LoginCommand execute method is called and my Application Delegate calls the remote method on the server. 4. onResult callback is

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-13 Thread Carlos Rovira
That's my point too, this is not a war as java has this feature I want it in AS3. I'm only saying that many people needs the feature and they could find the hack very cumbersome. For this reason why not maintain the two flavours and let people choose what they want? Is too late in the Flex

[flexcoders] Desktop Flex

2006-02-13 Thread seesharpch
I am working on a Flex2 - .NET 2 projector tool to bring Flex to the Windows Desktop. http://www.seesharp.ch/projects/ssp/index.php It is in public alpha stage currently, new features are added weekly. I would really like to have some feedback or must-have-wish-list to drive the project into the

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-13 Thread Xavi Beumala
On 2/12/06, Michael Hansen [EMAIL PROTECTED] wrote: Please explain why Roger Gonzalez (last 4 lines) construct is a hack (other than different from the Java way)? Well, it's a bit difficult to me to explain this (I'm not english :P), but let me give a try... To start with I'm not saying

[flexcoders] Just a test

2006-02-13 Thread Xavi Beumala
It seems I'm not receiving mails nor mine are being delivered This is just a test mail... X. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To

RE: [flexcoders] About Webservices and XML request format

2006-02-13 Thread Pablo Apanasionek
Mark, thanks for your tip. Unfortunately, it didn't work out. Although the 'array-like' object traced OK, the SOAP message showed the property in NULL. --Pablo Apanasionek De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Mark WalesEnviado el: Viernes, 10 de

RE: [flexcoders] Cairngorm 2 SequenceCommand issues

2006-02-13 Thread Benoit Hediard
We have also faced this problem. In alpha 1, it looks like events dispatched by commands (extending EventDispatcher) are not caught by the controllers. Simple workaround, use the Application.application to dispatch events in commands. For example, in the SequenceCommand.as replace Line 123 :

RE: [flexcoders] Desktop Flex

2006-02-13 Thread Nick Weekes
Hi, Your site seems a bit light on details, so: what does this give me over a C# app with swf's embedded or linked to from my windows forms? Or is this a tool for people who don't have access to visual studio.net, but want to build .net/flex desktop apps? What is the driving

[flexcoders] Re: Desktop Flex

2006-02-13 Thread seesharpch
Hi, the tool is indeed intended for those Flex coders who need / like to have access to the filesystem and more and for all those Flex / Flash programmers who like to build Windows (.NET) desktop applications without having to learn another language than ActionScript 3. Alex --- In

[flexcoders] Desktop Flex

2006-02-13 Thread Alex Bernhard
I am working on a Flex2 - .NET 2 projector tool to bring Flex to the Windows Desktop. http://www.seesharp.ch/projects/ssp/index.php   It is in public alpha stage currently, new features are added weekly. I would really like to have some feedback or must-have-wish-list to drive the project into

RE: [flexcoders] Re: Desktop Flex

2006-02-13 Thread Nick Weekes
Thanks for the info Alex. I approach Flex .NET desktop apps in the opposite direction (I use C#), but I can see a lot of potential for AS/Flex developers to use your product. Good luck! Nick From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of seesharpchSent: 13

RE: [flexcoders] IFrame Example for Flex 2?

2006-02-13 Thread Jason Hawryluk
As I said all "seems" possible. With domains you can not talk to a domain outside your own domain (the domain the swf originates from) to an outside domain (www.yahoo.com) with out a cross domain xml file"physically" on the outside domain (very unlikely). So if the Iframehas a

[flexcoders] Re: Cairngorm 2 SequenceCommand issues

2006-02-13 Thread Simon Barber
Hi Beniot, I tried that workaround out with no luck. Have you managed to get it to work? --- In flexcoders@yahoogroups.com, Benoit Hediard [EMAIL PROTECTED] wrote: We have also faced this problem. In alpha 1, it looks like events dispatched by commands (extending EventDispatcher) are not

Re: [flexcoders] Re: Flex2 and Amfphp is it possible ?

2006-02-13 Thread Brian Lesser
Thanks Matt, It's much appreciated. I'm filing bugs on problems I find with NetConnection/AMF0 gateways/FCS/FMS so that might help minimize the work on legacy gateways while getting the essential bits done. Yours truly, -Brian Matt Chotin wrote: Pete and I discussed it the other day. He was

RE: [flexcoders] Re: About Webservices and XML request format

2006-02-13 Thread Pablo Apanasionek
Dave, That was it! I deleted the features setting of the WSCompile pointing to rpcliteral, so the WSDD and WSDL were built using RPC/Encoded and it worked wonderfully. Thank you very much for your tip and your time! ---Pablo Apanasionek -Mensaje original- De:

RE: [flexcoders] Re: Cairngorm 2 SequenceCommand issues

2006-02-13 Thread Benoit Hediard
We don't use the SequenceCommand, we dispatch directly our events from the commands. And it works fine. Have you tried to dispatch the event directly from the login command result handler? Ex. : Application.application.dispatchEvent(new SomeEvent()); Benoit Hediard -Message d'origine-

[flexcoders] Email System POP3/SMTP on Flex

2006-02-13 Thread Ahmed
Hello .. The Flex Email system published on the net is designed using Flex 2.0 and Cold fusion, and requires Cold Fusion Adapter. It there a Email System for POP3 and SMTP using Flex or Flash only without Cold Fusion ? Regards, Eng. Ahmed. -- Flexcoders Mailing List

Re: [flexcoders] declaring constants in an interface

2006-02-13 Thread Johannes Nel
this is what i ended up doing. lets take your event class as an example you have all the constants declared on it for the different type of events that is grouped under the base event (ENTER_FRAME etc) and this is all good. however if i have a bunch of classes that don't all extent a single

[flexcoders] Re: flex profiler

2006-02-13 Thread sof4real03
mm.cfg settings: ProfilingOutputFileEnable=1 ProfilingOutputDirectory={path to ProfilerData}\webapps\profiler\WEB-INF\ProfilerData FrameProfilingEnable=0 ProfileFunctionEnable=1 TraceOutputFileEnable=1 ErrorReportingEnable=1 By the way, I'm using Tomcat 5.5 with JDK 1.5. Does the profiler have

[flexcoders] Re: Cairngorm 2 SequenceCommand issues

2006-02-13 Thread Simon Barber
Yeah did that and it works fine, thanks for the heads up. --- In flexcoders@yahoogroups.com, Benoit Hediard [EMAIL PROTECTED] wrote: We don't use the SequenceCommand, we dispatch directly our events from the commands. And it works fine. Have you tried to dispatch the event directly from

[flexcoders] Re: Datagrid focusedCell issue.

2006-02-13 Thread Kevin Ewok
Yes, that is exactly what I was looking for. Thanks! --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: You can toggle the editable property on the datagrid. The following seems to provide what you want: function cellEditHandler(event:Object) : Void { var

[flexcoders] Paint cell of dataGrid in different color

2006-02-13 Thread Robson Thanael Poffo
hi people, I like to know how i can paint one cell of the dataGrid in different color. I receive the data of the dataGrid in one array and pass to the datagrid by binding. Thanks, Robson Thanael Poffo -- Flexcoders Mailing List FAQ:

[flexcoders] Loading SWF into my Flex Project

2006-02-13 Thread Jorge Antonio Diaz Gutierrez
Hi comunity. I need to load an entire SWF Project into my Flex Site. Any help or advice to do it. Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Spltting up code (best practice)

2006-02-13 Thread Jonathan Miranda
Alright, I have a main.mxml application file and an actionscript file that gets included. In the application lets say I have a Form, that I want to pull out into another file. Whats the best practice for how this is accomplished if the Form needs to reference ids in the main app,

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Roger Gonzalez
Embedding bitmaps doesn't usually produce a Sprite, it usually produces a SkinBitmap, which extends BitmapData. So, you can't do that coersion. (The usually qualification is because if you apply Scale-9 to your bitmap, you do get a Sprite-derived subclass.) -rg -Original Message-

RE: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Roger Gonzalez
Don't think of things as "inclusion" and "pulling in", think of it as cooperating components. You can use Application.application, but I think this leads to awful code. One slightly better mechanism is to pass the child component a direct handle to the things it might need to manipulate.

Re: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Anatole Tartakovsky
You can use #include statement the same way you would use it in C. That pretty much solves the issues of code separation. The way you slice itis very much up to your preferences - as it does not really serves the code partitioning, but rather readability purposes. The fun begins when you

[flexcoders] Re: Passing nested objects to ColdFusion via WebService

2006-02-13 Thread Jason Y. Kwong
*BUMP*Sorry for the repost, but I know that the Adobe folks were pretty occupied last week. Trying this one again...On 2/4/06, Jason Y. Kwong [EMAIL PROTECTED] wrote:I'm attempting to call a CFC from a Flex 2.0 app. I would prefer to use RemoteObject but our ColdFusion server is running on

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Dave Cook
Hi Rogers: Thanks for the quick reply. How should I alter the code below to make that work? Also, how do I apply a Sclae-9 to the bitmap. Im relatively new to Flex. Cheers, Dave From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez Sent:

RE: [flexcoders] how to display ruler in mx:Grid

2006-02-13 Thread Deepa Subramaniam
We also provide the HRule and VRule components which you can use to create a dividing line in a container. You can drop those two components into a container just like any other control (ie: as a child of your Grid container). deepa -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Jonathan Miranda
Got any place I can read more about RSLs? And using the #includehow do you include in my example? So the form would have #include ../../main.mxml while the main would have #include com/mine/form.mxml? _ Jonathan Miranda Flexible Master of the

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Dave Cook
Hi Roger: Does Scale9 work reliably with bitmaps? Or just movie clips. Cheers, Dave From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez Sent: Monday, February 13, 2006 12:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using

Re: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Anatole Tartakovsky
#include is the same format as C ie #include "../mycode/code.as" The link for RSL - http://www.macromedia.com/devnet/flex/articles/rsl.html- the article lists available syntax rules and explains tradeoffs - you can also read any article on dynamic linking for any other environment . HTH,

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Roger Gonzalez
Well, in general it doesn't work at all with bitmaps... Scale-9 scales things at their control points, and the control points for a bitmap are in the four corners... the unscaled zones. D'oh! However, I thought this was a pretty serious limitation, so I added code to Flex to allow you to

[flexcoders] RE: Paint cell of dataGrid in different color

2006-02-13 Thread Deepa Subramaniam
Hi - This question has come up many times on this list. Below is the cut paste from a previous email. Should get you on the right track. -deepa Changing the background color of a Datagrid Row in Flex I have heard this question many times and I don't think it is documented.

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Dave Cook
Hi Roger: Excellent! Do you have any examples of how to use this? This will be my last request and Ill investigate the rest on my own. Thanks for all your help. Cheers, Dave From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger Gonzalez Sent: Monday,

[flexcoders] overlapping series line chart - flex 1.5

2006-02-13 Thread Robert Brueckmann
Does anyone have an elegant solution on how to handle a line chart when, for example, we have 3 series in our line chartEquities, Assets, and a Total. 3 separate lines. In a specific case, Assets is 0 for all date points, so Equities and Total are exactly the same, hence their lines

Re: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Teoti Graphix
But my favorite (which requires a bit more work) is to make your application implement an interface that you define: I think this is a very good way also. As far as includes, don't laugh but, I would lean away from this technique because Flex isn't C. I have started using a Manager class to

Re: [flexcoders] RE: Paint cell of dataGrid in different color

2006-02-13 Thread Sreejith Unnikrishnan
I guess you meant the cell. You can use a cellRenderer to do that. The cellRenderer can define the display color of the cell. Sree - Original Message - From: Deepa Subramaniam To: flexcoders@yahoogroups.com Sent: Tuesday, February 14, 2006 12:43 AM Subject:

[flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Derek Vadneau
I just installed FB2 Beta 1 and created a project based on a project I built using Alpha 1 and I get this error: A file found in an actionscript-classpath can not have more than one externally visible definition. dataHolderClass;Main I understood that multiple classes could be written in one

Re: [flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Johannes Nel
your internal class must be outside the package, then it will work. a bit weird in my opinion since an internal class has not got a publicly visible accessor, but anywayOn 2/13/06, Derek Vadneau [EMAIL PROTECTED] wrote: I just installed FB2 Beta 1 and created a project based on a project

Re: [flexcoders] Spltting up code (best practice)

2006-02-13 Thread Anatole Tartakovsky
With Flex 2 interfaces are the mainstream approach - however, with static linking it is catch-22 - you need to include implementation at the same time you build "base" which pretty much erases separation of the code. It minimizes the size of the distribution and eliminates dependencies

[flexcoders] Datagrid sort Arrows

2006-02-13 Thread Jonathan Miranda
Anyway to start a DataGrid with these showing on initial load? _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your pieces. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Derek Vadneau
Thanks Johannes! On 2/13/06, Johannes Nel [EMAIL PROTECTED] wrote: your internal class must be outside the package, then it will work. a bit weird in my opinion since an internal class has not got a publicly visible accessor, but anyway On 2/13/06, Derek Vadneau [EMAIL PROTECTED]

Re: [flexcoders] A file found in an actionscript-classpath can not have more than one externally visible definition

2006-02-13 Thread Johannes Nel
as a side note, yopu touched the implementation of a singleton here, go check out the thread about private constructers and abstract classes, ignore allour other ramblings ;) and check all the adobe dudes posts. On 2/13/06, Derek Vadneau [EMAIL PROTECTED] wrote: Thanks Johannes!On 2/13/06,

RE: [flexcoders] overlapping series line chart - flex 1.5

2006-02-13 Thread Ely Greenfield
Robert -- the good news, this problem is dealt with in Flex 2 --- charts can display multiple datatips if the mouse is over multiple datapoints. The bad news is you're using Flex 1.5. You could try and mimic this behavior by rewriting the datatip behaviors yourself. You have the

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Roger Gonzalez
[Embed(source="images/mypicture.png", scaleGridLeft="5", scaleGridTop="5", scaleGridRight="75", scaleGridBottom="75")] Season the coordinates to taste, its a little picky... they need to be inside the perimeter of the image. -rg From: flexcoders@yahoogroups.com

RE: [flexcoders] Using Embed not working in Beta (worked in Alpha)

2006-02-13 Thread Matt Horn
FYI, scale-9 properties are described in the doc: http://livedocs.macromedia.com/flex/20beta1/docs/1229.html hth, matt horn From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roger GonzalezSent: Monday, February 13, 2006 4:43 PMTo:

[flexcoders] My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday!

2006-02-13 Thread Tracy Spratt
Title: My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday! Ive been quiet for the last few weeks because I was in super-production mode to finish this project. At the TWELVE Hotel in Atlantic Station in Atlanta, we put a thin client running a Flex kiosk application. The

Re: [flexcoders] My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday!

2006-02-13 Thread JesterXL
Title: My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday! Congrats buddy! - Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Monday, February 13, 2006 5:38 PM Subject: [flexcoders] My Flex 1.5 project went live at TWELVE Hotel in

[flexcoders] HTML in TextArea

2006-02-13 Thread jgraham_us
I want to use the htmlText to populate a TextArea, but I want to get the HTML from a external html file on my server. Whats the easiest way to load a HTML file in a String object? I have looked around and haven't found a straight foreward way to do this as of yet. Thanks --

Re: [flexcoders] HTML in TextArea

2006-02-13 Thread JesterXL
mx:String id=my_html source=your.htm / mx:TextArea htmlText={my_html} / - Original Message - From: jgraham_us [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 13, 2006 6:29 PM Subject: [flexcoders] HTML in TextArea I want to use the htmlText to populate a

[flexcoders] SharedObject.getLocal() Flex2 beta1

2006-02-13 Thread Teoti Graphix
Hello, has anyone had this problem in the beta? Taken from their help... ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml creationComplete=initApp() mx:Script ![CDATA[ import flash.net.SharedObject; public var mySO:SharedObject; [Bindable]

RE: [flexcoders] SharedObject.getLocal() Flex2 beta1

2006-02-13 Thread Geoffrey Williams
Copy and pasted that code and it works for me. Try a project clean and make sure the project has all of the library swcs. frameworks and playerglobal are the main ones I think. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Teoti Graphix Sent: Monday,

[flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Eric Raymond
I must be missing something, but I'm a bit confused as to the design of the Flash Security Model and crossdomain.xml. My main question is who is this model intended to protect? As I undestand it, this protects third party servers from disclosing their data to flash clients. That is, if you do

RE: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Dekayd Media Inc.
It protects Adobe from getting sued. That's what it is made for. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eric Raymond Sent: Monday, February 13, 2006 7:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Benefits of Flash

Re: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Anatole Tartakovsky
IMHO. it does not serve security purposes - the only thing it can be used for is license validation. Let us say you want to wrap access to yahoo financial services that has limits on number of free requests per IP address per day. The only way you bypass crossdomain.xml is by proxing all

RE: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread David Mendels
Hi, It has nothing to do with license validation. Others have answered this question numerous time on this list, but this is the first I have heard anyone think it has to do with license enforcement. It would be a gaping security hole to not do this. _David From:

Re: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Brian Lesser
Hi Eric, Consider the case where a company has servers protected by a gateway firewall. The servers should not be visible from the public Internet at all - only from within the corporate network. Now someone downloads a Flash movie onto a workstation inside the firewall. If Flash allowed you

Re: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Darron J. Schall
Eric Raymond wrote: My main question is who is this model intended to protect? It's for security of LAN data when a user views a .swf from a remote website. See: http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing No crossdomain on internal servers means the

[flexcoders] Modal Popup

2006-02-13 Thread Rajni
How to set any popup as modal for loader in which the whole application running not for the Application window in which it is running? -- Sent using Laszlo Mail. Try it yourself. http://www.laszlomail.com -- Flexcoders Mailing List FAQ:

[flexcoders] Tooltip for gridcolumns in a Datagrid

2006-02-13 Thread Rajni
How to set tootip for gridcolumns in a Datagrid? I have used showDataTips = true , but this does not work for some of the columns Tooltips is not coming at proper position on the screen... -- Sent using Laszlo Mail. Try it yourself. http://www.laszlomail.com -- Flexcoders Mailing List FAQ:

RE: [flexcoders] My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday!

2006-02-13 Thread Matt Chotin
Title: My Flex 1.5 project went live at TWELVE Hotel in Atlanta on Sunday! Awesome, congrats! Send us screenshots J From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Monday, February 13, 2006 2:39 PM To:

RE: [flexcoders] overlapping series line chart - flex 1.5

2006-02-13 Thread Robert Brueckmann
Thanks a lot Elyyour solution was actually what we came up with earlier this afternoon so I guess great minds think alike. J Thanks a lot and I cant wait to actually get some time to play around with 2.0I dont know where all these people get all this time to play!!! robert l.

Re: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread JesterXL
BTW, AJAX follows the same security model. The difference? The Flash Player can get around it with permission from the server (the server has a crossdomain.xml on it). AJAX can't. - Original Message - From: Darron J. Schall [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

RE: [flexcoders] Re: flex profiler

2006-02-13 Thread Matt Chotin
I admit to not having tested the profiler with 1.5, my server has always run 1.4, might be worth checking that as well. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sof4real03 Sent: Monday, February 13, 2006 7:47 AM To:

[flexcoders] Embedding pdf doc with the help of Flashpaper in Flex1.5

2006-02-13 Thread Robs
Hi all, Is it possible to embed a pdf using flashpaper2 in flex1.5? Thanks! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group

RE: [flexcoders] Re: Passing nested objects to ColdFusion via WebService

2006-02-13 Thread Matt Chotin
Im not sure why CF running on Linux is a problem. Maybe the installer only supports Windows at the moment but everything that it drops could probably just be copied over. Can you turn on additional logging for CF? Im not a CF user so I dont know what youd need to do. Clearly the CFC

RE: [flexcoders] Tooltip for gridcolumns in a Datagrid

2006-02-13 Thread Matt Chotin
Do you have the dataTipField or dataTipFunction set? If the text of the cell is completely visible and the dataTip value matches the cell value I don't think the tip will show. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajni Sent:

RE: [flexcoders] Datagrid sort Arrows

2006-02-13 Thread Matt Chotin
Call placeSortArrow() on the DG and assuming the Sort was assigned to the Collection it will do its best to place it. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Monday, February 13, 2006 12:06 PM To:

RE: [flexcoders] Modal Popup

2006-02-13 Thread Matt Chotin
Pass the Application as the parent window for the popup. But you can only cover the movie itself, it's not like you can take over the browser... Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rajni Sent: Monday, February 13, 2006 7:37 PM

RE: [flexcoders] SharedObject.getLocal() Flex2 beta1

2006-02-13 Thread Matt Chotin
Hmm, compiled for me in a current build, havent tried on the beta though. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Teoti Graphix Sent: Monday, February 13, 2006 5:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]