RE: [flexcoders] Advanced Datagrid

2009-04-28 Thread Tracy Spratt
There are very few use cases where it is appropriate to access dynamic data directly from a control. You may have such a case, but remember that data is displayed by itemRenderers, which are recycled, so at best you could only access the visible rows data. If I have understood you and that is

[flexcoders] Re: Advanced Datagrid

2009-04-28 Thread senthilkumarirtt
hi...i have tree in advanced datagrid like this +NewAccount +Account Updates +IncomingAccountTransfer If i click '+' symbol,it wil expand like -NewAccount opened Inprogress Completed -Account Updates Inprogress Rejected -IncomingAccountTransfer Inprogress Rejected this tre

[flexcoders] Printing on Mac

2009-04-28 Thread stephen_anson
Hi, Anyone any idea why printing on Mac might result in an empty page whereas on windows its fine? I'm using all the standard techniques, with Print jobs etc. But I am not adding the print sprite to the stage. I am guessing that there is some difference in the way the flash players implement

Re: [flexcoders] Printing on Mac

2009-04-28 Thread Toby Tremayne
yes it's to do with a rounding error when measuring the page height. Check this out: http://bugs.adobe.com/jira/browse/SDK-18976 the attached class has been helpful to us in eliminating the blank pages. Toby On 28/04/2009, at 5:34 PM, stephen_anson wrote: Hi, Anyone any idea why

[flexcoders] Only Flex and LDAP

2009-04-28 Thread smgbbk
LDAP server server Hi team, thanks for ur coordination... Can all make the needful My question is Without any java class ,blazeds,I have to get connected only Flex and LDAP For that ..what i have to do Please get the answers Regards, smgbbk

[flexcoders] Sending Emails

2009-04-28 Thread christophe_jacquelin
Hello, I am searching source code to send Emails in a flex application with php/httpservice ? Thank you, Christophe,

[flexcoders] Re: New Into Flex

2009-04-28 Thread valdhor
Take a look at WebORB's .NET tutorials at http://www.themidnightcoders.com/products/weborb-for-net/overview.html --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: @Brad and @Greg, Thanks for the heads up.  I have already bookmarked cflex.net after looking at some

[flexcoders] Re: flexcommon library 1.0 released

2009-04-28 Thread smitade
Documentation link doesn't work for me - opens as html text in browser.

RE: [flexcoders] Re: New Into Flex

