[flexcoders] Slider TrackHighlight Bug

2006-05-31 Thread Sreejith Unnikrishnan
The TrackHighLight for a vertical slider seems to have a bug. The higlight is not between the "center" of the thumbs. They seem to start and endjust after the thumb width. See screenshot below. Sree -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Have you tried to output to Alert window or logging console the value of the variable parentApplication.myImage? Very interesting results :) I got __Resources.654702660.green.gif, what got you? ;) mx:Image source={ parentApplication.myImage } / -- Best regards, Andriy

Re: [flexcoders] Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Just fYI, in Flex 2 it should be easy to achieve what do you want to have in Flex 1.5. See example of Chafic Kazoun's method posted at Peter Elst blog: http://www.peterelst.com/blog/2005/11/19/spark-europe-chafic-kazoun/ mx:Image source={ parentApplication.myImage } / --

[flexcoders] Bugs I wish fixed for the next version Flex 2.0 Beta3

2006-05-31 Thread sourcecoderia
A couple of little bugs I hope make it into the next beta/final product. The numeric stepper does not respond to tab focus properly always last to get the focus when tabbing regardless of the tab index. I have only tested this in a title window. The tree control is all out of wack Drop

Re: [flexcoders] [F2 B3] Calling functions on loaded SWF

2006-05-31 Thread Claudia Barnal
Yeah, I am using the Loader and content property, but I can't get access to the _methods_ inside a Script tag within the Application (main.mxml) of the loaded SWF. Am I supposed to put the functions somewhere else, or is there something else I might be missing? Thanks, Claudia On 5/30/06,

Re: [flexcoders] Save a BitMap to the server as a jpg? flex2

2006-05-31 Thread Nehal Gandhi
i guess u need to use php this link might help uhttp://stimpson.flashvacuum.net/mt/archives/2006/01/looking_for_the.html -NehOn 5/31/06, rigidcode [EMAIL PROTECTED] wrote: If I create a BitMap (or BitMapData) in Flex, how can I save it to the server as a jpg? thank you. rc --

[flexcoders] Re: Setting Charts' Parameters in Runtime

2006-05-31 Thread vebazzo
Flex 1.5 --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: Flex 1.5 or 2.0? Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vebazzo Sent: Tuesday, May 30, 2006 6:22 AM To:

[flexcoders] Flash Softphone

2006-05-31 Thread crizkari
Hello anyone want to help me build a flash interface for a voip softphone using flex. The back end is ready and based on Java Application Layer, C++ embedded web server, and a C/C++ JNI API. The rest of the code is separated into reusable component libraries. Regards C. kari --

[flexcoders] SWF Loader TitleWindows / Pop ups

2006-05-31 Thread owen.batt
I'm not sure if this is a feature or a bug, but something that is driving us mad is the inability for a loaded SWF movie (a Flex created one) not to being able to spawn TitleWindows or any Alerts etc. We have many instances of requiring such functionality - we could always extend your class,

[flexcoders] Skinning components

