[flexcoders] Charset when return UTF8 character

2008-02-26 Thread sinacapho
Hi all, i have facing a strange problem that hope someone to help me. My Flex program will call the remote object that return some string that contain chinese character.I have tested that it is ok if the data is get from the DB. But if the character is hardcode in the Java program . It will

Re: [flexcoders] adding columns to datagrid programmatically

2008-02-26 Thread [p e r c e p t i c o n]
Sorry for the confusion...still in the beginning phases with Flex... I'm not sure I understand the question. All columns are going to use the dataProvider on the DG. this is true..it does that, however one coulumn lists the elements of an array in that dataprovider so when i need to edit that co

Re: [flexcoders] Fetching a xml file in a way that works via file:// and http://??

2008-02-26 Thread Josh McDonald
I've tried that and it doesn't seem to work :( On Wed, Feb 27, 2008 at 3:27 PM, Alex Harui <[EMAIL PROTECTED]> wrote: >Relative paths? > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Josh McDonald > *Sent:* Tuesday, Febru

RE: [flexcoders] adding columns to datagrid programmatically

2008-02-26 Thread Alex Harui
I'm not sure I understand the question. All columns are going to use the dataProvider on the DG. If one of your things is a ComboBox and has a dataprovider of its own, you can assign the dataprovider in the classFactory's properties bag or subclass dgc.itemRenderer = new ClassFactory(Combo

[flexcoders] RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2008-02-26 Thread Dmitri Girski
Hi all, Just trying to convert the project into RSL and I am getting this strange error on the startup VerifyError: Error #1079: Native methods are not allowed in loaded code. Does anyone know what does it mean? Thanks! Dmitri.

[flexcoders] Repeater

2008-02-26 Thread Paul Kukiel
Hi, I have a repeater: Which is working fine but I really need 4 buttons per row then to start a new row. At the moment they just push of the side of the page. Ideas? Paul.

Re: [flexcoders] adding columns to datagrid programmatically

2008-02-26 Thread [p e r c e p t i c o n]
thanks much...more questions... how do you set the event handlers and data providers of these... and one last thing... i've put a checkbox in one column, but it only shows up after i attempt to edit...how do i fix this? thanks again cheers percy On Tue, Feb 26, 2008 at 9:29 PM, Alex Harui <[E

Re: [flexcoders] Re: How to find a host name for a server

2008-02-26 Thread Anirudh Sasikumar
Hi, Not sure if this is the easiest way to do this, but you could use ExternalInterface to call into a javascript function which returns window.location. Eg: In MXML: private function getHostName():String { return ExternalInterface.call("getHostName"); } In your container HTML file, have th

[flexcoders] Re: DateFormatter and Date Timezone Issue

2008-02-26 Thread Phil Heinz
Thanks Doug - that was it. Sometimes you just can't see it even when the answer is staring you in the face on the help page! Thanks again, Phil

RE: [flexcoders] adding columns to datagrid programmatically

2008-02-26 Thread Alex Harui
var newCols:Array = new Array(); var dgc:DataGridColumn = new DataGridColumn() dgc.dataField = "someProperty"; dgc.itemRenderer = new ClassFactory(LinkButton); newCols.push(dgc); var dgc:DataGridColumn = new DataGridColumn() dgc.dataField = "someProperty"; dgc.itemRenderer = new ClassFactory

RE: [flexcoders] Fetching a xml file in a way that works via file:// and http://??

2008-02-26 Thread Alex Harui
Relative paths? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Tuesday, February 26, 2008 9:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Fetching a xml file in a way that works via file:// and http://??

RE: [flexcoders] Re: How to get all itemrenderer instances of a tree?

2008-02-26 Thread Alex Harui
mouseDown events bubble, so if you listen for mouseDown on the Tree you will see every mouseDown on all renderers, scrollbars, dead space, etc. The event.target of the mouseDown event will point to the renderer or a child of the renderer. Use contains() or owns() or walk the parent chain to se

[flexcoders] Re: How to get all itemrenderer instances of a tree?

2008-02-26 Thread xmwang1982
thanks. I need more help from you guys. Let me explain a little more about my question. The requirement is, all mouseDown events on leaf nodes have to be processed, and the event on branch nodes are not needed to be processed. So I wanted to add event listeners for all leaf nodes in the "creationC

[flexcoders] Fetching a xml file in a way that works via file:// and http://??

2008-02-26 Thread Josh McDonald
Is it possible to fetch a .xml file in a way that will work both over http:// and file:// without using the debug player? It's kind of annoying making everybody who needs to see my work "upgrade" to the debug player, or forcing them to view it through a web server. -J -- "Therefore, send not to

Re: [flexcoders] Re: Passing data from grid row to form components problem

2008-02-26 Thread kapil b
Andrew, Thankyou very much, i think this will help me.. - Original Message From: greenfishinwater <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, 26 February, 2008 8:29:02 PM Subject: [flexcoders] Re: Passing data from grid row to form components problem

[flexcoders] adding columns to datagrid programmatically

2008-02-26 Thread [p e r c e p t i c o n]
dear gurus and other experts... how does one add columns to a datagrid programmatically...and also how so i make editable right inside the grid? for example what if i wanted to have a column with a hyper link another with a numeric stepper another with a text input... thanks percy

[flexcoders] Question about Astro ( Flash 10 )

2008-02-26 Thread Jerome Clarke
One of the main things that is bothering me about Flash/Flex/AIR is that when we come to do alot of processing... it slows down or hangs the UI... is Astro ( Flash 10 ) going to allows us to do make our own multi thread/asynchronous functions. I'm assuming yes because I've read that Astro can work

RE: [flexcoders] Run-time loading of library symbols as custom class instances: How?

2008-02-26 Thread Alex Harui
If you're using Flash CS3 and publish for player 9, then you can simply use SWFLoader to load the SWF and then make instances of the classes. You should use a LoaderContext(false, ApplicationDomain.currentDomain) to get the classes into the top-level application domain _

RE: [flexcoders] Deep-linking not working in IE7

2008-02-26 Thread Alex Harui
Deeplinking doesn't work very well in file:///. Did you deploy to a server? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jack_freud Sent: Tuesday, February 26, 2008 7:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Deep-li

RE: [flexcoders] CBA Choose AIR

2008-02-26 Thread Dale Fraser
That would be good to know. And I wonder what they are using Flex / Flash / Html etc. Regards Dale Fraser http://learncf.com From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, 27 February 2008 2:57 PM To: fl

Re: [flexcoders] CBA Choose AIR

2008-02-26 Thread Bjorn Schultheiss
I wonder who got that project. Was it in-house? On 27/02/2008, at 2:51 PM, Dale Fraser wrote: http://www.australianit.news.com.au/story/0,24897,23283750-16123,00.html Regards Dale Fraser http://learncf.com

[flexcoders] Flex & ActionScript 3.0 to get Client IP Address and Client Computer Name

2008-02-26 Thread Harry Saputra
Dear All, How to show Client IP Address and Computer Name on our Flex Application ? I have search in google, but the solution is using RemoteObject or HttpService. Is there a way using ActionScript or Flex reference ?

[flexcoders] CBA Choose AIR

2008-02-26 Thread Dale Fraser
http://www.australianit.news.com.au/story/0,24897,23283750-16123,00.html Regards Dale Fraser http://learncf.com

[flexcoders] Deep-linking not working in IE7

2008-02-26 Thread jack_freud
I'm doing some deep linking in Flex Builder 3, using the posted example as a template of how to do it. Everything works fine in Firefox, but in IE7, it won't go back through the history at all. If I pull down the history button, it shows the previous pages as "The page cannot be found". I can't

[flexcoders] Re: How to make Button show when it's outside the parent's boundaries?

2008-02-26 Thread rmarples
The drop-down part of the combo box is not a child of the combo-box but as a top-level pop-up so it exists outside of the combo box's parent. Your button would not do this if it was placed on the canvas. So you'll want to have your button pop-up as well. Check out the PopUpManager class in the docs

[flexcoders] Run-time loading of library symbols as custom class instances: How?

2008-02-26 Thread Alan Shaw
I'm working on a pure AS3 project in FlexBuilder 3. All graphical assets are provided as symbols (with no AS code) in a library swf, exported as this example: symbol Name: cloud01, Class: cloud01, Base class: flash.display.MovieClip. The corresponding class looks like this: package com.my.packag

Re: [flexcoders] missing results in datagrid

2008-02-26 Thread Paul Andrews
Try dataProvider="{form1.lastResult.accountCouponRow}"> Paul - Original Message - From: "vr6stress" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 11:18 PM Subject: [flexcoders] missing results in datagrid > [newbie] > it seems fairly straight forward, i use the httpservice

[flexcoders] WebkitErrorDomain 201 - Safari Error playing Mp3s

2008-02-26 Thread stoff0
I'm creating a media player that plays mp3s from various sources around the internet. For some reason certain songs don't play in safari. When trying to play I receive the following error in the activity monitor: If I'm running my app locally off the file system (ie, running from fb), then the fil

[flexcoders] Re: Flex hummmmmm in PC speakers...bizarre

2008-02-26 Thread Don Kerr
Sorry...just saw these responses. Being a hardware issue makes sense since it localized to a single user on a single PC. I think it may have something to do with the fact that the guy is a Flight Controller and has some "comm" loop apps running. (where they can listen to the voice loops of a Shu

[flexcoders] Re: dot Air installation error 0

2008-02-26 Thread Don Kerr
Haven't found anything on adobe about this desktop shortcut bug. Anyone? --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > Scenario: > Running new Air 1.0 > Attempting to install a dotAir file, compiled with Flex3 > When, a previous install of the dotAir file exists > >

[flexcoders] Re: DateFormatter and Date Timezone Issue

2008-02-26 Thread Doug Lowder
Hi Phil, You just have the wrong format string for your DateFormatter. HH shows the hour as 1 through 24, which is one too many for 24-hour format (0-23). You want the following: JJ specifies the hour in 24-hour format. --- In flexcoders@yahoogroups.com, "Phil Heinz" <[EMAIL PROTECTED]> w

Re: [flexcoders] A Weird DataGrid

2008-02-26 Thread Maciek Sakrejda
I think you're better off with a custom component (perhaps implemented as an HBox of List controls). A DataGrid does indeed intend to show *rows* of data. You'll be fighting the component's basic design idea the whole way if you start with a DataGrid. You should also consider the user interface im

[flexcoders] DateFormatter and Date Timezone Issue

2008-02-26 Thread Phil Heinz
To illustrate this issue, I have the following application: http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="init()"> The output in the two fields shows: Tue Feb 26 16:16:32 GMT-0

[flexcoders] A Weird DataGrid

2008-02-26 Thread jiggy
Hi, folks, I am trying to do something weird with datagrid, which will be described a bit later. Please let me have your insights about if it is the right direction or not. I would like to have a table about 30 rows by 19 columns, which will present information about cars. Each column represents

Re: [flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-26 Thread Omar Fouad
Ok I did it and It worked perfectly... thanks so much... But what about adding security such as DBO or MDB2?? On Tue, Feb 26, 2008 at 8:31 PM, Abyss Knight <[EMAIL PROTECTED]> wrote: > Of course, Ben is right, this would work too. :) Of course, remember > to prepare the SQL statement using DBO

[flexcoders] missing results in datagrid

2008-02-26 Thread vr6stress
[newbie] it seems fairly straight forward, i use the httpservice to call a url with a couple of requests. i get the result and can display the raw data. but when i try to put it in a datagrid i get nothing. of course i get cannot bind errors - but i have another test to a different feed that works

RE: [flexcoders] problem running in flex 3 what does run in flex 201

2008-02-26 Thread Justin DeVuyst
I don't think so. I moved my flex2 sdk directory and I wrote up hard coded compiler cmdlines instead of using ant. Same result. Is there a way I can verify the compiler version and/or the swc versions? The compiler -version flag returns the same string for both flex 2 and 3. I don't know how t

[flexcoders] Re: "Zero line" drawn on plot chart

2008-02-26 Thread Geoffrey
Yea, that was it! I'm sure you could color that line something other than blue for that other post. Thanks! Geoff --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > I see what you mean. At least I think I do. Try this in your > declaration: > > > > > > Th

[flexcoders] Re: Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Mike Morearty
In case it helps, Flex Builder 3 includes both Flex 2.0.1 and Flex 3 in the box. You can set a workspace-wide default for which SDK to use for all projects in that workspace (preferences, Flex > Installed Flex SDKs), and you can also override that default on a per-project basis (Project > Properti

[flexcoders] Re: "Zero line" drawn on plot chart

2008-02-26 Thread Doug Lowder
I see what you mean. At least I think I do. Try this in your declaration: There are other options with the GridLines class that you may want or need to set as well. --- In flexcoders@yahoogroups.com, "Geoffrey" <[EMAIL PROTECTED]> wrote: > > That property actually removes the thick lig

Re: [flexcoders] TextArea and line endings

2008-02-26 Thread Jamie S
I just had to deal with this problem. Just replace "\r\n" with "\n". myText.replace("\r\n", "\n"); Jamie On Tue, Feb 26, 2008 at 2:55 PM, Maciek Sakrejda <[EMAIL PROTECTED]> wrote: > > > > > > > We have a TextArea that displays text pulled in from a database. That > text uses Windows line endin

[flexcoders] TextArea and line endings

2008-02-26 Thread Maciek Sakrejda
We have a TextArea that displays text pulled in from a database. That text uses Windows line endings: \r\n. The TextArea seems to display a line break for \r and another for \n. Is there any way around this? Ideally, we'd like to handle heterogeneous line endings gracefully (i.e., detect whether a

[flexcoders] Re: "Zero line" drawn on plot chart

2008-02-26 Thread Geoffrey
That property actually removes the thick light blue line that is drawn between the chart body and the actual axis labels. This is not the "zero line". I'm using a PlotChart, so I've checked all of its properties and those of LinearAxis and DateTimeAxis. Nothing stands out. ~Geoff --- In flexc

Re: [flexcoders] Flex 3 & flex 2.01 side by side

2008-02-26 Thread Matt Chotin
Yes, both can be installed on the same computer. Additionally, Flex Builder 3 supports projects that are compiling for 2.0.1 my using our multi-sdk feature. Video explanation found at http://www.adobe.com/products/flex/features/flex_builder/. Matt On 2/26/08 5:58 PM, "aceoohay" <[EMAIL PROT

[flexcoders] Re: "Zero line" drawn on plot chart

2008-02-26 Thread Doug Lowder
Check out the showLine style of AxisRenderer. Seems like showLine="false" ought to do what you want. --- In flexcoders@yahoogroups.com, "Geoffrey" <[EMAIL PROTECTED]> wrote: > > Is there a way to turn off the line that gets drawn to show where 0 > (zero) is along the y axis? My y axis is a Line

[flexcoders] Flex 3 & flex 2.01 side by side

2008-02-26 Thread aceoohay
I need to start testing with Flex 3, but I have production work to continue with Flex 2.01. Can I have both running on the same computer? If so is there anything that I need to be aware of? Paul

[flexcoders] Re: How to find a host name for a server

2008-02-26 Thread Manjith
ilder we used and availability of these commnads. We use Flex 2.0.1 which doesn't coer most of these commnads. For example mx.manager.IBrowser. therefore is there any easy way for us to find url details within Flex 2.0.1 Thanks Manjith --- In flexcoders@yahoogroups.com, "Sujit Reddy" <[EMAI

[flexcoders] Re: Colouring the zero line on a chart axis

2008-02-26 Thread Geoffrey
Yea, and I want to turn it off (or set it to the same color as the background). --- In flexcoders@yahoogroups.com, "leonpidgeon" <[EMAIL PROTECTED]> wrote: > > Hi > > i have a chart with where the y-axis is -200 to 200 and want to know if > there is a way to change the look of the zero axis whic

[flexcoders] "Zero line" drawn on plot chart

2008-02-26 Thread Geoffrey
Is there a way to turn off the line that gets drawn to show where 0 (zero) is along the y axis? My y axis is a LinearAxis with a minimum less than 0 (zero). I have baseAtZero set to false, and autoAdjust set to false. Thanks, Geoff

RE: [flexcoders] problem running in flex 3 what does run in flex 201

2008-02-26 Thread Alex Harui
Looks like you may be compiling in the 2.0.1 libraries. Make sure your paths are up to date. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Justin DeVuyst Sent: Tuesday, February 26, 2008 1:17 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Sprite.children

2008-02-26 Thread Gordon Smith
> So how come you don't sub class Array and add an 'on added' event that tells the Player when something is added? One reason is that there is no way that even a subclass of Array could know when children[i] was assigned a new value. (EcmaScript and ActionScript have ino equivalent of a setter fu

[flexcoders] Re: New files in project not compiled? RESOLVED

2008-02-26 Thread Barnaby Jones
I put a dummy reference to the "missing" classes, and then the ide decides they are worth compiling, and does so. Before everyone laughs at my ineptitude, I'd like to explain what I was doing. I'm using a rails back end, and returning a collection of objects that map to AS objects. On the rails

[flexcoders] Re: Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Jeff Hindman
Flex Builder ... Thanks, --Jake --- In flexcoders@yahoogroups.com, "Peter DeHaan" <[EMAIL PROTECTED]> wrote: > > Flex Builder or Flex SDK? > > > > You can get the SDK from > http://labs.adobe.com/technologies/flex/sdk/flex2sdk.html > > > > > > From: fle

RE: [flexcoders] Re: Embedded fonts not working in Flex 3?

2008-02-26 Thread Gordon Smith
Sorry... I read further and see that you're getting a Java NullPointerException. I think we'll want to fix that! Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Tuesday, February 26, 200

[flexcoders] problem running in flex 3 what does run in flex 201

2008-02-26 Thread Justin DeVuyst
Hello, I have an app that works when compiled with flex 201. It is a non-trivial setup. I have a loader app that uses framework.swc and flex.swc as RSLs. The loader app then manually loads any custom RSLs we have (we have one at the moment) the style swf, and finally the app swf. Note that the

[flexcoders] How do I connect LCDS Remoting to a CFC in another folder and port?

2008-02-26 Thread flexuser1
Well I want to use mx:Remoting but my application is on localhost:8700 and my authentication.cfc (which I use to check login details) is in localhost:8500/CFC My question is: How do I use the remoting to set the proper destination and source? Do I have to move the CFC files elsewhere, or can I jus

RE: [flexcoders] Decrease vertical space between children of VBox

2008-02-26 Thread Merrill, Jason
Bam! verticalGap was it, thanks! Jason Merrill Bank of America GT&O L&LD Solutions Design & Development eTools & Multimedia Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies? Check out our inter

RE: [flexcoders] Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Peter DeHaan
Flex Builder or Flex SDK? You can get the SDK from http://labs.adobe.com/technologies/flex/sdk/flex2sdk.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Hindman Sent: Tuesday, February 26, 2008 12:29 PM To: flexcoders@yahoog

Re: [flexcoders] Re: New files in project not compiled?

2008-02-26 Thread Paul Andrews
Look for a binding with a missing closing brace.. Paul - Original Message - From: "Barnaby Jones" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 8:46 PM Subject: [flexcoders] Re: New files in project not compiled? >I have cleaned the project( many times actually ). I also ch

Re: [flexcoders] Re: New files in project not compiled?

2008-02-26 Thread Aaron Miller
What happens when you try to use the class with the syntax error. Just curious. Regards, ~Aaron On 2/26/08, Barnaby Jones <[EMAIL PROTECTED]> wrote: > > I have cleaned the project( many times actually ). I also checked the > package names and they are correct. I even deleted the package and >

Re: [flexcoders] Decrease vertical space between children of VBox

2008-02-26 Thread Daniel Freiman
verticalGap. I believe it is a style, not a property. - Dan Freiman On Tue, Feb 26, 2008 at 3:37 PM, Merrill, Jason < [EMAIL PROTECTED]> wrote: > How do I decrease the vertical space between these two labels? I tried > adding a spacer but it has no effect. Also tried looking in help for > any

[flexcoders] Re: AIR v1 - Initial blank screen

2008-02-26 Thread Tom Sobut
I found the problem. If you declare minWidth and minHeight in your WindowedApplication tag, and the values are equal or greater than the initialWindow height and width values in your descriptor file, the initial application window appears empty until you resize. SoDON"T DO THAT! Tom

[flexcoders] Re: New files in project not compiled?

2008-02-26 Thread Barnaby Jones
I have cleaned the project( many times actually ). I also checked the package names and they are correct. I even deleted the package and ctrl+spaced to let FB generate the package declaration. Still no luck :( --- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > >

Re: [flexcoders] New files in project not compiled?

2008-02-26 Thread Jeffry Houser
Try cleaning the project. It's a menu item option. Barnaby Jones wrote: > > > My flex project (using flex builder 3) has somehow gotten into a state > where any new AS class I add to the project is not even attempted to > be compiled. I throw tons of syntax errors into it, and the project >

RE: [flexcoders] Re: referencing a private function

2008-02-26 Thread Gordon Smith
You're quite right... sorry I forgot this exception. If a class C decides to pass a reference-to-one-of-its-private-methods to code outside C, then any code that gets that reference can call the private method. The point is that if you're the author of C, then you have the prerogative to publicize

RE: [flexcoders] New files in project not compiled?

2008-02-26 Thread Merrill, Jason
Have you also tried cleaning the project? Jason Merrill Bank of America GT&O L&LD Solutions Design & Development eTools & Multimedia Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies? Check out

Re: [flexcoders] New files in project not compiled?

2008-02-26 Thread Paul Andrews
In Flex 2 the only time that happens to me is when I mess up the package names.. Paul - Original Message - From: "Barnaby Jones" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 26, 2008 8:35 PM Subject: [flexcoders] New files in project not compiled? > My flex project (using flex buil

[flexcoders] Decrease vertical space between children of VBox

2008-02-26 Thread Merrill, Jason
How do I decrease the vertical space between these two labels? I tried adding a spacer but it has no effect. Also tried looking in help for any properties of Vbox I can set, but to no avail. Thanks.

[flexcoders] New files in project not compiled?

2008-02-26 Thread Barnaby Jones
My flex project (using flex builder 3) has somehow gotten into a state where any new AS class I add to the project is not even attempted to be compiled. I throw tons of syntax errors into it, and the project builds just fine. If I put an error in an already existing file, the build fails and repo

[flexcoders] unable to access UserTransaction in DataService on Websphere 6.0

2008-02-26 Thread msankar_igst
Hi All, I downloaded Life Cycle FDS and configured into Websphere application server 6.0. I deployed flex.war, flex-admin.war and samples.war into Webshpere 6.0. I can able to access all these 3 web modules. samples web application using 2037 RTMP port and port is listening. I can able to re

[flexcoders] Flex 3 is cool ... but I still need 2.0.1

2008-02-26 Thread Jeff Hindman
Is it still possible to download Flex 2.0.1 from the Adobe website? I couldn't seem fo find it anywhere ... Thanks -- -- jake

[flexcoders] Drag and Drop between NativeWindows

2008-02-26 Thread Nick Collins
Does anybody have any examples of being able to drag from one native window to another? I've tried both the DragManager and the Native Drand and Drop functionality, but neither seem to work for this case. Whenever my dragging leaves the window, it cancals the drag.

[flexcoders] How to make Button show when it's outside the parent's boundaries?

2008-02-26 Thread wwaishan
I have a Canvas with one Combobox and one Button within. I'm trying to visually append the button below the dropdown so the button looks like it's part of the dropdown. On the DropdownEvent.OPEN event, the button is moved to be below that dropdown. On the DropdownEvent.CLOSE event, the button's

[flexcoders] testability in flex w/cairngorm

2008-02-26 Thread researchinmachine
Hello there, Looking to see how smooth will it be to separate cairngorm apart and for example swap the User Interface with a bunch of set commands. i.e I want to unit test, and pretend as if I'm playing a game made in Flex with visual controls. But, instead of clicking I'm just submitting com

[flexcoders] Family Tree / Flow chart

2008-02-26 Thread Murali sankar
Hi All, I am new to Flex. I want to develop a organization structure like in geni.com. Can you please help me anyone, How to develop or where can i get that kind of component? Thanks in advance Murali Sankar - Looking for last minute shopping

Re: [flexcoders] Re: images dissappearing on zoom

2008-02-26 Thread Daniel Freiman
That is confusing. I'll look into it after work if I have time. - Dan Frieman On Tue, Feb 26, 2008 at 1:13 PM, mr.octopz <[EMAIL PROTECTED]> wrote: > Thanks thats helpful. I'm still cunfused though because if I wrap the > image in a swf before I load it into the app I don't see the problem, >

RE: [flexcoders] Be the tree, Bob

2008-02-26 Thread Maciek Sakrejda
You may also want to consider the WindowShade component from FlexLib, instead of the ComboBox: http://flexlib.googlecode.com/svn/trunk/examples/WindowShade/WindowShade_Sample.swf I found the kmossman example a little confusing to navigate, since clicking on some things selected them (and collapsed

RE: [flexcoders] Be the tree, Bob

2008-02-26 Thread Brad Bueche
Thanks for the feedback Peter and Alex! I have also found these two possible solutions: http://cyberdust.wordpress.com/2007/02/23/introducing-selecttree-the-dro p-down-tree-control/#comment-4946 However, this guy did part of it with cf and I'm getting an 1180 Error "Call to possibly undefined

[flexcoders] Drag Move & Drop help needed with NESTED list items...

2008-02-26 Thread Boson Au
hi everyone, this is making me contemplating switching fields to carpentry. here's the gist of it: I'm trying to build a 'libray' of sorts that have folders of items... basically the idea is to have folders that can have subfolders too. here's the xml http://distance.jhsph.edu/bau/flex/dragDrop

[flexcoders] Re: Failure to access a WSDL file from Flex's WebService class over HTTPS on IE

2008-02-26 Thread eyal_c
Hi All, I would like to thank all who tried to help, i was finally able to solve the problem by: 1. Install all 3 FlexBuilder hotfixes. 2. Add the following http headers: header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header('Pragma: private'); In two places: a. In a php s

RE: [flexcoders] Be the tree, Bob

2008-02-26 Thread Peter DeHaan
You could also try something like this: And then tweak it slightly to fit your needs. Peter From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Tuesday, February 26, 2008 10:0

[flexcoders] Possible to gray out certain bars in a columnchart?

2008-02-26 Thread Rick Schmitty
In this modified example, I'd like to be able to gray out countries with less than 20 medals. Is it possible through styling or do I need to get fancy with the dataprovider and work with 2 possible series? http://www.adobe.com/2006/mxml";>

[flexcoders] Re: referencing a private function

2008-02-26 Thread Dominic Pazula
Ok, so let's take a step back. I completely understand protect/private/public concept. I think I am was having a problem with the mechanics of what is happening behind the scenes. I actually just figured out what I need to do. I didn't have the try/catch block in my code, I was using this.ha

[flexcoders] Re: referencing a private function

2008-02-26 Thread rwinscot
Gordon - the application of such capability is arguable that is true... but the capability to pass references is absolute. One could for instance... create a custom event handler that passes a reference to the private/internal function to event subscribers. If this were truly and absolute - composi

[flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-26 Thread Abyss Knight
Of course, Ben is right, this would work too. :) Of course, remember to prepare the SQL statement using DBO or MDB2 to prevent injection, or use addslashes/mysql_escape_string. -- William --- In flexcoders@yahoogroups.com, Ben Marchbanks <[EMAIL PROTECTED]> wrote: > > Why not submit as a regular

[flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-26 Thread Abyss Knight
If I were you, I would just print_r or vardump the contents of $_GET['DataSent'] or even $_REQUEST (everything on the page) and examine the output of the json_decode. I have a hunch you're not getting an array, but rather an object when you decode. -- William --- In flexcoders@yahoogroups.com, "

RE: [flexcoders] Re: Flex 3 and AIR 1 are now live!

2008-02-26 Thread Gordon Smith
> No one has chipped in claiming to build it first on a Mac... or Linux! Gordon Smith Adobe Flex SDK Team -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Tuesday, February 26, 2008 2:03 AM To: flexcoders@yahoogroups.com Subj

[flexcoders] Flash Container Components and Event Handling

2008-02-26 Thread cougar_shuttle
I made a change to my Flash Container (built similarly to the examples at http://flexwiki.adobe.com/confluence/display/ADOBE/Flex+3+Details+-+Flex+Component+Kit) and have accidentally disabled my event handlers. I have a separate Flash Component that receives mouse+keyboard and sends custom event

Re: [flexcoders] Flex and PHP Issue. Please help!!!

2008-02-26 Thread Ben Marchbanks
Why not submit as a regular POST ? ---snippet- var params:Object = new Object() params.UserName = PostUserNameTF.text PostUser.send(params). --Then handle the POST in PHP.--- foreach($_POST AS $key => $values) { ${$

RE: [flexcoders] Re: Embedded fonts not working in Flex 3?

2008-02-26 Thread Gordon Smith
> I guess advanced anti-aliasing isn't supported in the Open Source SDK? Correct. The JARs that supported advanced anti-aliasing are in the repo, but not their source code, and I don't think the JARs are redistributable. (Matt, is this correct?) Gordon Smith Adobe Flex SDK Team _

[flexcoders] Re: images dissappearing on zoom

2008-02-26 Thread mr.octopz
Thanks thats helpful. I'm still cunfused though because if I wrap the image in a swf before I load it into the app I don't see the problem, but if I load the image directly I do. Paul

RE: [flexcoders] referencing a private function

2008-02-26 Thread Gordon Smith
To add to what Alex has said... In AS3, access specifiers such as 'protected' and 'private' aren't just compile-time concepts, they're also runtime concepts that are rigorously enforced by the ActionScript Virtual Machine. If your class makes something private, it is really inaccessible except by y

RE: [flexcoders] Re: referencing a private function

2008-02-26 Thread Alex Harui
Event.item in an itemClick is not the MenuBar, so I don't see how it can be a function in the same file. Even if it is, there is no guarantee that it is the same object, so you still can't call it if it is private. From: flexcoders@yahoogroups.com [mailt

RE: [flexcoders] List ItemRenderer and variableRowHeight

2008-02-26 Thread Alex Harui
Unless you want the TextArea's scrollbars, you should just set wordWrap=true and the default renderer will take care of it. If you want to customize the renderer, copy the code and modify it. TextArea is a bit heavy for renderers especially if you don't need the scrollbars, and the default render

RE: [flexcoders] Be the tree, Bob

2008-02-26 Thread Alex Harui
Start with setting dropDownFactory=Tree. There might be some other things that need fixing though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brad Bueche Sent: Tuesday, February 26, 2008 9:41 AM To: flexcoders@yahoogroups.com Subje

[flexcoders] List ItemRenderer and variableRowHeight

2008-02-26 Thread Phil Heinz
I have a List component with a custom item renderer. The List is set to variableRowHeight=true. In the renderer is a regular TextArea component that I want to grow in size vertically for the longer data strings. My problem is I don't quite understand how to automate the process of sizing the Text

RE: [flexcoders] Using embeded icons in MenuBar

2008-02-26 Thread Alex Harui
The icon field holds the name of the image class, and we have to look it up somewhere to convert it to an actual class and where we look is the MenuBar's document. That's why they must be instance variables of the same MXML file as the MenuBar. Statics won't work and other documents won't work ei

[flexcoders] Flex 3: The Problem with Repeater with recycleChildren=true and states

2008-02-26 Thread tearaway_tea
Hi guys, After installing Release of Flex 3 I have received a lot of surprises. So, first of them is the exception: RangeError: Error #2006: The supplied index is out of bounds. at flash.display::DisplayObjectContainer/setChildIndex() at mx.core::UIComponent/setChildIndex()

[flexcoders] Flex and PHP Issue. Please help!!!

2008-02-26 Thread Omar Fouad
In my flex application i have a form with some text fields. When I submit the form an HTTPService.send() methid is called. http://localhost/Flex/Pastarino/PostUsers.php"; useProxy="false" showBusyCursor="true" resultFormat="text" result="PostNewUserResponse(event);"> the func

[flexcoders] Re: referencing a private function

2008-02-26 Thread Dominic Pazula
I understand the public/private nature of referencing the function from outside the component. However, this is inside the same component. The function resides one line down from the function I posted. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You have t

  1   2   >