[flexcoders] Re: file download doesnt work?

2007-02-26 Thread TJ Downes
For anyone who may not have found the answer to this problem, I am pretty certain this will solve your problems: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=3637d5c3 TJ --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: > > I have the code below to

[flexcoders] setFocus - help needed

2007-02-26 Thread dffmyco
Three text input controls. Tab enabled, tab index 1,2,3. On the focus out of text control three I run a function to set focus back to text control 1. Text control 1 gets the focus(blue outline) but the cursor is not displayed until I click on the box. What do I have to do to have the cursor app

[flexcoders] coldfusion wizard

2007-02-26 Thread bghoward3
hello i have succesfully used the coldfusion wizard to connect to mysql db and read the required information on a master/datagrid page, however when i try to launch the detail page or if i make a master/detail page and select a record from which to populate the details with i recieve an error

[flexcoders] Storing / retrieving rich text

2007-02-26 Thread pdflibpilot
I am trying to develop a method to allow web administrators to be able to edit text in their Flex application directly in the UI (without Flex). This text gets saved to mySQL when they close the rich text editor. The data is stored correctly in mySQL however when its retrieved it gets formated a

[flexcoders] Timers Not Firing

2007-02-26 Thread Daniel Thompson
So, I tried to post this over to Flashcoders, but something funky is going on over there. I would like to try here, as it is an ActionScript 3 question, and I think the people here may be able to help. However, this is just an ActionScript project for now (hopefully, not for long). I posted earlie

Re: [flexcoders] Security error after moving project

2007-02-26 Thread Guy Morton
Fixed the problem. Had to manually add my new project bin path to ~/ Library/Preferences/Macromedia/Flash Player/#Security/ FlashPlayerTrust/flexbuilder.cfg. This should have happened automatically but I suspect Flex builder 2.01 (on Mac at least) is a little flaky when it comes to moving pro

[flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread helihobby
As always, Thank you for all the help and support. Regards, Sean - http://www.HeliHobby.com P.S. You can read my solution for Flex Component communication here: http://www.helihobby.com/html/alon_desingpattern.html --- In flexcoders@yahoogroups.com, "helihobby" <[EMAIL PROTECTED]> wrote: > >

[flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread helihobby
Found the solution from a guy who emailed me ... thx This is what worked for me: yourDataGrid.addEventListener(ListEvent.ITEM_CLICK, setColumnCopy); function setColumnCopy(){ _selectedCol = yourDataGrid.columns[event.columnIndex].dataField; Alert.show(yourDataGrid.selectedItem[_selectedCol]);

[flexcoders] loading a swf file and dynamic symbols

2007-02-26 Thread Mark
I have a swf file with a number of symbols that I'd like to display dynamically. I have a repeater with an Image component. The repeater is binded to an Array of text that mimics the symbol names in my SWF. This Array is dynamically populated with the symbol binded to the currentItem of th

[flexcoders] Re: CurrencyFormatter applied to LineSeries

2007-02-26 Thread marc_rossi
Ely, thanks for the reply. That is exactly what I am trying to do (datatip & axis label). For some reason I was trying to make things more complicated and use a labelRenderer. After trying your suggestion things are working great. Thanks again, Marc --- In flexcoders@yahoogroups.com, "Ely Gr

[flexcoders] Security error after moving project

2007-02-26 Thread Guy Morton
Hi there Can someone please help me? I've moved my project in my local filesystem (to add it to my checked-out CVS repos) and now my network connections fail: [RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTP"]

[flexcoders] The complete component communication solution for Flex. ALON DP.

2007-02-26 Thread helihobby
The Flex Framework is a powerful and rich environment. However due to its complex and elaborate event driven architecture it is easy to loose control and it is hard to maintain a clear communication among all components and objects. To solve this, I came up with the ALON Design Pattern and I w

RE: [flexcoders] Re: Time Based State Transitions

2007-02-26 Thread Karl Johnson
User a timer in actionscript that fires every 10 seconds. In the event handler for the timer, add the logic to modify the state. And for the fade, add a transition effect on the states (just use "Fade"). Does that help? Karl Cynergy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

[flexcoders] Transitions Explanation

2007-02-26 Thread Neil Middleton
Can anyone explain transistions to me as I'm currently having trouble "getting" it. I have the code below which is working almost exactly as I expect - except for an issue with the appearing button control in the panel. I would expect this button to Fade in as the Resize finishes, but there is o

[flexcoders] Re: Time Based State Transitions

2007-02-26 Thread nextadvantage
--- In flexcoders@yahoogroups.com, "nextadvantage" <[EMAIL PROTECTED]> wrote: > > How would I go about changing view states say every 10 secs... with a 1 > sec fade? > Any help with this would be much appreciated, thanks Aaron

[flexcoders] How do I prevent the user from selecting text in a text area component?

2007-02-26 Thread Robin Burrer
Hi there, How do I prevent the user from selecting text in a text area component? I noticed that it does not have a "selectable" property and does not derive from the Text object either. Robin

[flexcoders] Looking for Flex Developer

2007-02-26 Thread jeffrey_lage
All, I am looking for an experienced Flex developer to join a rapidly growing startup that is building cutting edge applications for the financial services industry. If you are interested, drop me a line at [EMAIL PROTECTED] Thanks -Jeff

RE: [flexcoders] Compressed result from webservice

2007-02-26 Thread Carson Hager
You can use gzip compression on the web server. Flex fully supports this through the browser without any extra coding. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTEC

[flexcoders] Compressed result from webservice

2007-02-26 Thread Ron
I would like to have my XML result from my ASP.NET webservice compressed and sent to my flex code that needs to uncompress this. How do I accomplish this? Should I compress the XML son the server and base64 it into a string and send back as a new string? Then somehow unbase64 it and uncompress

RE: [flexcoders] Re: Cairngorm FDS Sample

2007-02-26 Thread Dimitrios Gianninas
Ok I'll chime in here since I use FDS with Cairngorm. Examples taken from the first Flex 2.0 app we built. First off we initialize the DS in the model that it relates too: public class ConsumerModel { public var consumerDS:DataService; public function ConsumerModel() { cons

[flexcoders] Re: Compiler problem markers...

2007-02-26 Thread dansadley
Guys, I had this problem as well and found this post while trying to resolve it so when I fixed it, I thought I'd post back. Here's my understanding and my "cludge" of a solution. Eclipse allows you to add resource markers to the source files. http://help.eclipse.org/help32/index.jsp? topic=/

[flexcoders] Using Flex Components in an ActionScript Project

2007-02-26 Thread August Gresens
Hello We're putting together an "ActionScript Project" with FlexBuilder and would like to use the TextArea component. We've had success including the proper libraries and getting this to compile, but it doesn't show up when added an instance of TextArea to a DisplayObjectContainer (a Sprite). D

[flexcoders] Looking for some web developers for a small project

2007-02-26 Thread Robert Walters
Hello, I am looking for about 20 web developers to help me with a small web project. Any web language, any level of developer. And you can make some money as well. Drop me an email at [EMAIL PROTECTED] for more info ThanksRob

RE: [flexcoders] Strange behavior with Apache/Tomcat over SSL

2007-02-26 Thread Carson Hager
This is a known issue with IE, HTTPS and Auth headers. Add the following to your context.xml in meta-inf. Restart tomcat and it will start working for you. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com

[flexcoders] Strange behavior with Apache/Tomcat over SSL

2007-02-26 Thread Steven Toth
I have Apache and Tomcat integrated using mod_jk (ajp13). I also have mod_ssl loaded in Apache. I have a web application in Tomcat that is protected via forms authentication. The Main page of the web application displays a Flex app. Everything works fine over HTTP, I'm prompted to authentica

[flexcoders] ArrayCollection.filterFunction assigned but returns null

2007-02-26 Thread ben.clinkinbeard
I've got a filterFunction assigned, the DataGrid that is bound to the ArrayCollection shows the correctly filtered list, and debugging shows that the source Array has 10 items while the collection only has 3. However, myCollection.filterFunction returns null. Anyone have an idea of what could be g

[flexcoders] Re: Cairngorm FDS Sample

2007-02-26 Thread billy_d_white
So far I'm finding that using FDS mixed with Cairngorm is pretty difficult. 1. When I define my services in the services.xml file, if I specify 'autoSyncEnabled' in the XML declaration, it throws a null pointer exception. It looks to me like things are getting initialized out of order. 2. I've

[flexcoders] Re: Cairngorm FDS Sample

2007-02-26 Thread auddaraj
Thanks for getting back & posting your sample, Jeff. Yes Cairngorm store uses remoteobject which requires FDS, however they don't make you data management services. I would be intersted if any one might have any tips or sample app using data management services with Cairngorm. --- In flexcoder

[flexcoders] text line height

2007-02-26 Thread Pablo Samela
Hi, I want to know how can I set the line height to a text component. I tried to use the leading property, but It´s not the minimun necesary. Thanks, Paul

[flexcoders] Re: FDS with Java Question: Why is it grouping requests?

2007-02-26 Thread billy_d_white
Excellent! Thanks Dimitrios, that was the missing piece. Now I just have figure out why my 'fault' method is getting called twice for each call after the initial call. When I delete an item (which should fail), it calls the fault method in my responder. Then, for every subsequent delete call,

[flexcoders] Using CSS for forms

2007-02-26 Thread jnewport
I was wondering if anyone knows how to style a Flex 2.0 form with CSS. I had read an article on it once, but I can't seem to find it now. I am looking to layout my form elements with CSS so that if I need to bump the elements to left or right I can do it in one place without having to move each

[flexcoders] disabling COPY in drag/drop operations

2007-02-26 Thread darvon4u
Hi everybody, Here is an interesting issue. We have a datagrid where the user should be able to reorder items by dragging/dropping. everything is nice an easy, except when they hold "ctrl" it copies and messed up the whole list :( I have tried to add the dragover and etc event handlers and set "e

Re: [flexcoders] Cairngorm FDS Sample

2007-02-26 Thread Jeffry Houser
I thought that any use of RemoteObject was accessing Flex Data Services (or a ColdFusion server). The Cairngorm Store 2.1 uses RemoteObject and therefore must be using Flex Data Services. I also converted the Cairngorm Store to work with a CF backend if anyone is interested, download are

[flexcoders] Re: Accessing a Flex Model via JavaScript (FABridge)

2007-02-26 Thread Mehul Doshi
Ralf, I'm following your approach, but am not getting the chart to display...most likely because I'm not creating my series properly. In my mxml, I have: [Bindable] public var _elements:XMLList; public function createXMLList(data:String):XMLList { var _xml:XML = new XML(data);

Re: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread leds usop
I think my last lines are a bit vague and confusing. It isnt the actual index in the dataprovider.. but rather the offset in the data provider of properties depending on how you have laid out your elements. So the reliability of this method depends - needless to say - your prior knowledge of how th

[flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread Tim
You are correct - it needs to be an embedded font to render when rotated. Unfortunately, also, the rotation of the text is about the top left corner and the class does not correctly report its dimensions when rotated. I posted a RotableText class to the Flex 2 General Discussion forum a couple of m

[flexcoders] Cairngorm FDS Sample

2007-02-26 Thread auddaraj
Hi, We are planning to use Cairngorm in our flex project which uses FDS. I tried looking around for samples that use FDS(not remoting) but no luck. From www.cairngormdocs.org I am able to find number of sample that use webservices, remoting etc.. Can anyone suggest a sample Cairngorm app that u

[flexcoders] Re: FlexBuilder issue

2007-02-26 Thread Paul DeCoursey
I tried everything. What was strange is that is added the code back in that caused the warning in the first place then I had two identical warnings. But I did get it to go away by turning off warnings in the compiler options and then turning them back on. Thanks --- In flexcoders@yahoogroups.c

Re: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread leds usop
OMG i just realized I just gave you the reverse of what you are asking for haha. my bad. anyway, try using datagrid's indicesToIndex() method. It will return the index (in your dataprovider)... I assume you can then look up your dataprovider to determine which item/prop/text is which? :) Cheers!

Re: [flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread leds usop
sorry typo :p "...more than just to add a circle, he wanted to add text.." --- leds usop <[EMAIL PROTECTED]> wrote: > Actually Tim, he already mentioned in a previous > post > that more than just to add a circle, he wanted to > add > a circle.. and rotate it to vertical. i have already > suggeste

Re: [flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread leds usop
Hi listen for the itemclickevent and then use specifically ListEvent as the event type paramter of the listener then use the rowIndex and columnindex properties like so: private function test(e:ListEvent):void{ trace(e.rowIndex.toString()); trace(e.columnIndex.toString()); } be aware however that

[flexcoders] About Modules

2007-02-26 Thread Guillermo Villasana
Hello everyone I have the following problem. I am trying to make a module that in turn will call another module, but the information from the main App is not reaching the most inner module I don't why I am getting the error 1009 (Null method or object) Flow of data: Main App-> Module 1 -> Modul

[flexcoders] Re:flash 9 alpha IDE run on mac os x intel?

2007-02-26 Thread John Olson
The last I heard, Flash 9 public beta does NOT run on Intel-based Macs. I don't think that has changed.

[flexcoders] ArrayCollection to comma-delimited list?

2007-02-26 Thread qnotemedia
Couldn't quite figure this one out. I have a multi-level arraycollection and I need to write it out in flex as two separated lists - i.e. itemA[0]: 1, 2, 3, 4 itemB[1]: 5, 6 itemC[2]: 7, 8 I'm currently using two repeaters with mx:Text to properly view the data, but of course, that just ends

[flexcoders] Re: Keyboard issues on VISTA

2007-02-26 Thread iko_knyphausen
Ok, thanks. No the processor was around 10% max. And it seems to happen on all Vista boxes with Vista Home Premium (see my visit to COMPUSA), with the exception of one AMD laptop that I had upgraded to Vista Ultimate. Continues to run fine on any XP machine --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread leds usop
Actually Tim, he already mentioned in a previous post that more than just to add a circle, he wanted to add a circle.. and rotate it to vertical. i have already suggested adding the text child directly to the canvas (main or child.. shouldnt really matter). However, i think what makes the text not

[flexcoders] HTTP services / Error handler

2007-02-26 Thread Valy Sivec
Hello, I was using HTTP services for quite some time and I'm not very happy with the way I handle the server side errors. I was wondering if you have a better idea that you can share with me. Here are the solutions I used: 1. check exception on the server side and return a XML representation

[flexcoders] Re: FlexBuilder issue

2007-02-26 Thread hbwvt
Have you tried doing a Project > Clean? That usually removes all the warnings and does a clean build. You could also close the project and re-open it. -Heidi --- In flexcoders@yahoogroups.com, "Paul DeCoursey" <[EMAIL PROTECTED]> wrote: > > I have this warning... > > > 1 Data binding wil

[flexcoders] Be patient, some messages are taking many hours to post.

2007-02-26 Thread Tracy Spratt
Yahoo Groups must be choking on something. Tracy

RE: [flexcoders] FDS with Java Question: Why is it grouping requests?

2007-02-26 Thread Dimitrios Gianninas
Maybe u need to call revertchanges() after the fault occurs to put everything back the way it was and then allow the user to delete the other record of his choosing. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [ma

[flexcoders] Re: broken: stacked AreaChart when using horizontal DateTimeAxis

2007-02-26 Thread munkydung
wow, that was totally it. thanks! I was under the impression that Flex was interpreting my date values just fine as it rendered appropriate values in my third example, but I guess we have to be explicit about it. Mike --- In flexcoders@yahoogroups.com, "Mark" <[EMAIL PROTECTED]> wrote: > > I was

[flexcoders] Re: FDS with Java Question: Why is it grouping requests?

2007-02-26 Thread billy_d_white
Here is a little more detail from my log files This is the first delete request: body = [ Flex Message (flex.data.messages.DataMessage) operation = delete id = ASObject(2486357){subjectid=96} clientId = 23F55D89-4178-1760-96E1-FF423E27F73C correlat

[flexcoders] Re: Dynamically creating a text object

2007-02-26 Thread Tim
You should be able to do something like this: var myText:Text = new Text(); myText.text = "Hello World"; myText.x = 220; myText.y = 140; mainCanvas.addChild(myText); If you're just wanting to draw a shape, you should use Sprite rather than Canvas. Canvas is a container and is intended to layout o

[flexcoders] Re: Replacing special characters

2007-02-26 Thread Tim
I think you will need to write your own class to do the cleanup, but you should be able to use character classes in regular expressions to identify legitimate characters and substitute or remove the others. For example, \w will match a word character (A-Z, a-z, 0-9 and _). See the ActionScript 3.0

RE: [flexcoders] Re: Best way for editing massive amounts of data?

2007-02-26 Thread Dimitrios Gianninas
35 fields? peanuts :) We did one that is variable here... anywhere from 50 to 200. Basically the way we tackled the problem is to display a 3 pane view divide like so: left pane: displays section names in a list, when u select one, it populates the middle pane middle pane: displays the fields

[flexcoders] Constrain where a popup can be dragged?

2007-02-26 Thread craig.drabik
Hello all. Is there a way to constrain where a user can drag a popup? I have a sort of MDW application which has the application's controls on the left, and the reports the user works with in popup windows on the right. I want to make it so the user cannot drag the reports on top of the navigati

[flexcoders] FDS with Java Question: Why is it grouping requests?

2007-02-26 Thread billy_d_white
Maybe Vroom or one of you other FDS experts can tell my what I'm doing wrong : I'm using Cairngorm with a Java/Spring backend. I'm using autocommit and autosync enabled and when I perform a deleteItem which I want to fail, it calls my Java assembler which attempts the deletion and fails. I custom

[flexcoders] Re: How to align identical CategoryAxis as HorizontalAxis and SecondHorizontalAxis

2007-02-26 Thread mgrayfmr
Holy cow, I figured it out, and it's stoopid easy. It may not be that apparent at first glance though. All I needed to do was set the padding to 0 for my horizontal axis. It seems that by default, the padding for my top/secondHorizontal axis, which is a CategoryAxis, was 0.5. By Setting it to 0, i

Re: [flexcoders] Re: Custom Component Styles

2007-02-26 Thread Mike Britton
Graham, You may also want to take a look at this: http://www.scalenine.com/ You'll need the Flex 2.1 update to use it. hth, Mike Britton

[flexcoders] pie chart: group small values together

2007-02-26 Thread bruno.navert
I'm quite new to Flex, so please forgive me if this is a no-brainer. I have a Pie Chart control that shows a lot of wedges, and I would like it to automatically group together smaller wedges (say all those whose percentage value is lower than 1-2%) and display something like "Others - x%", x being

[flexcoders] Re: Looking for guidance on HTTPService sequencing

2007-02-26 Thread pgp.coppens
Thanks Karl, I appreciate your help! I will try(have) to get used to it :) As a follow up : I bumped into a reference of the Mappr API as a source of information on unit testing async components. Is there any other information available on this ? Thanks, Peter --- In flexcoders@yahoogroups.

[flexcoders] Re: Charting - create a secondSeries with Actionscript 3.0 ???

2007-02-26 Thread mgrayfmr
Thanks Brendan> I think my problem was caused by me specifying a secondDataProvider on my LineChart. Here is a snippet of what worked for me : My chart is named chLinearChart var tmpSeriesArrayColl : ArrayCollection; var ls_P : LineSeries; var stroke : Stroke; var tmpFill : LinearGradient; //Cus

[flexcoders] How to align identical CategoryAxis as HorizontalAxis and SecondHorizontalAxis

2007-02-26 Thread mgrayfmr
Help Ely (or anyone who knows) !!! I'm having trouble with the data being displayed in a LineChart. I have same data in a horizontal and secondhorizontal category axis. I am also displaying vertical gridlines using the backgroundElements property. What is happening is that the spacing is differe

[flexcoders] Re: Custom Component Styles

2007-02-26 Thread g_odds
It would appear the link I gave is broken. But nevermind, I have found the solution by delving through the framework source code, where the developers do it differently from what is documented in the Live Docs. The solution is to use something along the lines of: private static var stylesInitial

[flexcoders] Replacing special characters

2007-02-26 Thread TJ Downes
Hey all, Im hoping someone else has experienced this and can provide a simple answer: I am finding that a lot of my work with Flex involves either users cutting and pasting from Word, or I am importing data from external systems. Often there are invalid or special characters, such as apostrophes,

RE: [flexcoders] Invalid Configuration Exception

2007-02-26 Thread Dimitrios Gianninas
Look at your tomcat log file, before that exception, you will find another exception that will explain what the real problem is. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ja

Re: [flexcoders] Finding out when an arraycollection in my model is set

2007-02-26 Thread Yiðit Boyar
i had a similar problem; when an array collection in my model is changed; my datagrid should be refreshed so here is my code: (here ; user.projects is an arrayCollection) in the creation complete of the mxml file : ModelVT.getInstance().user.projects.addEventListener("collectionChange",dgYenile);

Re: [flexcoders] Creating a Video Player in Flex

2007-02-26 Thread Alan Rother
Awesome Thank you. I had searched the archives but didn't find this one. =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer

Re: [flexcoders] New Project: FlexCRUD -- Create Update Delete for Flex/amfphp/cairngorm

2007-02-26 Thread dorkie dork from dorktown
it sounds very useful to me. the link doesn't seem to work for me. On 2/24/07, Mike Crowe <[EMAIL PROTECTED]> wrote: Hi folks, I'm in the process of releasing my system generation utility via riaforge. Essentially, I'm using about 15 templates to generate > 100 files. From a 1' perspecti

[flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread helihobby
Thank you all for the answers ... The problem is that I need to know which cell he clicked on. Or in other words, what is the text that displayed on that cell... Getting the complete ArrayCollection object which the user clicked on is easy as I can ( as u guys mentioned ) simply grab the event a

[flexcoders] flash 9 alpha IDE run on mac os x intel?

2007-02-26 Thread disasterstruckonthedayofmybirth
Hey Everyone, sorry this is on the wrong list. I can't seem to get flashcoders list to subscribe me. Is the flashcoders list still up and running? anyway, does anyone know if flash 9 alpha IDE is supported on Intel Mac? I try compiling and it tells me the java runtime enviornment failed to intiail

Re: [flexcoders] URL Link in Flex Application

2007-02-26 Thread Roman Protsiuk
Try navigateToURL method. R. On 2/24/07, Lisa Lee <[EMAIL PROTECTED]> wrote: Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have it take the user to a non-Flex, regular web page within their browser? It's probably a simple

RE: [flexcoders] checkbox with tree component

2007-02-26 Thread Joan Lafferty
Saurav, Here is an example that might be what you need or at least get your started. It adds a CheckBox to all of the leaf nodes (not the parent nodes). This example is expecting that your data has objects that include a "selected" property, by the way. package comps { import flash.

Re: [flexcoders] ButtonBar's child enabling

2007-02-26 Thread Michael Schmalle
Oh, supposed to be var button:Button = buttonBar.getChildAt(searchIndex) as Button; Mike On 2/24/07, Michael Schmalle <[EMAIL PROTECTED]> wrote: Hi, Try; var searchIndex:int = 2; var button:Button = getChildAt(searchIndex) as Button; button.enable = false; or use the other DisplayObjectCo

RE: [flexcoders] Looking for guidance on HTTPService sequencing

2007-02-26 Thread Karl Johnson
Data access via HTTP and Web services is asynchronous so there is no way to guarantee natively that your services return in a certain order. But you can accomplish this if you really need to by chaining together service calls via result handlers. Calling service 1, and then in the result handler fo

[flexcoders] Re: Invalid Configuration Exception

2007-02-26 Thread jairokan
Hi again, Anyone had a look to my message. I's still struggling with this query. I just cannot see my SWF file. When I request the file from my browser I get the exception below. If I drop the same file on the flex.war root dirctory, it work fine and I see it on my browser. The problem must be

[flexcoders] Custom Component Styles

2007-02-26 Thread g_odds
I have been looking through the Adobe documentation for a few hours now and have no suggestion of how to achieve what I want to do. I have a custom component that has some custom style attributes. I would like these style attributes to have default values. So, I followed what is described in the

[flexcoders] Time Based State Transitions

2007-02-26 Thread nextadvantage
How would I go about changing view states say every 10 secs... with a 1 sec fade?

[flexcoders] Chart annotationElements based on series data

2007-02-26 Thread durnelln
Hi all - and hopefully Ely ;-) I have a LineChart containing a LineSeries which updates automagically from an arrayCollection - works great. I have also created a simple annotationElements element which renders a horizontal line across the chart at a configured value. What I'm trying to do no

[flexcoders] Re: CurrencyFormatter applied to LineSeries

2007-02-26 Thread marc_rossi
--- In flexcoders@yahoogroups.com, "marc_rossi" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, leds usop wrote: > > > > a code post will help :) if you dont mind > > A little more reasonable (and self-contained) example: http://www.adobe.com/2006/mxml"; layout="absolute" cre

[flexcoders] Re: Programatically creating LineSeries

2007-02-26 Thread Mehul Doshi
Could someone please look at my post below and provide me some help? Thanks. --- In flexcoders@yahoogroups.com, "Mehul Doshi" <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a few questions on how I should go about achieving something > using Flex Charting. > > I have a Java servlet/controller

[flexcoders] Re: Quadrant chart

2007-02-26 Thread Mehul Doshi
Yeah, it is quite nice and not complex as I first thought. At least, creating those lines is very straight-forward. --- In flexcoders@yahoogroups.com, "Mehul Doshi" <[EMAIL PROTECTED]> wrote: > > > ok...i'll look at it a little more patiently and get back to you if > i get stuck. > > i real

AW: [flexcoders] Re: Problem with List Item Renderer (and states)

2007-02-26 Thread Harald Dehn
There is a better solution solution: You could "save" the state to the underlying data. In your item renderer you could override the commitProperties method: private function buttonExpandedHandler(event:Event):void { // pressing the button data["ExpandedState"]

Re: [flexcoders] Re: broken: stacked AreaChart when using horizontal DateTimeAxis

2007-02-26 Thread Tom Chiverton
On Sunday 25 Feb 2007, Adam Royle wrote: > public function parseDate(s:String):Date >{ > if (!s) return null; > var a:Array = s.split('-'); > return new Date(parseInt(a[0]),parseInt(a[1])-1,parseInt(a[2])); >} Might be better with a regular expression etc etc here, what happens

[flexcoders] WS call sucessful with resultFormat="e4x", fails otherwise

2007-02-26 Thread ben.clinkinbeard
Hello, we are seeing some weird behavior when calling an RPC encoded .NET web service. Unless we set resultFormat to e4x, we receive the following error: fault: [FaultEvent fault=[RPC Fault faultString="Error #1009: Cannot access a property or method of a null object reference." faultCode="Decodin

[flexcoders] properties file - changing at runtime

2007-02-26 Thread alehrens
I would like to implement a .XML file that contains properties, just like a java.properties file. What is the best way to do this? I've found some previous posts, but have run into some issues with them. Specifically, what I'm trying to do is build my .swc and deploy it to tomcat. Then, on init

[flexcoders] Looking for guidance on HTTPService sequencing

2007-02-26 Thread pgp.coppens
Hello Flex fans, Yet another flex 101 I have read and (hopefully) understood how HTTPService and its result handling works. What I am struggling with is how I can enforce a certain sequencing so that I have the guarantee that flash will not send a second request after the first has been comp

[flexcoders] FlexBuilder issue

2007-02-26 Thread Paul DeCoursey
I have this warning... 1 Data binding will not be able to detect assignments to "systemManager".vmxma.mxml vmxma/sourceline 551 February 23, 2007 3:42:38 PM 10823 Which refers to this line... I was assigning systemManager to a property on that, but have sin

[flexcoders] Flex Fullscreen Apps

2007-02-26 Thread john_69_11
Hi, I have a flex app that I want to be able to make fullscreen and was having some problems with it. I looked at the tutorial on adobes site, and can get full screen to work but the components in my app don't change size when going into fullscreen mode. I've found that setting the height and wid

[flexcoders] ctrl key with a combination - doesnt seem to work

2007-02-26 Thread jmorpher03
Hi, I am trying to trap the ctrl key along with a combination of any other alphanumeric key by using the following code on a DataGrid control: public void myKeyDown(event:KeyBoardEvent):void { if ( event.ctrlKey && event.keyCode == 67 ) // for 'C' { // copy selected row } } Thi

[flexcoders] Re: CurrencyFormatter applied to LineSeries

2007-02-26 Thread marc_rossi
--- In flexcoders@yahoogroups.com, leds usop <[EMAIL PROTECTED]> wrote: > > a code post will help :) if you dont mind > Ok, did my best to shorten things up. The line in question is: dict["vami"] = tester.format(vami); Changing this back to simply dict["vami"] = vami gets the chart back.

Re: [flexcoders] Re: FDS/Hibernate Sample of updating hierarchical list of values

2007-02-26 Thread Valy Sivec
That's an excellent message and I had ran through same issues myself and feel your pain... Regards, Valy - Original Message From: simonjpalmer <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, February 23, 2007 5:34:38 AM Subject: [flexcoders] Re: FDS/Hibernate Sample of

Re: [flexcoders] URL Link in Flex Application

2007-02-26 Thread Brendan Meutzner
Hey, Have a look at URLRequest and navigateToURL(); Brendan Brendan On 2/23/07, Lisa Lee <[EMAIL PROTECTED]> wrote: Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have it take the user to a non-Flex, regular web page w

Re: [flexcoders] strange "Could not resolve to a component implementation." error

2007-02-26 Thread simon
it looks like you don't have an opening tag so your mxml is not well formed. On 2/24/07, Yiðit Boyar <[EMAIL PROTECTED]> wrote: hi all; i've just formatted my computer 1st time since i started flex; and now i'm getting an error that i can not understand. do i miss sth with the install? here

Re: [flexcoders] URL Link in Flex Application

2007-02-26 Thread Dave Carabetta
import flash.net.navigateToURL; http://www.cynergysystems.com/'), '_blank');" /> Regards, Dave. Cynergy Systems, Inc. On 2/23/07, Lisa Lee <[EMAIL PROTECTED]> wrote: Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have

[flexcoders] About the

2007-02-26 Thread huangxi12342003
when i click the button,do "checkUsername()",it check if the filled "usename" have been used. I use RemoteObject to pass the "username" to java , java return the result :"true"or "false" (string Type) Error is: Cannot invoke method 'ifUsernameUsed'. There is code. / ...

Re: [flexcoders] Re: Quick Flex 2.0 questions

2007-02-26 Thread Adam Pasztory
I just took the plunge and purchased FlexBuilder after spending a lot of time exploring other options (OK, you can call me stingy). The existing FlashDevelop solution was too problematic in my opinion, and there's no indication about when FD3 will be out. And unless you're a big fan of command

Re: [flexcoders] URL Link in Flex Application

2007-02-26 Thread Bhuvan Gupta
Use LinkButton. Refer ComponentExplorer shipped with Flex SDK for an example. On Feb 24, 2007, at 10:07 AM, Lisa Lee wrote: Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have it take the user to a non-Flex, regular web pa

Re: [flexcoders] URL Link in Flex Application

2007-02-26 Thread Angus Johnson
navigateToURL() method is what you're after. There is an example included in the Flex doc's loading a url to a new window after a button click. On 24/02/07, Lisa Lee <[EMAIL PROTECTED]> wrote: Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex

Re: [flexcoders] Firefox (2.0.0.1) content caching and HTTPService calls

2007-02-26 Thread Douglas Knudsen
On 2/23/07, Private Romeo <[EMAIL PROTECTED]> wrote: We have build an application which polls XML data bound to Flex Charting controls via HTTPService. We have noticed that run in Firefox 2.0.0.1 it seems as if the result get cached. Even though the server side data changes the chart does not u

  1   2   >