2009-04-28 Thread Angelo Anolin
Thanks for the heads up.   I have tried to get some datatable/dataset into my first application.   I am getting the error: [RPC Fault faultString=Security error accessing url faultCode=Channel.Security.Error faultDetail=Unable to load WSDL.  If currently online, please verify the URI and/or

Re: [flexcoders] Sending Emails

2009-04-28 Thread Felipe®
http://blog.mxml.com.br/formulario-de-contato-em-flex-sem-amfphp Valeu! - Original Message - From: christophe_jacquelin To: flexcoders@yahoogroups.com Sent: Tuesday, April 28, 2009 7:07 AM Subject: [flexcoders] Sending Emails Hello, I am searching source code to

[flexcoders] Line Series - does not show anything for single data point

2009-04-28 Thread rviswanathan
Hi I am trying to plot a line series; it works fine when I have multiple data points, however it doesn't work when I have just one data point. I am trying to see if this one data point can show up as a circle rather than not showing up anything at all. SWF and source attached. The chart

[flexcoders] How can I pass a var to a class???

2009-04-28 Thread sailorsea21
Hi everyone, is it possible to pass a variable when I call a class??? This is what I'm doing: bar.setStyle('itemRenderer', new ClassFactory(BarColorRenderer)); My class is 'BarColorRenderer' and I would like to also pass it a variable. Is it possible? This is my class: public class

Re: [flexcoders] cfc to VO pesky problem

2009-04-28 Thread hoz
Yes, I'm using CF 8. How is this method sent on the cfc side and what do you do on the flex side if you are just returning one object? lampei wrote: Are you using CF8? That's the only means (other than using Live Cycle or Live Cycle Express) to get the __type__ method to work. --- In

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-28 Thread Battershall, Jeff
Alex, About weak reference listeners - what kind of listeners are created when bindings are defined in MXML? Like dataProvider={myAc}? And would it help to use [Bindable] myColl:ICollectionView as the source? I hear you on trying to make things like this easy. I think the ViewStack loading

Re: [flexcoders] How can I pass a var to a class???

2009-04-28 Thread Paul Andrews
I think you want to use the properties attribute for ClassFactory instances.. http://livedocs.adobe.com/flex/2/langref/mx/core/ClassFactory.html Paul - Original Message - From: sailorsea21 sailorse...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, April 28, 2009 2:22 PM

[flexcoders] Flex Builder on Linux been scrapped ?

2009-04-28 Thread Tom Chiverton
It looks like Builder on Linux might be a gonner (http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/) - register your support for the product by voting for http://bugs.adobe.com/jira/browse/FB-19053 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44 0161 618 5099

Re: [flexcoders] Need Suggestions for database application.

2009-04-28 Thread riacoding
Raja S Patil wrote: Hi Raja, I am using Symfony framework as the php application layer to serve XML to the flex front end. It allows an easy way to duplicate the site with an Ajax/HTML alternative front end. Symfony achieves database abstraction through and internal component ( i

[flexcoders] Axis titles on CartesianChart blurry, but not on ColumnChart

2009-04-28 Thread netdeep
This seems like a bug with Flex which I never noticed until just recently, but the vertical axis titles for CartesianCharts (and LineCharts as well) are blurry at higher resolutions. However this problem is not present with ColumnChart. I had to encode the charts with ImageSnapshot and export

Re: [flexcoders] How can I pass a var to a class???

2009-04-28 Thread - -
That's exactly what I needed! Thanks Paul :) From: Paul Andrews p...@ipauland.com To: flexcoders@yahoogroups.com Sent: Tuesday, April 28, 2009 10:28:59 AM Subject: Re: [flexcoders] How can I pass a var to a class??? I think you want to use the properties

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-28 Thread Johannes Nel
:( On Tue, Apr 28, 2009 at 4:43 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: It looks like Builder on Linux might be a gonner (http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/) - register your support for the product by voting for

Re: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-28 Thread Marvin Froeder
Would be really helpful a removeAllEventListenerss() on event EventDispacher Or even a dispose() method on UIComponent class that remove listeners, clean references, and whatever else is necessary to clean memory. VELO On Mon, Apr 27, 2009 at 3:36 PM, Battershall, Jeff

Re: [flexcoders] Only Flex and LDAP

2009-04-28 Thread dnk
smgbbk, Tom Chiverton had posted in your previous post (Flex with LDAP) : Maybe you should grab the LDAP spec. and the Socket class documentation in the mean time :-) I suspect he suggested that you do that simply because at this point no one (or no one on this list) has done a direct

RE: [flexcoders] Axis titles on CartesianChart blurry, but not on ColumnChart

2009-04-28 Thread Battershall, Jeff
Are you embedidng the font for the Axis titles? And if so, is advancedAntiAliasing = true in your @font-face declaration? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of netdeep Sent: Tuesday, April 28, 2009 11:28 AM To:

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-28 Thread Nick Collins
Well, if you really want to develop Flex on Linux, you could always check out IntelliJ IDEA 8.1, which I'm told has pretty nice Flex development features. Just missing the design view and profiler, really... On Tue, Apr 28, 2009 at 10:55 AM, Johannes Nel johannes@gmail.comwrote: :( On

[flexcoders] Re: Axis titles on CartesianChart blurry, but not on ColumnChart

2009-04-28 Thread netdeep
Im' not doing anything with fonts, just something like this: var vAxis:LinearAxis = new LinearAxis(); vAxis.baseAtZero = false; vAxis.title = titleString; var axr:AxisRenderer = new AxisRenderer(); axr.axis = vAxis; renderers.addItem(axr); genericChart.verticalAxisRenderers =

[flexcoders] Tree custom renderer

2009-04-28 Thread markgoldin_2000
I am looking for design ideas to extend an item renderer for a tree control. Specifically, I want to have a node that would show a regular label for its name plus a radiogroup with 3-4 radio buttons shown horizontally with a node. So, the user can specify some filters for an upcoming interface

RE: [flexcoders] Tree custom renderer

2009-04-28 Thread Tracy Spratt
I have an example on www.cflex.net http://www.cflex.net/ that extends TreeItemRenderer and adds the tree sibling lines. It might be a good starting point. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

[flexcoders] Re: Tree custom renderer

2009-04-28 Thread markgoldin_2000
Thanks, Tracy, I have looked into your example. Here is what I got so far. It compiles fine, but when it runs I dont see anything except regular nodes with a text. package { import mx.controls.treeClasses.*; public class treeRendererFilter extends TreeItemRenderer {

[flexcoders] Re: flexcommon library 1.0 released

2009-04-28 Thread Tony Obermeit
http://groups.yahoo.com/group/flexcoders/message/141850;_ylc=X3oDMTJ0Z2tmdGUyBF9TAzk3MzU5NzE1BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTcwNTAwNzIwNwRtc2dJZAMxNDE4NTAEc2VjA2Rtc2cEc2xrA3Ztc2cEc3RpbWUDMTI0MDk0NDY0NQ-- I had the same problem in firefox and safari on mac. When I went to IE on windows I was

RE: [flexcoders] Re: Tree custom renderer

2009-04-28 Thread Tracy Spratt
One thing to watch for is that manual instantiation does not always set a default height and width. Explicitly set these to see if the child controls display Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-28 Thread Alex Harui
In most languages, including Actionscript, there is no way to know who is referencing some object without performing the same mark/sweep the gc() is doing (which violates the security of private variables to do so). The overhead of trying to track information like that would be significant

[flexcoders] Re: Styling Button Down States: fillColors and fillAlpha ?

2009-04-28 Thread greg_lafrance
Use skins: downSkin, overSkin, upSkin, etc. --- In flexcoders@yahoogroups.com, greg h flexsa...@... wrote: For Flex 3 buttons, beyond textSelectedColor can styling be used for styling Button down states? Up and Over states can be styled using fillColors and fillAlphas. However, fillColors

[flexcoders] How does the build in zoom in in context menu works?

2009-04-28 Thread ACasualObserver
In AS3, I have added 2-3 levels (by level, I mean sprites are added as child of other one) of sprite on the stage. Everything is displayed nicely in the right place. When I right click and select Zoom In it zooms. Then when I right click and select View All it does not show it all and the

[flexcoders] Re: Tree custom renderer

2009-04-28 Thread markgoldin_2000
Yes, that was a problem to show an additional component. Now when I see it, I realize that it's going to be added in a front of a node text, while I want it to be after. How to do that? --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: One thing to watch for is that manual

[flexcoders] Extend Array

2009-04-28 Thread smitade
I'm trying to extend an Array into a 2D matrix. Any suggestions? The following code fails but I don't understand why. public class MatRix extends Array { public function MatRix(numRows:int=0,numCols:int=0) { super(numRows);

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-28 Thread Alex Harui
A weak reference listener is attached to myAc. It shouldn't matter what its type is (as long as it isn't XML). The selectedChild of a ViewStack will have a reference to the ModuleLoader child which should have a reference to the module. Not sure how you are attempting to unload that module,

RE: [flexcoders] How can I pass a var to a class???

2009-04-28 Thread Alex Harui
The same variable every time or a different one each time? ClassFactory has a properties bag that will pass the same values every time. I suppose you can change the properties bag before each instantiation. Or you can write a custom IFactory instead. Alex Harui Flex SDK Developer Adobe

[flexcoders] Re: flexcommon library 1.0 released

2009-04-28 Thread smitade
Interesting. Yep, I tried using Firefox.

[flexcoders] Re: Line Series - does not show anything for single data point

2009-04-28 Thread Amy
--- In flexcoders@yahoogroups.com, rviswanathan v_ramakrish...@... wrote: Hi I am trying to plot a line series; it works fine when I have multiple data points, however it doesn't work when I have just one data point. I am trying to see if this one data point can show up as a circle

[flexcoders] You want Flex Builder for Linux ?

2009-04-28 Thread Adnan Doric
Adobe plans to stop porting flex builder for linux... You want Flex Builder for Linux ? http://bugs.adobe.com/jira/browse/FB-19053 Then vote for it, show your support ! :) http://bugs.adobe.com/jira/browse/FB-19053 Now!

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Have you tried something like this: this.addItem( new Array() ); -TH --- In flexcoders@yahoogroups.com, smitade smit...@... wrote: I'm trying to extend an Array into a 2D matrix. Any suggestions? The following code fails but I don't understand why. public class MatRix extends Array {

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Sorry, i meant: this.push ( new Array() ); -TH --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: Have you tried something like this: this.addItem( new Array() ); -TH --- In flexcoders@yahoogroups.com, smitade smitade@ wrote: I'm trying to extend an Array into a 2D

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Ah, I see the problem. If j is greater than i, it will fail. How about this: public class MatRix extends Array { public function MatRix(numRows:int=0,numCols:int=0) { super(numRows); for (var i:int=0;inumRows;i++) { this[i]=new Array(numCols); } } -TH ---

[flexcoders] Re: Extend Array

2009-04-28 Thread smitade
This compiles OK but fails at this point in the class: this[i]=new Array(numCols); with the error: Cannot create property 0 on [the class] i.e i being 0 on the first for loop when calling: var a:MatRix = new MatRix(3,3);

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Yep, thought that I could get away with not testing it. Doesn't look like you can extend Array, but you can extend ArrayCollection: package { import mx.collections.ArrayCollection; public class MatRix extends ArrayCollection { public function

Re: [flexcoders] Re: Extend Array

2009-04-28 Thread Richard Rodseth
I wouldn't extend either of these. Favour delegation over inheritance. On Tue, Apr 28, 2009 at 3:23 PM, Tim Hoff timh...@aol.com wrote: Yep, thought that I could get away with not testing it. Doesn't look like you can extend Array, but you can extend ArrayCollection: *package *{ *

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Care to elaborate with an example? -TH --- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: I wouldn't extend either of these. Favour delegation over inheritance. On Tue, Apr 28, 2009 at 3:23 PM, Tim Hoff timh...@... wrote: Yep, thought that I could get away with

Re: [flexcoders] Re: Extend Array

2009-04-28 Thread Richard Rodseth
Limited time, and not sure what the original goal is. But if the poster needs a Matrix class he can make one that doesn't derive from anything, or that implements an interface. In fact, if you look at flash.geom.Matrix you'll see it derives from Object. Googling composition vs inheritance or

[flexcoders] Error Loading the SOAP mathod from AIR Application

2009-04-28 Thread anuj181
Hi Guys I have used Web Service in REST in the past but this is my first attempt to call SOAP method from WSDL and for some reason it is failing, I have never called a single method through SOAP so please bear my beginner mistakes,Below is my MXML code and my WSDL has following schema, Anyone

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
I see your point; that inheritance can be considered evil in some situations. In this case though, I think that it's ok; since a MatRix is an Array; or in this case an ArrayCollection. However, I do agree that you can just as easily create a stand-alone MatRix class as well. Like you say, it

[flexcoders] Re: Tree custom renderer

2009-04-28 Thread markgoldin_2000
Actually it adds it behind the label. I have spent some time trying to tweak it with no success. Anybody, any idea? --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: Yes, that was a problem to show an additional component. Now when I see it, I realize that it's

[flexcoders] PopUpButton.popUp

2009-04-28 Thread Maciek Sakrejda
I'm using a PopUpButton with a custom menu (PopUpMenuButton doesn't quite do what I need), and I find that in some situations, the .popUp property is reset to null. The PopUpButton in question is never taken off the display list, and in the source, that's the only thing I can see that could update

[flexcoders] UITextField: Selecting text across multiple List item renderers

2009-04-28 Thread daxdr9
The text of a UITextField can be made selectable by setting the selectable property to true. However, It seems that the selection is limited to a single UITextField (i.e. continuing the selection over the UITextField of additional item renderers is not supported by default). My question is,

[flexcoders] flex 3.3 sdk set up problem

2009-04-28 Thread Dave Segal
I recently started using the Flex 3.3 sdk in Flex Builder. I simply unzipped the files to a folder in the sdk folder and added it via the Flex preferences window and made it the default sdk. However, now when I create a new pure Actionscript project all the code hints for items in the flash

[flexcoders] Re: Extend Array

2009-04-28 Thread smitade
Thanks - you guys rock! Good point about the geom matrix class. I'm coding some matrix algebra algorithms. Actually I hadn't given it much thought just considered the possibility of using the sorting function in the Array class.

[flexcoders] Re: Weblink to item in linkbar

2009-04-28 Thread Paul Tretter
Tim, Your instructions worked very well. I figured out that I only needed to change the weblink in the UrlRequest to be a string. Also, I modified navigateToUrl arguments as such: navigateToUrl(request, _self); That was really just for preference which was instead of opening in a new

[flexcoders] Re: Weblink to item in linkbar

2009-04-28 Thread Tim Hoff
Perfect -TH --- In flexcoders@yahoogroups.com, Paul Tretter ptret...@... wrote: Tim, Your instructions worked very well. I figured out that I only needed to change the weblink in the UrlRequest to be a string. Also, I modified navigateToUrl arguments as such: navigateToUrl(request,

[flexcoders] Re: Extend Array

2009-04-28 Thread Tim Hoff
Have you considered if the class approach has any benefit over creating a Multidimensional Array dynamically; based on the data. Except for having the option to create the matrix layout in a fixed manner, it might make sense to just use an Array var. You're going to have to iterate anyway, to

[flexcoders] Problems with chart using flex sdk 3.2

2009-04-28 Thread mishrabagish
We have upgraded ur flex sdk from 3.0 to 3.2. After this we are facing some issues with chart. On some environments its not showing x-asis labels and captions. If any of you have faced this issues please provide pointers.

[flexcoders] Advanced Datagrid

2009-04-28 Thread senthilkumarirtt
hi...i have tree in advanced datagrid like this +NewAccount +Account Updates +IncomingAccountTransfer If i click '+' symbol,it wil expand like -NewAccount opened Inprogress Completed -Account Updates Inprogress Rejected -IncomingAccountTransfer Inprogress Rejected this tree

Re: [flexcoders] flex 3.3 sdk set up problem

2009-04-28 Thread p...@vin Uttarwar
Hi Dave, I have got the same problem some time back. Just you have to make some changes in projects build path. Remove all the entry's of playerglobal.swc from flex 3.3. Then add swc and point it to * flex 3.3 folder location\frameworks\libs\player\10\playerglobal.swc* thats it. Regards,