[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! since

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

[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? mx:transitions mx:Transition fromState=* toState=other mx:Parallel mx:Dissolve target={panel1} duration=1000 alphaFrom=1.0 alphaTo=0.0 / mx:Dissolve target={panel2}

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

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] 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

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

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

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

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] 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?

[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'mexperimanting withthe 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 indoingso with

[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:

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

[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

[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:

[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

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

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

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:

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 Flex

[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] 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

Re: [flexcoders] HTTPService Result to ArrayCollection

2006-08-30 Thread Mark McCray
What gets returned from my HTTPService call l looks like this:jobsjoblocNY/locclientSPRI/clientproduct/productnameNon-Project Time/namejobno93106/jobnoest_status/est_status/jobjoblocNY/locclientSPRI/clientproduct/productname Trafficking

[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:

Re: [flexcoders] loading whole Application

2006-08-30 Thread Johannes Nel
creationPolicy=allOn 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:

[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: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:TextInput x=76 y=348 id=txt_1

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

2006-08-30 Thread Tracy Spratt
Im 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:

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

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] 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

[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

[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

[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

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

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

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, Is

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 address:

[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 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:

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 out

[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. ?xml version=1.0 encoding=utf-8? mx:Application pageTitle=Flex 2 Style Explorer xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% mx:HTTPService id=srvsave

[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: Buffer progress bar for streaming FLV

2006-08-30 Thread Michael Ritchie
Abdul is correct, you need to get the netstream time, use the following code for your enterframe function: private function onEnterFrame(event:Event):void { if(stream == null) return; var loadpct:Number = stream.bytesLoaded /

[flexcoders] Re: Line chart data points being clipped off

2006-08-30 Thread RBullotta
Doh! I actually had this in the hardcoded version of my component (s), and switched it over to use dynamic creation of the line series and forgot to add it back in. And welcome back - hope you had a great post-release adventure... -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-30 Thread Chris Simeone
Hey Greg and Abdul, That info is exactly what I needed! I'll make the changes and let you know how it worked out. Thank you for your responses. Take Care, Chris --- In flexcoders@yahoogroups.com, Chris Simeone [EMAIL PROTECTED] wrote: Hi All, I've been trying to create a Buffering

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

2006-08-30 Thread Matt Chotin
Oops! That was the staging site. http://www.adobe.com/support/flex/downloads_updaters.html#flex15 Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Wednesday, August 30, 2006 7:06 AM To: flexcoders@yahoogroups.com

[flexcoders] Flex 2 Remoting and ASP.net (flourine?) examples?

2006-08-30 Thread a1111111111111
I have spent the last several years in the CF/J2EE world and have gotten quite used to the idea of using remoting with Flex. I just joined an asp.net group and I'm trying to figure out how to get Flex going with it. I'm not a huge fan of using webservices for data intensive applications. Does

Re: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Daniel Freiman
I altered the code a little and got it half working. It works if you're setting the imported font using setStyle, but not if you're setting the font through the TextFormat object. Simply add the lines: var content:DisplayObject = ldr.content; var c:Class = content[myFont];

RE: [flexcoders] Re: Webservice and column name question.

2006-08-30 Thread Franck de Bruijn
Im not sure if I understand you. What do you see in the console output? Do you see the column names? If not, it seems youre not getting them from the webservice. Cheers, Franck From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

[flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-30 Thread Chris Simeone
Awesome!!! Worked perfectly. Thank You. With all this in mind, is there a way to pull this of using the mx:videoDisplay component? I created my app using that component but I could not figure out how to access the stream. I figured I would do a rewrite using the netStream object if necessary,

RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Matt Chotin
Are there specific bugs youre looking to be addressed? Based on direct feedback as well as observation from the various public forums weve been pretty pleased with the quality of the release so weve held off on rushing out an updater while we work on things like the Mac release of Flex

[flexcoders] Re: Flex 2 Remoting and ASP.net (flourine?) examples?

2006-08-30 Thread bridiercharles
--- In flexcoders@yahoogroups.com, a1 [EMAIL PROTECTED] wrote: I have spent the last several years in the CF/J2EE world and have gotten quite used to the idea of using remoting with Flex. I just joined an asp.net group and I'm trying to figure out how to get Flex going with it.

Re: [flexcoders] Flex 2 Remoting and ASP.net (flourine?) examples?

2006-08-30 Thread Clint Modien
You may want to try WebORB 2.1 Beta 5 . http://www.themidnightcoders.com/weborb/ On 8/30/06, a1 [EMAIL PROTECTED] wrote: I have spent the last several years in the CF/J2EE world and have gotten quite used to the idea of using remoting with Flex. I just joined an asp.net

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

2006-08-30 Thread Sandeep Malik
The problem is that the server can at best tell the ip of the last proxy which sent the request to it. So, it may be goofed by NAT etc. Cheers, Sandeep --- In flexcoders@yahoogroups.com, ?? [EMAIL PROTECTED] wrote: You can trick with request to the server. )) Cheers, Mozilla

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

2006-08-30 Thread Abdul Qabiz
If you are wrapping SWF in server side script, you can easily use some server-side code to find out. SWFs are executed on client and they can not give IP address of client..Doing server-side is quite straight forward... -abdulOn 8/30/06, ?? [EMAIL PROTECTED] wrote:

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

2006-08-30 Thread Ely Greenfield
There's no easy workaround. At one point I had a workaround which essentially involved you copying and pasting some code from the chart source with a line or two of change. That's kind of a sketchy thing to do though, since at that point your mucking with implementation details that

[flexcoders] Cairngorm / Hibernate Best Practices

2006-08-30 Thread dreuimar
Hey everyone, I'm working on a rather large application, and have recently transitioned from using my own Java DAO classes to Hibernate. One screen of the application allows clients to add and modify lists of keywords, along with text ads (FYI, this is a project that interacts with Google

RE: [flexcoders] Re: Specifying LineSeries itemRenderer with Actionscript

2006-08-30 Thread Ely Greenfield
Well, in theory, we've gone to great lengths (and had long, heated, philisophical 'discussions' (read: knock down drag out fights)) over what the relationship between MXML and actionscript should be. Right now, we try as much as possible to follow a very strict 'no compiler magic'

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

2006-08-30 Thread Ely Greenfield
Flex 1.5 or Flex 2? Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkaleSent: Wednesday, August 30, 2006 12:28 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: how to show/hide a line in a chart anyone? please help!--- In [EMAIL

[flexcoders] Not finding import mx.remoting.*;

2006-08-30 Thread Louie Penaflor
Hi, Im trying to do some php remoting from flexbuilder and Im getting a Definition mx.remoting could not be found. I have flash 8 installed do I have to tell flex the directory of the mx libraries are? Thanks and I look forward to your replies. Louie Penaflor Web Software

[flexcoders] Re: CairngormEvent Antipattern

2006-08-30 Thread lostinrecursion
This approach seems like it could be extremely useful for me as I am starting to build a lot of larger projects, but I have a quick comment. Forgive me if I am off base here, but is there a mistake in the code example? I am new to Cairngorm so bear with me for a moment. According to your

[flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-30 Thread Chris Simeone
Ok, Below is my updated onEnterFrame() method that updates a progressBar component. It works great. Thanks again gang! Now I'm going to try and get this working using the mx:videoDisplay component. I'm not sure if I can get to its netStream object, so any ideas/recommendations would be helpful

Re: [flexcoders] AUTO DELETE ITEMS IN DATAGRID

2006-08-30 Thread Nate Hardt
Does this work? datagrid.dataProvider.removeItemAt(0); On Aug 29, 2006, at 4:14 PM, tonyx_788 wrote: IS THERE ANY EXAMPLE TO DELETE THE FIRST ITEM IN A DATAGRID AFTER I ADDED 5? HERE IS MY CODE TO ADD ITEMS FROM ONE DATAGRID TO ANOTHER import mx.collections.XMLListCollection; import

[flexcoders] Re: getting printed versions of the docs

2006-08-30 Thread greg h
fyi ... the following update on buying bound Flex 2 docs was posted by David today off-list at: www.digitalmediaminute.com/article/2286/flex-20-where-are-the-docs Hi, I saw this note internally: "The printed Flex docs will be available in the Adobe store on October 12. In the meantime they

Re: [flexcoders] Re: CairngormEvent Antipattern

2006-08-30 Thread Ralf Bokelberg
The frontcontroller doesn't map events to commands but strings like WidgetController.EVENT_ADD_WIDGET to commands. So any event with a type set to WidgetController.EVENT_ADD_WIDGET, which reaches the frontcontroller, triggers the command, which is bound to the string

Re: [flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-30 Thread greg h
Chris, Regarding your post: Now I'm going to try and get this working using the mx:videoDisplay component. I'm not sure if I can get to its netStream object, so any ideas/recommendations would be helpful and appreciated. Last week Abdul posted a reply on this list on the thread How to

Re: [flexcoders] Not finding import mx.remoting.*;

2006-08-30 Thread Hasan Otuome
Hey Louie, I don't believe that package exists. I've been using the attached file in my AMFPHP projects. Maybe it can benefit you too. After dropping it in your project root just add the following ActionScript to your app: import flash.net.Responder; public var gateway:RemotingConnection;

RE: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Dirk Eismann
Yes, this is possible: [Embed(source=Arial.ttf, fontName=myArial, unicodeRange=U+0041-U+005A )] public var myClass:Class; Dirk. Von: flexcoders@yahoogroups.com im Auftrag von Daniel Wabyick Gesendet: Mi 30.08.2006 18:58 An: flexcoders@yahoogroups.com

RE: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Brian Deitte
Title: Re: [flexcoders] Embedding fonts at runtime One addition to this, which is that we always include the space character when you specify the unicode range. I'm not sure the original reasoning for this, but I just noticed it in the code. Also, you can specify multiple ranges, separated

RE: [flexcoders] Building a chat server over FDS... impossible is nothing??

2006-08-30 Thread Jeff Vroom
Just to chime in on this briefly. You can fairly easily build a chat system using FDS without dynamically defined client and server destinations and it is not too much work though it has some limitations in how it will scale if you take the simple approach. I think for Toms particular

[flexcoders] Stroke color on lineSeries - bug?

2006-08-30 Thread Sreejith Unnikrishnan
Applying the stroke color on lineSeries does not seem to have any effect. Even in the examples provided by Adobe, chart explorer the colors though specified, dont work! Is this a known bug, if it is one? Regards Sree __._,_.___ -- Flexcoders Mailing List FAQ:

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

2006-08-30 Thread Sandeep Malik
The problem is that the server can at max tell us the last proxy that sent it the data, so it may be goofed by NAT etc. Cheers, Sandeep --- In flexcoders@yahoogroups.com, ?? [EMAIL PROTECTED] wrote: You can trick with request to the server. )) Cheers, Mozilla By

[flexcoders] Repeater Question/help

2006-08-30 Thread Jeremy Rottman
I am using a repeater to display information from my application. In my cfc, I return an array of structures to my flex app. This array, holds all the information about the file I am trying to display. The problem I am having is this. In the array I have an array object that tells me what side

RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Jack Caldwell
Matt or anyone else at Adobe. I agree that the quality of Flex Builder 2 is good . . . . very good . . . . however . . . . I know nothing will probably change since Adobe is the big software company, and I am only a single customer(Flex Builder 2 w/charting), but this position disturbs

[flexcoders] Re: Webservice and column name question.

2006-08-30 Thread Doug Lowder
Does this give you what you want? for each(var item in test) { for each(var colname in item) { trace(colname); } } --- In flexcoders@yahoogroups.com, dinger0007 [EMAIL PROTECTED] wrote: I have a query result coming back from a webservice call and i want to pull the column names out

RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Jeff Tapper
Jack- I think you misunderstand what Matt said. He didn't say they aren't working on fixes, he said it hasnt been their top priority. If you have an issue, he recommended you contact their support team. I have said this before, but I would not have a single customer if I told them I could not

[flexcoders] Re: Line chart data points being clipped off

2006-08-30 Thread RBullotta
I spoke too fast...I now recall why I stopped using filterData in the component. If filterData is set to false, and the dataset has no points to chart, the chart component crashes with the following error (if filterData is set to true, the crash doesn't occur, and the chart updates empty as

RE: [Junk E-Mail - LOW] RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Shannon Hicks
Who says they're not going to roll out MacOScompatibility and bug fixes for Windows all in one package? Just like when the ColdFusion team was doing MacOS work... it applied to the Windows Linux versions too. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Problems calling a RemoteObject within a loop

2006-08-30 Thread Doug Arthur
I've noticed a critical issue when calling a remoteObject within a loop and having a resultHandler, the resultHandler does not execute the same number of times that the remoteObject was invoked. Can anyone explain this? In my case, after each record is updated, I increment an int to identifty

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

2006-08-30 Thread Sandeep Malik
Like what kind of server script are we talking about here and how do we execute a server script on the client side? -Sandeep --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: If you are wrapping SWF in server side script, you can easily use some server-side code to

[flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-30 Thread Chris Simeone
Hmmm Bummer... Before I abandon my idea I want to sum up this thread... I can't create a progress bar that shows buffering progress as long as I use the videoDisplay component. I have to use the netStream objects if I want to create a buffering progress bar, because that's the only way I

Re: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Daniel Freiman
I figured out how to use the textformat object. The textformat object does actually work, but a TextField will only retrieve the embeded font if it's parent has previously been sent set the font as a style. So for any component that uses a UITextField, set the fontFamily style of the parent

Re: [flexcoders] The supplied index is out of bounds error is thrown when binding LinkBar dataProvider and selectedIndex properties simultaneously

2006-08-30 Thread Michael Klishin
On Thu, 2006-08-17 at 18:39 +0300, Sergey Kovalyov wrote: Hi All! The exception is thrown while running this application. Sure, it is due to _selectedIndex default value that equals 0, but _dataProvider is still empty. But how to avoid this problem? Regards, Sergey. Use creationComplete

RE: [flexcoders] Not finding import mx.remoting.*;

2006-08-30 Thread Louie Penaflor
Thanks for the help. How can you pass paramaters for the service? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hasan Otuome Sent: Wednesday, August 30, 2006 1:21 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Not finding import

Re: [flexcoders] Stroke color on lineSeries - bug?

2006-08-30 Thread Sam Shrefler
Sree: I'm not sure if its a bug, anerror in the documents, or none of the abover... If you need to change teh stroke color, I've successfully used the following... mx:LineSeries mx:lineStroke mx:Stroke color=0x33 weight=3//mx:lineStroke /mx:LineSeries Hope that helps Sam On 8/30/06,

[flexcoders] securityError:Security sandbox violation with flickr.com

2006-08-30 Thread hastyarkxu
I met a very strainge security problem. When I do the user authentication, I use the operation 'getFrob' which AS3 library downloaded from the labs.adobe.com to get the permission from flickr.com. I test it in my local PC, it's OK. But after I uploaded to the web server and test, there is the

RE: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Tom Lee
Title: Re: [flexcoders] Embedding fonts at runtime Just wondering, is [Embed] directive compile-time, or run-time? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Brian Deitte Sent: Wednesday, August 30, 2006 2:43 PM To:

RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Jack Caldwell
Jeff: I fully understood what Matt was saying. That's just it . . . . it is not a top priority. The issue is that Adobe is fixing the bugs, but not releasing them. We as developers have to try to figure it out then call support, etc. That could take hours or days of my time. It's wasted

Re: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread hank williams
On 8/30/06, Jack Caldwell [EMAIL PROTECTED] wrote: Jeff: I fully understood what Matt was saying. That's just it . . . . it is not a top priority. The issue is that Adobe is fixing the bugs, but not releasing them.Jack,With any big software project, there are **always** bugs.

RE: [Junk E-Mail - LOW] RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Shannon Hicks
"My position, for over 27 years,has always been . . . . find a bug send ALL customersa fix ASAP." If you do that, then when do you get time to develop new versions of the product? At some point you have to make a tradeoff... Adobe's tradeoff was to get the Windows version out the door

RE: [flexcoders] Stroke color on lineSeries - bug?

2006-08-30 Thread Matt Horn
For LineSeries, you use the stroke style property to define a style for the chart item's renderer. You use the lineStroke property to define the stroke of the actual line segments. This is documented here: Defining strokes for LineSeries and AreaSeries

RE: [flexcoders] Embedding fonts at runtime

2006-08-30 Thread Matt Horn
[Embed] is always at compile time, so I dont think this solution matches your requirements of loading teh fonts at run time. -m -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Lee Sent: Wednesday, August 30, 2006 4:01 PM To:

Re: [flexcoders] Problems calling a RemoteObject within a loop

2006-08-30 Thread Fernando Lobos
send the parameter into an array ! On 8/30/06, Doug Arthur [EMAIL PROTECTED] wrote: I've noticed a critical issue when calling a remoteObject within a loop and having a resultHandler, the resultHandler does not execute the same number of times that the remoteObject was invoked. Can

RE: [flexcoders] Stroke color on lineSeries - bug?

2006-08-30 Thread Ely Greenfield
you need to set the lineStroke color. It's not a bug, but it changed late in the beta cycle, so we may have missed earlier samples or docs. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam ShreflerSent: Wednesday, August 30, 2006 12:20 PMTo:

RE: [flexcoders] Re: Specifying LineSeries itemRenderer with Actionscript

2006-08-30 Thread Matt Horn
Having said that, I can attest to the vast amount of of information the doc team has to communicate to the flex developer base, and the heroic job they do and have done getting it out. It's an evolving process, and they watch this list for feedback, so things like this that cause

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

2006-08-30 Thread Matt Horn
I think the best thing to do is pass the IP addy via a flashVars variable. You do this by editing the HTML wrapper. You can look at the example here, and modify it to fit your server technology (this example uses JSP) and your variable input (this example uses query string params):

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

2006-08-30 Thread Gordon Smith
You presumably meant the result should be 23.7, not 23.8. However, getting 23.703 isn't a bug; you'd get the same answer in other languages like Java and C++. The imprecision is because Number in ActionScript (like float in Java and C++) stores a floating-point value as

RE: [Junk E-Mail - LOW] RE: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Matt Chotin
Yes, that is the plan. At the same time the Mac release comes out we will be upgrading the Windows release with bug fixes. Mac and Windows will be synchronized at that point moving forward. Hank has stated my position very nicely with regard to the other points. Matt

Re: [flexcoders] Flex 2 patch timeline

2006-08-30 Thread Paul Andrews
Jack, I don't think you appreciate what a nightmare that would be for any development company. The sheer overhead of doing what you suggest would be immense. I don't know of a software company of any kind that operates like that. I think you've had the wrong position for 27 years.. Paul

  1   2   >