2006-05-31 Thread Bjorn Schultheiss
Hey, Im following Peter Ents example of skinning a component. Heres the code I have created, ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml width=550 height=500 mx:Script ![CDATA[ [Embed(source=library.swf, symbol=loginDetails_mc)]

Re: [flexcoders] Save a BitMap to the server as a jpg? flex2

2006-05-31 Thread Tim Scollick
If .png is an option instead of .jpg, you could compress it on the client using this:http://www.kaourantin.net/2005/10/png-encoder-in-as3.html. I'm sure you could make jpegs on the client--I'm just not sure how!You send the new byteArray to a server page as the .data field in a URLRequest. A

Re: [flexcoders] Skinning components

2006-05-31 Thread Jeff Tapper
Try adding the Bindable metadata tag to it. [Bindable] [Embed(source=library.swf, symbol=loginDetails_mc)] private var loginDetails:String; [Bindable] [Embed(source=library.swf, symbol=createAccount_mc)] private var createAccount:String; At 08:54 AM 5/31/2006, you wrote: Hey, I'm following

Re: [flexcoders] newbie: deploying

2006-05-31 Thread Will Morgan
Joe - do you have a crossdomain.xml file on your server? http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213Will. On 5/30/06, josulliv101 [EMAIL PROTECTED] wrote: Hi, When I view my flex 2 beta 3 app via the flex builder build button (viewing it locally), I can see my

RE: [flexcoders] How to make a components to show its tooltip without point mouse to it?

2006-05-31 Thread Matt Horn
Use the ToolTipManager to create a tooltip on your event, like this (from ToolTips chapter of Flex 2.0 Developers Guide):?xml version=1.0?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml initialize=createBigTip(event) mx:Script![CDATA[ import mx.managers.ToolTipManager; import

[flexcoders] Flex 1.5 - windows memory usage

2006-05-31 Thread Robert Brueckmann
Just wanted to take a poll on size of Flex app versus memory usage in windows when using Internet Explorer and Firefox. I have a rather large application and pretty much everything in the damn thing needs to be created dynamically based on user privileges and entitlementapplications

[flexcoders] Re: newbie: deploying

2006-05-31 Thread josulliv101
Hi, I don't have any pointers to any files outside the domain (just 3 local xml files) so I thought I did not need crossdomain.xml? Is this correct? -Joe --- In flexcoders@yahoogroups.com, Will Morgan [EMAIL PROTECTED] wrote: Joe - do you have a crossdomain.xml file on your server?

[flexcoders] Webservices using Service Locator pattern in cairngorm

2006-05-31 Thread praful . aggarwal
Does someone have any example of how to make a WebService call (that takes some request parameters) using the ServiceLocator pattern in Cairngorm ? Any help would be highly appreciated. Regards, Praful Wrinkles should merely indicate where smiles have been - Mark Twain Savings - Home

[flexcoders] Flex 1.5 :: Disabling multiple validators of a Model

2006-05-31 Thread Pablo Apanasionek
Fellows Coders, how can I enable/disable a set of validators of a Model without doing it individually for each of one? E.g. mx:Model id="ModelTest" oneProp{oneText.text}/oneProp twoProp{twoText.text}/twoProp /mx:Model mx:StringValidator field="ModelTest.oneProp" required="true"

Re: [flexcoders] Re: newbie: deploying

2006-05-31 Thread judah
Hi Joe, You need to copy out the js files in the bin directory: AC_OETags.js history.htm history.js I didn't see where the list of these are (I know they are in the help somewhere) but upload these and try it again. Judah josulliv101 wrote: Hi, I don't have any pointers to any files

[flexcoders] Re: Question on CF components created by the Flex Wizard

2006-05-31 Thread g8torjoe
Maybe I am being a little vague on what I am hoping for. My table has a field ID that is an auto-number field and the primary key. That is the ID I am hoping to find in the result event. I ran the code you provided and did not find the record ID as I hoped, although I found several ID

[flexcoders] Re: Flash Softphone

2006-05-31 Thread owen.batt
Hi Kari I would certainly be interested in having a chat about your softphone project Flex requirements. Such an application interests me quite a lot. Cheers Owen --- In flexcoders@yahoogroups.com, crizkari [EMAIL PROTECTED] wrote: Hello anyone want to help me build a flash interface

[flexcoders] Re: Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Renaun Erickson
Thats what I got too, it which means it has a valid value but nothing shows up. And this is where I am not understanding what Flex is doing, if the value it correct and it still doesn't show up in the Image component something else is going on. Renaun --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Question on CF components created by the Flex Wizard

2006-05-31 Thread g8torjoe
OK, Bill, I think I got it. I see that the save function returns nothing (void), so I changed that to String and then added: cfreturn variables.ID / to the end of the save function and I get my result. I'm not sure if that is the right way to go about it, but it works! Thank you again for

[flexcoders] Re: Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Renaun Erickson
Andriy, Thanks for the post, Linking assets from libraries is also available in Flex 1.5, but I want to link specific assets at Runtime and not a whole library. @Embed('myLibrary.swf#myLinkage') I'll take a look at the library feature.

Re: [flexcoders] Re: Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Wednesday, May 31, 2006, 5:45:06 PM, you wrote: And this is where I am not understanding what Flex is doing, if the value it correct and it still doesn't show up in the Image component something else is going on. Let's then use RSL in Flex 1.5 whenever you want to share

[flexcoders] ( flex 2 beta 3 )How to do drag and drop from DataGrid to Tree in beta3?

2006-05-31 Thread sampath reddy
hi, can any one please send code for drag the row from DataGrid to Tree node? --sam Send instant messages to your online friends http://in.messenger.yahoo.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Flex 1.5 :: Disabling multiple validators of a Model

2006-05-31 Thread Tom Chiverton
Can you do mx:StringValidator field=ModelTest.oneProp required=true enabled={modelLocator.doVal}/ mx:StringValidator field=ModelTest.twoProp required=true enabled={modelLocator.doVal} / and then just set modelLocator.doVal to true/false in your actionscript ? -- Tom Chiverton

[flexcoders] An internal build error has occurred. Please check the Error Log.

2006-05-31 Thread João Fernandes
Hi there, Does anyone know where I can find this log? Im getting this because I picked DataService using FB to compile my app. I changed the --service param pointing to a local flex-enterprise-services.xml so I can point my data services channels to my dataservice server and my

RE: [flexcoders] Flex 1.5 :: Disabling multiple validators of a Model

2006-05-31 Thread Pablo Apanasionek
Tom, Using enabled property on StringValidator results in: ERROR : Unknown attribute 'enabled' on mx.validators.StringValidator Remember it's Flex 1.5, not Flex 2.0. -- Pablo Apanasionek -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Tom

[flexcoders] Finding coordinates from pop-up window

2006-05-31 Thread Jim Robson
Hello all, I have a feeling that Im missing something obvious, but how do you determine the x and y coordinates - relative to the root application - of an object that resides within a component that is used as a pop-up window? The code below works perfectly if it resides in the

[flexcoders] mouseOver for specific cells in DataGrid?

2006-05-31 Thread djbrown_rotonews
I'm wanting to implement a mouseOver event that is cell-specific for a DataGrid. Does the mouseOver event for the DataGrid itself have knowledge of the row/column that is being hovered over? -- Flexcoders Mailing List FAQ:

[flexcoders] Spacing of repeater objects

2006-05-31 Thread fi_heidi
I am laying out HBox in a Repeater, and I would like them to be completely contiguous, but there seems to be a small space between them. I have set the border,left,right,top,bottom and padding on the HBoxes to zero, however they are still spaced. How can I get rid of this space? Thanks, /Heidi

[flexcoders] Re: Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Renaun Erickson
My thing is I want to have many different SWF's with assets of their own. If I put them all in RSL it would make a RSL with a large size when I will only use one or two. The structure is more like this: swfA - has asset myImage = imageA.gif swfB - has asset myImage = imageB.gif swfC - has

[flexcoders] F2B3: Can TileList automatically resize itself to always show all children?

2006-05-31 Thread revanisle
Hi all, I have a TileList (several actually, but they all work the same) that can contain any number of children. Its width is bound to 100%. What I want is the height to grow and shrink so all children are always visible regardless of how many it contains and how wide the (variable

[flexcoders] Clear Text Passwords printed out when remoteObject debug enabled

2006-05-31 Thread jfournet
Does anyone know how to get rid of the clear text passwords being displayed int the system out of the server when remoteObject Debug is enabled in the flex config. We encrypt the password on the server side. Is their an encryption method in flex? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Flex 2b3 : columnIndex inside labelFunction for dynamic datagrid column

2006-05-31 Thread stchavan
Hi Joan, I presume you meant looking at the dataField attribute of the column so as to compare the column names of the current column with those in the DataGrid.columns array. But in my case since the columns are dynamically created they do not have any column names and hence I cannot use

RE: [flexcoders] Spacing of repeater objects

2006-05-31 Thread Ashish Goyal
You can set verticalGap to 0 if you are using VBox as the parent container of Repeater or horizontalGap to 0 if you are using HBox. -Ashish -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fi_heidi Sent: Wednesday, May 31, 2006 8:31 AM

[flexcoders] Re: Flex 1.5 :: Disabling multiple validators of a Model

2006-05-31 Thread Doug Lowder
The following made validator ebnabling/diabling a bit easier to deal with for me: // Reset the validation model. for (var tagname in myValidationModelId) { var vObjName: String = myValidationModelId. + tagname; Validator.disable(this, vObjName); Validator.enable(this, vObjName); } --- In

RE: [flexcoders] Re: Setting Charts' Parameters in Runtime

2006-05-31 Thread Ely Greenfield
Right then. Assuming your chart has an id of 'chart'. You'd do something like: Var hAxis:LinearAxis = LinearAxis(chart.horizontalAxis); hAxis.minimum = ... Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vebazzo Sent: Wednesday,

RE: [flexcoders] Spacing of repeater objects

2006-05-31 Thread Andrew Trice
Set the horizontalGap attribute of the HBox to zero: mx:HBox horizontalGap=0 -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY From:

Re: [flexcoders] Save a BitMap to the server as a jpg? flex2

2006-05-31 Thread Luís Gustavo Sanabio
I sent the JPEGEncoder.as to your email. 2006/5/31, Luís Gustavo Sanabio [EMAIL PROTECTED]: I have a BitMapData to JPG algoritm for FLEX 2.It's made in AS3.Do you want it? Sorry my English Gustavo Sanábio 2006/5/31, Tim Scollick [EMAIL PROTECTED]: If .png is an option instead of .jpg,

Re: [flexcoders] F2B2 + FDS - Didn't recieve an acknowledge message

2006-05-31 Thread Douglas Knudsen
Nirav, hey, I just ran across this same issue. Try turning the debuggin off on your CF server. Assuming you are using CF, that should do it. DK On 5/23/06, Nirav Mehta [EMAIL PROTECTED] wrote: Hi, We are integrating Flex Beta 2 with FDS, and are getting a Didn't recieve an acknowledge

[flexcoders] [solved] Flex 1.5 :: Disabling multiple validators of a Model

2006-05-31 Thread Pablo Apanasionek
Doug, This worked perfectly (with some adaptation). Thanks a lot! -- Pablo Apanasionek -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Doug Lowder Enviado el: Miércoles, 31 de Mayo de 2006 13:47 Para: flexcoders@yahoogroups.com Asunto:

Re: [flexcoders] [F2 B3] Calling functions on loaded SWF

2006-05-31 Thread Claudia Barnal
I think that is only when you are not trying to communicate between two Flex 2 apps (SWFs). But I am trying to communicate between two Flex 2 SWFs (FP9), But can't find any useful documentation. On 5/31/06, Tim Scollick [EMAIL PROTECTED] wrote: I think that the only way to communicate

Re: [flexcoders] CSS Value for '{cssValue}' not supported

2006-05-31 Thread John Grden
Yep, thanks Wayne, I should have written again, that's essentially what it was ;)thanks for the reply anyway!JGOn 5/29/06, Johnson, Wayne [EMAIL PROTECTED] wrote: Hi John You may want to check for special characters (like underscores!) in the CSS class names . Cheers Wayne From:

[flexcoders] Flex 1.5 : change the loaded swf framerate

2006-05-31 Thread Antoine Malpel
I don't understand how to use a given framerate for an imported SWF (Loader) because the swf I use should run at 7 frames per second but it just seems to run very faster ... It seems there is no way to force that via code from flash, what about Flex ? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Flex Iframe?

2006-05-31 Thread Tim Hoff
There's a good example here: http://www.merhl.com/flex2_samples/iframe/IFrame.htmlRight-Click the program for the source. -TH --- In flexcoders@yahoogroups.com, "parksch2" [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, "parksch2" parksch2@ wrote: Hi all,Does Flex have

[flexcoders] Re: Flex 1.5 : change the loaded swf framerate

2006-05-31 Thread Renaun Erickson
In Flex or Flash, a loaded SWF takes on the FrameRate of the parent SWF. In flex you can set the framerate value for the main application with framerate attribute in the mx:Application tag. Renaun --- In flexcoders@yahoogroups.com, Antoine Malpel [EMAIL PROTECTED] wrote: I don't understand

RE: [flexcoders] Re: newbie: deploying

2006-05-31 Thread Tracy Spratt
I think we need to know exactly what I cannot get it to work. Means. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of judah Sent: Wednesday, May 31, 2006 10:27 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: newbie:

RE: [flexcoders] mouseOver for specific cells in DataGrid?

2006-05-31 Thread Joan Tan
The MouseOver event is a flash MouseEvent, so it does not have any knowledge of the data under it. It does have a localX and locallY property that you might be able to use to figure out what row and column you are at assuming that your rowHeight and column widths are constant. Joan

[flexcoders] Flex 2.0 b3: Custom headerRenderer implementation

2006-05-31 Thread stchavan
Hi, In Flex 2, is there an equivalent for the Flex 1.5 method: setValue (text : String) for a headerRenderer? I need to be able to dynamically set the values of a label displayed in the headerRenderer and also programmatically set an instance variable defined in the headerRenderer. I was

[flexcoders] F2B3: mx.rpc.soap.mxml.WebService omits empty nodes

2006-05-31 Thread ben.clinkinbeard
Hello, I am posting this mostly as a note for others that may run into a problem with this and to make sure this is not a bug. When calling a WebService from MXML, arguments that are empty are not sent at all, which can cause problems if your WS requires they be present. For example, in my

RE: [flexcoders] Re: Question on CF components created by the Flex Wizard

2006-05-31 Thread Bill Sahlas
Yes, that is definitely one way to get it done. Have fun Joe From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of g8torjoe Sent: Wednesday, May 31, 2006 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Question on CF components

[flexcoders] Image Default Preview

2006-05-31 Thread s_hernandez01
I was successful at coding up a tilelist and a preview panel that would go on the side of the tilelist so that when the user clicks on any image, they can preview the image in the preview panel. Now, I want to set the 1st image to default so that when the app opens the first image that is

[flexcoders] Flex + OpenAMF

2006-05-31 Thread Flávio Lúcio Pereira
Hello All... I´m very very begginer with Flex... and, I need help about integration ' Flex + OpenAMF´ . Someone knows an tutorial or same thing? Thankz a lot -- Flávio L. Pereira -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Flex + OpenAMF

2006-05-31 Thread Carlos Rovira
Hi Falvio,You could see a mini POC about Flex2/OpenAMF/Easybeans integration, at :http://www.carlosrovira.com/blog/index.php?s=flopealso, there's more links inside that posts about how to implement an AMF0RemoteObject (written by Xavi Beumala) that's a place where you can start learning.Note

RE: [flexcoders] TabNavigator.horizontalAlign does not work

2006-05-31 Thread Ashish Goyal
This bug is already fixed in post beta3 builds. -Ashish -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Wednesday, May 31, 2006 12:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] F2B3: mx.rpc.soap.mxml.WebService omits empty nodes

2006-05-31 Thread Peter Farland
This is a known issue that should be in releases after beta 3. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Wednesday, May 31, 2006 3:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] F2B3:

RE: [flexcoders] mouseOver for specific cells in DataGrid?

2006-05-31 Thread Gordon Smith
By the way, you almost always should use rollOver/rollOut instead of mouseOver/mouseOut. The mouse versions have the peculiar behavior that mousing over a child cause a mouseOut from the parent, which usually isn't what you want. - Gordon From: flexcoders@yahoogroups.com

RE: [flexcoders] Webservices using Service Locator pattern in cairngorm

2006-05-31 Thread Ben Lucyk
Hey Praful, Youll find a useful link to download Benoit Hediards PhonesCairngorm2 test app here: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg25275.html Take a peek at his PhoneDelegate.as and ApplicationServices.mxml files, as one of his methods uses a parameter in

RE: [flexcoders] Spacing of repeater objects

2006-05-31 Thread Gordon Smith
This affects its children, not its siblings. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andrew Trice Sent: Wednesday, May 31, 2006 9:32 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Spacing of repeater objects

[flexcoders] Re: TabNavigator.horizontalAlign does not work

2006-05-31 Thread ben.clinkinbeard
Fantastic. Thank you. Ben --- In flexcoders@yahoogroups.com, Ashish Goyal [EMAIL PROTECTED] wrote: This bug is already fixed in post beta3 builds. -Ashish -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard

[flexcoders] continuous integration with Flex (1.5) and ASUnit

2006-05-31 Thread Paul BH
Hi All, just a heads up - I finally got around to blogging the work that Peter, Johannes myself Ikezi did on getting CI up and running, would appreciate any comments where anything isnt clear (or Ive missed a step)... I'm going to blog the final part of the process tonight, but if you want

[flexcoders] Extending chart gridlines behind axis labels, and more

2006-05-31 Thread Erki Esken
Hi, I'm trying to customize column chart to look like this mockup: http://esken.net/temp/flex/colchart_mockup.png And I'm quite close: http://esken.net/temp/flex/colchart_flex_test.png I need some help though... How can you extend the background lines to the very left side of chart, so

[flexcoders] dynamic colors for pieseries wedges

2006-05-31 Thread Jason
I'm having a bit of a time figuring this one out. I have a PieChart that I'm using to map data that fits into certain categories. I want to always have each category given a fixed color. So, for example, I might have categories Normal (green), Warning (yellow) and Error (red). I'm throwing

[flexcoders] Flex 2 Beta 3: Move effect no longer respects layout constraints

2006-05-31 Thread Jason Y. Kwong
I have a Canvas with a border and it contains a TextArea. The Canvas is intentionally made larger than the TextArea via layout constraints. I then apply a Move effect to the Canvas. While the Canvas is moving, the size of the Canvas gets reduced to the minimum size required to contain the

RE: [flexcoders] Extending chart gridlines behind axis labels, and more

2006-05-31 Thread Ely Greenfield
Hi Erki. What you're doing is getting pretty far afield from the built in capabilities of the charting package. In Beta3, you're stuck using the default AxisRenderer, which means you have to use the capabilities of the default AxisRenderer. In the next public drop of the charting components,

Re: [flexcoders] accessing HttpService in Beta 3

2006-05-31 Thread sinatosk
you have to use the property lastResult instead of result weird because I'm using beta 3 and I still using resultOn 31/05/06, mikewertheim [EMAIL PROTECTED] wrote: I'm having trouble accessing an HttpService in Beta 3. The problem I'm having is similar to the one described in the

RE: [flexcoders] Flex 2 B3 :: Adding child nodes to XMLListCollection node

2006-05-31 Thread Tracy Spratt
Post a small sample app. I am doing a lot of xml at the moment and would like to take a crack at it. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Torben Nielsen Sent: Wednesday, May 31, 2006 4:33 PM To: flexcoders@yahoogroups.com

[flexcoders] f2b3 + cairngorm f2b3: How to control Views

2006-05-31 Thread riku.raisanen
First of all, hello flexcoders. I'm Riku Räisänen, previous PHP and current Ruby programmer. Looking forward to share experience and knowledge in this board. I'm in the very early stages of building a rather big Flex application. The application should be robust and easy to extend thus

RE: [flexcoders] [F2 B3] Calling functions on loaded SWF

2006-05-31 Thread Stephen Gilson
If you are using Beta 3, you can see an example here: Flex 2.0 Developer's Guide Flex Programming Topics Embedding Assets Embedding asset types Embedding SWF files Embedding SWF files that represent Flex 2.0 applications at

[flexcoders] F2B3: Repeater with e4x XMLList as dataprovider - type conversion error. DataGrid works fine

2006-05-31 Thread Tracy Spratt
Title: F2B3: Repeater with e4x XMLList as dataprovider - type conversion error. DataGrid works fine I am trying to use e4x XML to populate a mx:Repeater, but am getting a runtime type conversion error: TypeError: Error #1034: Type Coercion failed: cannot convert [EMAIL PROTECTED] to

RE: [flexcoders] Slider TrackHighlight Bug

2006-05-31 Thread Joan Tan
I reproduced this issue in the beta 3 build, but the bug is already fixed for our final release. Thanks, Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith Unnikrishnan Sent: Tuesday, May 30, 2006 11:07 PM To:

RE: [flexcoders] f2b3 + cairngorm f2b3: How to control Views

2006-05-31 Thread Steven Webster
Hey Riku, Welcome aboard. First thing I'd add, is that Cairngorm isn't intended to manage the implementation of your view - the intent of the framework is to help you structure the business tier and integration tier of your client side application architecture. We don't feel that a framework

[flexcoders] Sleep function in ActionScript?

2006-05-31 Thread Charles
Hi all, I have this bit of code that does some simple things, but my timing is off. What I do is I make a webservice call to some server, and the server returns me a string of XML. After that, I parse that string of XML into an XMLDocument object, to use as a data provider for a repeater.

[flexcoders] Re: Accessing child nodes from XMLDocument in a datagrid

2006-05-31 Thread Charles
Hi Tracy, Yeah I've actually tried referencing just the child name without the Item before it, but still no luck. I've actually changed my design to use a repeater instead, and it seems to work fine there. Thanks for the reply though! Charles --- In flexcoders@yahoogroups.com, Tracy

RE: [flexcoders] Sleep function in ActionScript?

2006-05-31 Thread Joan Tan
You can use the setTimeout function in the flash.utils package. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Charles Sent: Wednesday, May 31, 2006 3:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sleep function in ActionScript?

RE: [flexcoders] Re: Accessing child nodes from XMLDocument in a datagrid

2006-05-31 Thread Tracy Spratt
Okay. If you have performance issues with Repeater, be sure to set recycleChildren=true. If you still have issues, as you will if you have around a hundred items, consider changing from a scrolling navigation to a page up / page down system. Rendering a scrollable list can take much longer than

Re: [flexcoders] f2b3 + cairngorm f2b3: How to control Views

2006-05-31 Thread Cameron Childress
Riku, Welcome to the list! I'm at the exact point you are. So far, here the experice that's helped me along. First, if you haven't already, read the six article series on the Flex dev center called Developing Flex RIAs with Cairngorm Microarchitecture (under best practices).

[flexcoders] Seeking Flex Web App Developer/UI Expert

2006-05-31 Thread Kristin Miller
BlueRoads (http://www.blueroads.com) is launching the next phase in the company's growth and is in the process of hiring a Web Application Developer/UI Expert to help us build our next-generation user interface for our Channel Management suite of products. If you have 7 to 10 years of user

RE: [flexcoders] Sleep function in ActionScript?

2006-05-31 Thread Tracy Spratt
Nope, you cant do that. The Flash Player, from our perspective, is single threaded. Nothing else can happen during a loop, including receiving any data. Data calls in Flex are asynchronous. You must either bind to the lastResult property, or handle the result data in a handler

[flexcoders] Runtime error requires Flex restart

2006-05-31 Thread ryan84c
I'm using a style sheet in one of my apps and for some reason, every once in a while, I get this error at run-time: TypeError: Error #1010: A term is undefined and has no properties. at mx.styles::StyleManager$/http://www.adobe.com/2006/flex/mx/internal::initProtoChainRoots() at

[flexcoders] setting a property on a textfield not initialy shown yet

2006-05-31 Thread John Grden
I have a textfield I want to set the text to, but it's in a viewStack index that doesn't show until I change the index or click on the buttons. After going to the textfield one time, setting the text is fine. But it's the first time ;) Based on user action, I want to force the viewStack to

RE: [flexcoders] setting a property on a textfield not initialy shown yet

2006-05-31 Thread Tracy Spratt
Since creationPolicy is none by default, you will want to manually force the creation of the children you need. I havent done this in 2.0, so I can just point you to the docs: Using the createComponentFromDescriptor() method Tracy From: flexcoders@yahoogroups.com

RE: [flexcoders] setting a property on a textfield not initialy shown yet

2006-05-31 Thread Tracy Spratt
Heres the full path to the topic: Building and Deploying Flex 2.0 Applications Building and Deploying Flex Applications Improving Startup Performance Creating deferred components From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy

RE: [flexcoders] Help Loading ByteArray into Image

2006-05-31 Thread Ben Stucki
I created a work around for this issue in my recent ID3Stream Example. Its not the ideal solution, but it works. http://blog.benstucki.net/?id=24 http://lab.benstucki.net/archives/id3streamexplorer/srcview/ From: flexcoders@yahoogroups.com

Re: [flexcoders] Sleep function in ActionScript?

2006-05-31 Thread Steve Gustafson
Sho has a 3 part post on how to handle async events. Here is the link to part 1http://kuwamoto.org/2006/05/16/dealing-with-asynchronous-events-part-1/ Gus -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] RemoteObject calls failing

2006-05-31 Thread jrjazzman23
Hi. I'm having trouble getting a simple RemoteObject call to work. Running tomcat 5.5 Here are some pertinent snippets. The call generates this: fault [RPC Fault faultString=Send failed faultCode=Client.Error.MessageSend faultDetail=Channel.Connect.Failed error NetConnection.Call.Failed:

[flexcoders] Looking for a Full Time Flex Ninja for Stealth Startup

2006-05-31 Thread jkay747
Jason Rubin and Andy Gavin (founders of game developer Naughty Dog, the creators of Jak and Daxter and Crash Bandicoot) are working on a new web-based project, and in our quest to bring next-generation interactivity to the Web, we're looking for someone with tons of experience building large,

[flexcoders] is a header renderer supposed to remember it's state?

2006-05-31 Thread Jon Hirschi
So I've been messing around with a DataGrid headerRenderer, trying to use a check box to select/unselect a bunch of other check boxes in a data grid. What I'm running into is that if I send out an itemUpdated event or if I update the dataProvider in such a way that it fires off the itemUpdated

Re: [flexcoders] Extending chart gridlines behind axis labels, and more

2006-05-31 Thread Erki Esken
On 6/1/06, Ely Greenfield [EMAIL PROTECTED] wrote: 2) write a custom chart component that implements the gridlines you want. The gridlines that appear in a chart by default are really just another charting component that gets inserted, by default, into the 'backgroundElements' property of