[flexcoders] Re: Anyone actually able to save data from flex

2006-08-30 Thread Mike Collins
HTTPService passes strings not objects so that is most likely the issue. Either convert the DataModel to a xml string or do something like this to pass in the variables as form variables. If you want to pass objects you need to use RemoteObject calls. public function submitURL() {

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-30 Thread mthielman11
do you mind me asking how. We can not even get this very simple sample to work. http://www.adobe.com/2006/mxml"; width="100%" height="100%" > http://0.0.0.4:8080/ZebraServer/store?a=b"; method="POST" resultFormat="e4x" contentType="application/xml" />

Re: [flexcoders] Anyone actually able to save data from flex

2006-08-30 Thread Jeff Tapper
I do this all the time without any issues, to both java and .net backends. No FDS involved, just pushing xml back and forth with WebServices. At 10:08 AM 8/30/2006, mthielman11 wrote: >I started another topic on this below, but this is a more general >question. > >We have been pulling our hair

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-30 Thread hank williams
I > > http://www.stage.adobe.com/support/flex/downloads_updaters.html#flex15 > I think the problem is in the "stage" thingy which suggests "internal only" -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

[flexcoders] Anyone actually able to save data from flex

2006-08-30 Thread mthielman11
I started another topic on this below, but this is a more general question. We have been pulling our hair out trying to save xml data back to server from flex. We can retrieve and view data from the server fine but can not save. We have tried at least 5-10 different methods and even tried using

Re: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-30 Thread Tom Chiverton
On Tuesday 29 August 2006 06:49, Matt Chotin wrote: > You can download the developer edition of Flex 1.5 from here: > http://www.stage.adobe.com/support/flex/downloads_updaters.html#flex15 "If you feel you should have access, please contact the appropriate authorities and give them your IP addres

Re: [flexcoders] adding buttons in to a datagrid

2006-08-30 Thread Aral Balkan
Hey Joost, Take a look at my Quick Start on Using Item Renderers: http://www.adobe.com/devnet/flex/quickstart/using_item_renderers/hth,AralOn 29 Aug 2006, at 13:49, M.Prabhakar Shenoy wrote:use button as cellrenderer for the column you want to show button in gridJoost Saanen wrote:>>> Hi there,>>

Re: [flexcoders] Re: CairngormEvent Antipattern

2006-08-30 Thread Tom Chiverton
On Wednesday 30 August 2006 13:14, Andrea Varga wrote: > (For example, on a large project, when there are many developers > working, all of them has to edit the FrontController to add an event.) This isn't a problem with a decent RCS. As it is, we've got a CoreController and then indivdual projec

RE: [flexcoders] How to get client IP address in flex?

2006-08-30 Thread ?????? ????????
You can trick with request to the server. )) Cheers, Mozilla By -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sandeep Malik Sent: Wednesday, August 30, 2006 4:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to get client IP addre

Re: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread Tom Chiverton
On Wednesday 30 August 2006 11:05, João Fernandes wrote: > I think it's the FlexMxmlServlet the responsible for the mxml compilation > at the server side. Exactly, it's not part of the data services, just a handy servlet that comes with it to make life easier to begin with. -- Tom Chiverton He

[flexcoders] How to get client IP address in flex?

2006-08-30 Thread Sandeep Malik
Hi Guys, Is there a way to find client IP (on which the swf file is running) through flex or flash? Cheers, Sandeep -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Ya

[flexcoders] Re: TypeError: Error #1009 in AreaChart with variable Series

2006-08-30 Thread Mark
Actually, I should correct myself. I changed it from stacked to overlaid and I don't get the error. However, I also don't see the transition. It seems that with both stacked and 100% I see the transition and get an error, whereas with overlaid I don't get an error but I also don't see the transi

[flexcoders] Time calculation oddity

2006-08-30 Thread m88e24
The following code should result in a time of 0ms var d1:Date = new Date(); var d2:Date = d1; var result:Date = new Date(); result.time = d2.valueOf() - d1.valueOf(); The odd thing is that there is a 1 hour difference. The timezoneO

Re: [flexcoders] Buffer progress bar for streaming FLV

2006-08-30 Thread Abdul Qabiz
Hi,bytesTotal and bytesLoaded are used when you use progressive flv download. In case of streaming (via FMS/FCS),your actual file is not downloaded rather bits are streamed over pipeTo show buffer progress, you can use NetStream's bufferLength and bufferTime properties instead of bytesTotal/

Re: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread Douglas Knudsen
ok...sory to hijack the thread here but, what is the advantage of using the 'compile on the fly'?  I can see one, no need for a build process, can drop in files just like in CF,JSP, ASP world without compiling.  Any others? DKOn 8/30/06, Matt Chotin <[EMAIL PROTECTED]> wrote:

RE: [flexcoders] Flex client cache and new versions

2006-08-30 Thread Benoit Hediard
The swf is stored in the user cache. To be sure that your users get the latest version, you can simply add a version parameter in the url of the swf. Ex.: myApp.swf?version=2.0.34 Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de s

RE: [flexcoders] Re: Re: XML Binding Problem

2006-08-30 Thread Tracy Spratt
I’m mistaken, it is deeper than the highlight, it is not possible to select an item, ie, the selectedItem property is null in the click handler.  Still looking.   Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Tu

[flexcoders] Is this a bug? About Number type.

2006-08-30 Thread beloved_zhou
I am using Flex2.0, and I try to get a result about 3 multiply 7.9, the result should be 23.8, but I got 23.703. Here is a sample code: http://www.adobe.com/2006/mxml"; layout="absolute"> -- Flexcoders Mailing List F

Re: [flexcoders] loading whole Application

2006-08-30 Thread Johannes Nel
creationPolicy="all"On 8/28/06, arnold_charming <[EMAIL PROTECTED]> wrote: Hi!How to load the whole application? I'm asking this because I'm usingsevral viewstack and it is evident that the screens have to be loaded every time.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoder

[flexcoders] Flex 2 patch timeline

2006-08-30 Thread Adam Reynolds
Before I dive headlong into my first full Flex 2 project, can anybody from Adobe give me an update as to when/if there will be a patch for Flex 2? Adam -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.c

Re: [flexcoders] HTTPService Result to ArrayCollection

2006-08-30 Thread Mark McCray
What gets returned from my HTTPService call l looks like this:NYSPRINon-Project Time93106NYSPRI Trafficking TOS93110And I'm interested in populating the datagrid where one row equals one job listing from the xml.Maybe I need to format my dataGrid differently?thanks,markOn Aug 29, 2006, at

Re: [flexcoders] Flex Builder 2, getting slower as code grows

2006-08-30 Thread Johannes Nel
switch off incremental compilation. build when you need it, or deploy to a seperate server and build thereOn 8/29/06, j_sevlie < [EMAIL PROTECTED]> wrote:Is there some kind of coding limitation on how much Flex Builder can handle before it gets completely unusable?I'm currently working on a rath

[flexcoders] Re: Webservice and column name question.

2006-08-30 Thread dinger0007
Correct, the structure (column names) are dynamic based on the webservice operations. Let see if I can be more specific. This is what I have so far, it returns the actual data in the console window. But want to display the column names in the console test = new ArrayCollection( event.result as

RE: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread Matt Chotin
Nope, no enforced limit to the number of clients in FDS Express.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Tuesday, August 29, 2006 9:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Can Fle

RE: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread João Fernandes
FDS should cache your app after the first compilation and only recompile if changes were made.   João Fernandes   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dorkie dork from dorktown Sent: terça-feira, 29 de Agosto de 2006 17:32 To: fle

Re: [flexcoders] Bubbling, Practical Use?

2006-08-30 Thread Johannes Nel
nested items in a view.On 8/29/06, lostinrecursion <[EMAIL PROTECTED]> wrote: Hi all, I understand the concept of bubbling and know what it doeswith no issue. But, for some reason I can't think of a practical application of it?Could someone just give me a brief example of when bubbling might beu

RE: [flexcoders] Re: i can not find flex 1.5 SDK

2006-08-30 Thread Matt Chotin
You can download the developer edition of Flex 1.5 from here: http://www.stage.adobe.com/support/flex/downloads_updaters.html#flex15   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of greg dunf Sent: Saturday, August 26, 2006 5:43 AM T

[flexcoders] Flex client cache and new versions

2006-08-30 Thread shrefler
I have a question about how client cache handles flex 2 swfs. I'm making an application where some users speed is an issue. After the initial download, should the flex application be stored in the users cache? Also, how can you force a re-download of the application if a new version is relea

[flexcoders] Reskinning of HDividedBox... in flex 1.5

2006-08-30 Thread Renee
I want to reskin divider of HDividedBox... I have extended HDividedBox, but not able to reskin dividerSkin. Can anybody help? Thanks -Renee -- Sent using Laszlo Mail. Try it yourself. http://www.laszlomail.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/f

[flexcoders] how to call a method in a custom mxml component

2006-08-30 Thread keithtucci
how do i go about calling a method in a custom mxml component from the main applciation... currently in my mxml component, 'creationcomplete' calls my init method, but it only fires one time, when the applciation loads, but i need to fire that init method at other times, after the application h

Re: [flexcoders] Re: CairngormEvent Antipattern

2006-08-30 Thread Andrea Varga
Got it. Thanks for the explanation. There were many discussions about the FronController just growing and growing. Do you happen to have a solution for refactoring? (For example, on a large project, when there are many developers working, all of them has to edit the FrontController to add an eve

[flexcoders] Re: Problems saving XML data

2006-08-30 Thread mthielman11
NO that got cut off too Ugh this site is frustrating me. private function storePhysician_Basics():void { //srvsave.url = parentApplication.dataServerURL+"store?a=b"; testsave.send(); -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/f

[flexcoders] Getting mouse and keyboared events to pass through transparent parts of flex?

2006-08-30 Thread Erik Kärrsgård
Title: Meddelande Hi,   I'm experimanting with the possibility of getting user interaction(mouse, keyboard...) to reach html content below transparent parts of a flex-application. I can get this to work when creating plain old flashes with Studio 8 but so far I've had no luck in doing so w

Re: [flexcoders] Problem: Flex no connection???

2006-08-30 Thread Rafael M. Martinelli
Matt,I'm not using named remote object even thought it's simple to change because we're using a Facade. So it's stateless.In our last version, we put a filter mapping AMFGatewayServlet forcing closing the connection. Do you think it's something related to that? Or with named remote object? Than

Re: [flexcoders] Why my compiled swf is loading too slowly?

2006-08-30 Thread Rogerio Gonzalez
I have the same trouble here. My application downloads alright, but the time for initiate is too much. ALmost 50% of the total time for "ready to use" is just for initializing.My trouble is with bindable, I think. I get this error:warning: unable to bind to property 'Complement' on class 'Object

Re: [flexcoders] Why my compiled swf is loading too slowly?

2006-08-30 Thread Abdul Qabiz
Hi,Animation would probably timeline based. Flash player starts playing the content as soon as data for frames is available on client.So for 1.5 meg file without any preloader, it would start playing faster than a swf with preloader. In case of your Flex app, preloader makes sure entire swf is d

Re: [flexcoders] Architecture question

2006-08-30 Thread Abdul Qabiz
So it's like two different things...- Creating UI- Using UI (or Sharing with others ?)I am not sure of the software's work flow, but you can still ship default UI as pre-compiled SWFs along with corresponding UI source XML. You can provide a tool to users, where they can customize/personalize/cr

Re: [flexcoders] Architecture question

2006-08-30 Thread Paul Andrews
OK, interesting stuff!   It's not clear from your description how a given user would choose the right application build for them.   I can see two possibilities.   1) A flex front end loads a menu (from a web service) offering a list of application builds to the user (I suppose this might ch

RE: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread João Fernandes
Tom,It is, I think it's the FlexMxmlServlet the responsible for the mxml compilation at the server side. I wouldn't make much sense to take that ability out from 1.5 to 2. João Fernandes -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of To

Re: [flexcoders] Can Flex Data Services Compile on the Fly?

2006-08-30 Thread Tom Chiverton
On Tuesday 29 August 2006 17:35, Tracy Spratt wrote: > Actually, FDS does still retain the ability to compile and serve .mxml That's not FDS doing the compile though, is it ? FDS is a Data Service. It happens to come with some magic that can compile mxml via a web request too. -- Tom Chiverton

Re: [flexcoders] BUMP: Re: Help with adding datagrid to non-visible Sprite

2006-08-30 Thread Tom Chiverton
On Tuesday 29 August 2006 19:54, wayneposner wrote: > Since I'm using an AS class extending Sprite, there is no option for > the callLater() method. I don't understand. You draw your stuff, making the place you are drawing it to visible. Then you callLater another method to do the printing and t

[flexcoders] using dissolve effect in a transition

2006-08-30 Thread de.newsight
I try to use the dissolve effect in a transition to fade out 2 panels, but the effect don't work. How can I make it work? Thanks, Artur -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archiv

Re: [flexcoders] Why my compiled swf is loading too slowly?

2006-08-30 Thread Satish
Anybody  have idea on this?? - Original Message - From: Satish To: flexcoders@yahoogroups.com Sent: Saturday, August 19, 2006 10:55 AM Subject: Re: [flexcoders] Why my compiled swf is loading too slowly? I think my application is initalizing and taking lo

[flexcoders] Re: how to show/hide a line in a chart

2006-08-30 Thread shemeshkale
anyone? please help! --- In flexcoders@yahoogroups.com, "shemeshkale" <[EMAIL PROTECTED]> wrote: > > Igor, it seems u misunderstood my question. > please read my first post again - i want to show/hide only ONE line > (LineSeries) not the whole chart. > your answer will hide the whole chart! > sinc

<    1   2