RE: [flexcoders] Re: LinearGradient outside charts

2006-11-03 Thread Dirk Eismann
Hi, try extending mx.skins.halo.HaloBorder and do the gradient drawing the updateDisplayList method. Then, assign this class as the border-skin for your component. This way you can use this gradient on any component that supports border styles. border-skin:

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-03 Thread Tom Chiverton
On Friday 03 November 2006 05:28, Andrew D. Goodfellow wrote: You better cluster and load balance the web servers once you announce it's download location, because that address is gonna get buried with requests about 5 minutes later... They could BitTorrent it... -- Tom Chiverton Helping to

[flexcoders] TileList item effects? (Flex Store)

2006-11-03 Thread John C. Bland II
Is there a way to get the Flex Store effects without dealing with custom AS? Like how you can set showEffect, etc? If not, :-(.Thoughts?--- John C. Bland IIChief GeekKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog -

[flexcoders] Re: Convert Object to a Value Object

2006-11-03 Thread mvbaffa
Hi all, Thanks for your help. I was out for a few days, but today I will try, using your advises, to solve the problem. Thank you very much --- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: Interesting, Yahoo garbled most of the content of that message. Here's

Re: [flexcoders] avoid propagate event on itemrenderer to datagrid

2006-11-03 Thread Federico Ferri
try use event.stopPropagation(); there is also a event.stopImmediatePropagation(); i have the same thing, a datagrid with a checkbox, but with a big problem. when a change my datagrid.dataProvider all the rows in the datagrid are new, but the checkbox already checked remain in that state...

[flexcoders] Using minYear with a DateField

2006-11-03 Thread greenfishinwater
I have a date field, with minYear set to 2006, which prevents me entering an incorrect date if I manually enter it in the text field. But if I use the datechooser part, I can select a date prior to 2006. Is this a bug? Andrew -- Flexcoders Mailing List FAQ:

Re: [flexcoders] 2 questions

2006-11-03 Thread Tom Chiverton
On Thursday 02 November 2006 15:26, DJ Lift wrote: Question 1: Is it best to use States or ViewStacks to deal with changing app states? We use view stacks here, because so much changes between the two states. Question 2: Is it good practice to have components be able to talk and share

[flexcoders] Re: LinearGradient outside charts

2006-11-03 Thread Cristian Pop
Brian, I did not post the code for measure override, so that's not the problem. I will try what Ely suggested and get back. Cristian --- In flexcoders@yahoogroups.com, Brian Deitte [EMAIL PROTECTED] wrote: Hi Cristian, I had to override measuredWidth and measuredHeight to get my gradient fill

[flexcoders] DataGridCollumn: Display formatted value

2006-11-03 Thread Pascal Schrafl
Hi all, I have a DataGridCollumn where I display the time in Seconds (i.e. 77). I would like to convert the diplayed time into minutes and seconds. I have a function, that converts the seconds into minutes and seconds, i.e. 1:17 The function is named secondsToMinuteString. Here's the code:

Re: [flexcoders] DataGridCollumn: Display formatted value

2006-11-03 Thread Igor Costa
you are trying to access a undefined variable in my concern you didn't have in your function the lengh_seconds but also just secs.RegardsOn 11/3/06, Pascal Schrafl [EMAIL PROTECTED] wrote: Hi all, I have a DataGridCollumn where I display the time in Seconds

Re: [flexcoders] Draggable Panels

2006-11-03 Thread Igor Costa
Yes of course that havecheck outPut between the mx:Scriptpublic function dragMe():void{ // just add the panel id panelID.startDrag();}// new function to stop drag public function stopDragMe():void{ // same ID of you panel panelID.stopDrag();}now using the code above you just do that in your

Re: [flexcoders] Draggable Panels

2006-11-03 Thread Michael Schmalle
Using the PopUpManager.addPopUp() or createPopUp() will make a TitleWindow draggable.Is this what you want?Peace, MikeOn 11/2/06, klethron [EMAIL PROTECTED] wrote: Hello All, I am just starting into Flex 2 and im loving it. Is there any way to make my Flex

Re: [flexcoders] dreaded error 1009, app calling a web service

2006-11-03 Thread Igor Costa
KayleaThis is a problem of security sandBox, make sure that you have passed the compiler paramaters like -use-network=trueOr eventually I belive that you have too send a method too like POST.Regards. On 11/2/06, Kaylea Hascall [EMAIL PROTECTED] wrote: Hello

RE: [flexcoders] Re: LinearGradient outside charts

2006-11-03 Thread Dirk Eismann
Hi, I just uploaded a litte sample (source code included) http://www.richinternet.de/blog/index.cfm?entry=ADD4FDD1-9B48-BFBC-2A70F 3C57EBC6892 Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cristian Pop Sent: Friday, November 03,

Re: [flexcoders] Using minYear with a DateField

2006-11-03 Thread Igor Costa
is not a bug, did you considerated yourself that using the minYear you have to use previously the day,week and month to use that. Usually some developers think this is a bug, but isnt.Regards. On 11/3/06, greenfishinwater [EMAIL PROTECTED] wrote: I have a date

Re: [flexcoders] TileList item effects? (Flex Store)

2006-11-03 Thread Igor Costa
John the showEffect it's a method tigger that is same in Flex 2.0 isn't a costum Effect.Just put the code in FlexStore into your project and use it.On 11/3/06, John C. Bland II [EMAIL PROTECTED] wrote: Is there a way to get the Flex Store effects without

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Igor Costa
DanielThis kind of request is simple, just use the hipotetical situation where you seted a container with the size of 400x300 and inside this container you added a component like panel as 500x600, what's gonna happen? the scroll will automaticly add the scroll. So, isn't goo enough but if you

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Igor Costa
Jaime I just tested your code and I saw that if you put the mx:script tag after your usage of implementation doesn't work.Just try this one.?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxmllayout=absolutewidth=100%height=100% creationComplete=init()

Re: [flexcoders] DataGridCollumn: Display formatted value

2006-11-03 Thread Pascal Schrafl
Hi Igor, Thanks for your answer. As far as I understand the function, it gets one parameter passed in (secs in the function). The error is in the DataGridCollumn, there it's complaining, that it can not find the length_seconds value, although it is included in the XML, that gets retrieved.

[flexcoders] Re: Cairngorm 2 with Data Management

2006-11-03 Thread laidezmon
Wow. Nothing? I implemented IResponder on the command class, and passed that into the delegate, and now I can fire the result method. So for some reason that works, although IResponder is supposed to only work on RPC calls, and Data Managed services are not supposed to actually be RPC calls, as

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Daniel Cascais
That is a given. What I actually want to do, is to be able to detect (in ActionScript) WHEN the scrollbar is added/removed from the container. Thanks, Daniel On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: Daniel This kind of request is simple, just use the hipotetical situation where

[flexcoders] Re: Web Services in Cairngorm 2.1

2006-11-03 Thread ben.clinkinbeard
Will there be a way to keep it defaulted to off? I prefer to control when loadWSDL() is called. Thanks, Ben --- In flexcoders@yahoogroups.com, Peter Martin [EMAIL PROTECTED] wrote: There have been a number of postings across the various newsgroups regarding Web Services behaving differently

[flexcoders] Re: avoid propagate event on itemrenderer to datagrid

2006-11-03 Thread ben.clinkinbeard
Federico, you probably need to override the data method of your CheckBox itemRenderer. See the code snippet towards the end of this post: http://www.returnundefined.com/2006/10/item-renderers-in-datagrids-a-primer-for-predictable-behavior/ HTH, Ben --- In flexcoders@yahoogroups.com, Federico

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Michael Schmalle
Hi,Another way to do it is;if (myContainer.verticalScrollBar){ trace(we have v scoll);}else{ trace(no v scroll bars);}You can do the same with horizontalScrollBar. These are public properties, so it is not an event that is saying we are creating them but, you will always know through composite

Re: [flexcoders] Re: Web Services in Cairngorm 2.1

2006-11-03 Thread Paolo Bernardini
thanks Peter, I was going crazy with this. On 11/3/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: Will there be a way to keep it defaulted to off? I prefer to controlwhen loadWSDL() is called.Thanks,Ben--- In flexcoders@yahoogroups.com, Peter Martin [EMAIL PROTECTED] wrote: There have been

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Michael Schmalle
On another note now that I thought about it;Use the Event.ADDED.Add an event listener to the container, then you really just could check the if() statement I gave earlier regarding the verticalScrolBar and horizontalScrollBar properties of the container. These properties WILL be assigned by the

[flexcoders] Re: Using minYear with a DateField

2006-11-03 Thread greenfishinwater
Igor, I don't understand what you mean 'use previously the day, week and month Andrew --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote: is not a bug, did you considerated yourself that using the minYear you have to use previously the day,week and month to use that.

[flexcoders] Re: DataGridCollumn: Display formatted value

2006-11-03 Thread greenfishinwater
This is an example of labelFunction that works for me: In mxml: mx:DataGridColumn headerText=Status dataField=price_status labelFunction=priceStatusLabel/ The function in AS3: private function priceStatusLabel(item:Object,column:DataGridColumn):String { if

[flexcoders] Re: FDS Method Fill and List of parameters

2006-11-03 Thread jonathan_merey
Problem is I don't know how many parameters I'll have. I can have 3 as I can have 4 or 5. The query can seem to : in (1,2,3) or in (2,4,15,78,99,76)... --- In flexcoders@yahoogroups.com, Cathy Reilly [EMAIL PROTECTED] wrote: Here's an example when using Hibernate Named Queries. If I

[flexcoders] AMFPHP / Cairngorm / _explicitType Problem

2006-11-03 Thread ichgehe
I am now quite comfortable with Cairngorm but have a last Problem. I would like to use the services I have already written in AMFPHP and now after changing to Cairngorm I have a problem. Now my main question is: Is it possible not to use the VO Objects on the PHP side? Because I am currently

[flexcoders] Uploading

2006-11-03 Thread kumar
I am using flex2.0 trial, i have designed the page and upload the files i cant see the picture images, what is the problem. send my mail id. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Show data tips for only some series?

2006-11-03 Thread Samuel R. Neff
How can we show data tips for only certain series in a chart? We're using a LineChart with several LineSeries but also two PlotSeries. We want data tips on the PlotSeries but not the LineSeries. We're using a custom dataTipFunction and tried returning null, undefined, and from the function

[flexcoders] Re: Draggable Panels

2006-11-03 Thread klethron
--- In flexcoders@yahoogroups.com, klethron [EMAIL PROTECTED] wrote: Hello All, I am just starting into Flex 2 and im loving it. Is there any way to make my Flex Panels draggable? Are there any good tutorials on this anywhere? -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Karl Johnson
There are probably multiple ways to do this, but what about checking to see if myContainer.verticalScrollBar == null? Are you looking to do this at render time or is this something where the scroll bar could show at anytime after creationComplete and you need to be able to react

RE: [flexcoders] local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
Yes, I understand that we want both apps coming from the same domain in production (or at least both from remote network locations) But there is a major use case here that cant be fulfilled: How do you DEBUG? Is there a way to setup Flex Builder to debug via remote files? We

RE: [flexcoders] Uploading

2006-11-03 Thread Stacy Young
Any more details and/or code you can show? Cheers, Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of kumar Sent: Friday, November 03, 2006 8:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Uploading I am using

Re: [flexcoders] Re: DataGridCollumn: Display formatted value

2006-11-03 Thread Pascal Schrafl
Hi Andrew, Thanks for your advice. Thank you for explaining me the function of labelFunction. I will try your approach and will let you know, if I had success. Best regards, Pascal greenfishinwater wrote: This is an example of labelFunction that works for me: In mxml:

[flexcoders] Distortion Effects

2006-11-03 Thread Alex Uhlmann
Here's something for ya: http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm ;) Alex Alex Uhlmann Consultant (Rich Internet Applications)Adobe ConsultingWestpoint, 4

RE: [flexcoders] 2 questions

2006-11-03 Thread Stacy Young
The only time Ive used states is transitioning from two different contexts specifically from a login screen to the initial state of the application after login. (I wanted to animate the transition) As for components, my approach is to black box them and leverage the event model for

Re: [flexcoders] TileList item effects? (Flex Store)

2006-11-03 Thread John C. Bland II
I know what showEffect is. That was merely to clarify my point/need. Nothing personal but I don't get down with copy/paste in place of learning something. My original question is for knowledge sake. I went through the Flex Store code and looked at how they did their animations. It made me

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
Hmmm, not sure what you mean Igor. Can you not get the app to compile or run for you? I just tested moving the script block up to the top on my machine and it still runs. Anyone else having issues running this sample app? On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: Jaime I just tested

[flexcoders] Re: Distortion Effects

2006-11-03 Thread app.developer
Thank you for your open source efforts. This ROCKS! Precia --- In flexcoders@yahoogroups.com, Alex Uhlmann [EMAIL PROTECTED] wrote: Here's something for ya: http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_disto r. cfm ;) Alex Alex Uhlmann Consultant (Rich

RE: [flexcoders] Cairngorm ViewHelper\ViewLocater Example?

2006-11-03 Thread Dimitrios Gianninas
So the user sees like 4 panels in a tilelist and you want to make 3 disappear and only the selected one grow to full size? is that it? Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian HolmesSent:

RE: [flexcoders] Isn´t there any release of Adobe Ap ollo yet? Alpha maybe....

2006-11-03 Thread Shannon Hicks
And you think that the other projects released on Labs don't have the same effect? I'm sure that Lightroom and Soundbooth are going to attract more downloads than Apollo (from Labs, anyway). :) Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew D.

RE: [flexcoders] Disabling mouse/keyboard interaction while BusyCursor is set

2006-11-03 Thread Dimitrios Gianninas
Display a modal pop-up with a general message of what is happening ("Searching...") so that they can't click on anything. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lokesh2084Sent: Thursday,

[flexcoders] another checkbox itemrenderer in a datagrid question

2006-11-03 Thread bhaq1972
i have an itemrenderer where the checkbox is disabled eg mx:HBox horizontalAlign=center mx:CheckBox id=cb enabled=false/ /mx:HBox i would like to enable it only when the user selects it (say in a itemEditBeginnning event) ( and then disable it again) any ideas? -- Flexcoders Mailing List

Re: [flexcoders] Distortion Effects

2006-11-03 Thread Carlos Rovira
Wow! Amazing :DOn 11/3/06, Alex Uhlmann [EMAIL PROTECTED] wrote: Here's something for ya: http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm ;) Alex Alex

[flexcoders] Bitmap Analysis

2006-11-03 Thread Daniel Freiman
Does anyone know any resources for advanced bitmap analysis with a flex app. I'm looking through the Bitmap Class but I'm a little in over my head on the algorithms side. There are two things I'm trying to do.First, how can I tell if one object (objects defined by what is drawn not the bounding

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Daniel Cascais
Michael, Karl, Thanks for your inputs. I'm doing some dynamic tile layout and sizing which requires me to set different params depending on the scrollbar availability and tile count. I also thought about the Event.RENDER but it seemed overkill. I'll look into the different options, but I'll

[flexcoders] Re: AMFPHP / Cairngorm / _explicitType Problem

2006-11-03 Thread Renaun Erickson
It is very possible to use Cairngorm AMFPHP and VO's. I have a RemoteObjectAMF0 component that helps facilitate Flex 2 and AMF0 connections. Along with the component is a Cairngorm 2.1 Store example with AMFPHP backend. http://renaun.com/blog/flex-components/remoteobjectamf0/ Renaun

Re: [flexcoders] security issues when capturing flex screens that contain other domain bitmaps

2006-11-03 Thread Andrew D. Goodfellow
I literally just hit this problem now too. Did you ever receive a solution Hank? Anyone else?-AndyOn 9/26/06, hank williams [EMAIL PROTECTED] wrote: I have a flex screen that I want to capture into a bitmap using the technique that Andrew Trice described

[flexcoders] Custom Component Question - array collection

2006-11-03 Thread Wally Randall
I have made a custom component from a standard combo box with an array collection of hours of the day. When used on an application form the contents of the array are not displayed. Are custom components not able to encapsulate the datasource in the array collection? -- Flexcoders Mailing

RE: [flexcoders] Distortion Effects

2006-11-03 Thread João Fernandes
Already playing with it J I love the cubeRotate Effect Joo Fernandes From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Uhlmann Sent: sexta-feira, 3 de Novembro de 2006 14:57 To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] DataGrid with content spanning several columns

2006-11-03 Thread Jonathan Bezuidenhout
Hi All,I need a DataGrid with the ability to have a row where some of the contents span across columns. It might sound a bit odd - here is maybe a bit more of a concrete example.The first column contains a zip code, 2nd column contains the name of a town, underneath both columns - i.e.

[flexcoders] Disabling button on buttonBar - error...

2006-11-03 Thread jamiebadman
Hi, I'm trying to disable a button on a buttonbar but I'm getting an error... here's what I have: mx:ButtonBar id=controlBar height=20 width=100% horizontalGap=0 itemClick=buttonBarClickHandler(event); mx:dataProvider mx:Array mx:StringNew Topic/mx:String

[flexcoders] Re: TextArea in Grid - too big

2006-11-03 Thread app.developer
The bigger issue is the textArea is expanding 100% in each direction in the gridItem. I need align the text to the bottom and it's not happening. The text stays at the top. The top gridRow containing 8 gridItems with a textArea inside the gridItem. What I have done to is set the height of each

RE: [flexcoders] Re: Tree not updating with correct XML

2006-11-03 Thread Karl Johnson
Aaron, When are you calling your HTTPService? If you are setting myXLC at creationComplete, then most likely your web service has not had a chance to run and return a resultset yet. Where in your code is the HTTPService fired off? If the tree is to be populated with the xml returned from

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Michael Schmalle
Hi,A thought;If you used the ADDED event, in a handler once the scroll bar was created or destroyed, you could then dispatch an event to another handler that would then commit the logic you needed for existence changes in your tile layout. Then again I don't know exactly what you are doing.This

[flexcoders] Re: Flex Data Services - Client.Data.UnderFlow

2006-11-03 Thread wesubotnix
Hi, When switching to communicate with a copy of my database on a testserver (with mysql server at localhost) I very very slowly receive some initial data from the database. At the third sql-call it breaks...I get this same error. netStatusHandler: [NetStatusEvent type=netStatus

RE: [Junk E-Mail - LOW] RE: [flexcoders] Re: Date Bug?

2006-11-03 Thread Shannon Hicks
I had this EXACT same problem... but get this: In flash, I use a datepicker. In CF, I use cfsql_date, and in mysql the column it's stored in is date. So, timezones shouldn't matter, since I'm never dealing with time. The data gets saved to the database as the incorrect date. I asked

RE: [flexcoders] Show data tips for only some series?

2006-11-03 Thread Ely Greenfield
Hi Sam. Set interactive=false on the series you don't want to see datatips on. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Samuel R. NeffSent: Friday, November 03, 2006 6:20 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Show data tips for

Re: [flexcoders] specifying measuredWidth/measuredHeight in a skin

2006-11-03 Thread Michael Schmalle
Hi Brian,This dosn't make sense...What are you subclassing for the skin class?I use ProgrammaticSkin and RectangularBorder all the time and have never specified measuredWidth or measuredHeight in a skin. I get none of the things you are talking about. Are you using an image or drawing API in

[flexcoders] need help on authentication

2006-11-03 Thread jbbec_fr
Hi all, I want to diplay a box with a login form when my application load first with a blur effect behind the box. I don't know how to do Is someone here to explain me how to do ? Thank you JB -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Using CDATA in XML objects in Flex 2

2006-11-03 Thread Matt Chotin
This sounds reasonable. XML can take strings which it will then parse, so doing it as a String makes sense to me. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Xavi Beumala Sent: Wednesday, November 01, 2006 11:58 AM To:

RE: [flexcoders] custom Message Service adapter

2006-11-03 Thread Seth Hodgson
Hi Ryan, Thanks for the extra detail. There currently aren't public APIs that would allow your custom message service to directly manage the set of subscribers that a message is broadcast to. For now, I'd recommend trying to get really creative with Consumer selectors and message headers, or

RE: [Junk E-Mail - LOW] RE: [flexcoders] Re: Date Bug?

2006-11-03 Thread Shannon Hicks
I've found the problem (thanks Service Capture, as usual). Flash passes back a timestamp, not just a date, when using the datefield. So, I'd pass back "Tue Aug 29 :00:00:00 EDT 2006". Of course, CF thinks that you want to convert a timestamp to a date, and does the timezone conversion

RE: [flexcoders] AMF3 Remoting+CF w/ same CF session?

2006-11-03 Thread Shannon Hicks
Yes. I'm doing it right now. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John C. Bland IISent: Tuesday, October 31, 2006 9:54 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] AMF3 Remoting+CF w/ same CF session? I looked

RE: [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] RE : [flexcoders] Isn´t there any release of Adobe Apol lo yet? Alpha maybe....

2006-11-03 Thread João Fernandes
http://www.brooks-bilson.com/blogs/rob/index.cfm/2006/10/24/Adobe-MAX-2006-Session--ColdFusion-Net-Integration Its only related to .net object access, not were it will run. Youll always need  a windows machine (eventually MONO). I think that specific and exclusive platform

Re: [flexcoders] x, y, width, and height in CSS

2006-11-03 Thread Peter Baird
There are some reasonable approaches for some of things your looking for in CSS. For X and Y positioning, you can use the CSS values Left, Right, Top, and Bottom to specify the pixels distance. For height, for controls like button, you can use your CSS paddings to, in a sense, define the

Re: [flexcoders] Re: unable to load wsdl?? flex, you're pissing me off...

2006-11-03 Thread Steve Hindle
Works fine in FF 1.5.0.7 Win here...On 11/1/06, Jason [EMAIL PROTECTED] wrote: Can anyone out there can confirm that the example here: http://blog.wrench.com.au/wp-content/uploads/Flex/converter2/Converter.html actually works in Firefox (I'm using 1.5.0.7

RE: [flexcoders] setting my application pageTitle

2006-11-03 Thread Matt Chotin
Application usually gets replaced with the pageTitle attribute value. If you look in your bin directory what does the generated wrapper look like? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Thursday, November 02,

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-03 Thread Johannes Nel
ability to grab chunks from the screen into a bitmapdata obj.On 11/1/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Tuesday 31 October 2006 20:41, Gordon Smith wrote: Just wondering, since I'm working on it... what features of Apollo are people most excited about?This is difficult, because many

[flexcoders] Q. How can I change the property of a row in a datagrid? Please help...

2006-11-03 Thread arpan30_cs
I have list that displays some values, now when i select some value from the list corresponding row in the grid should get highlighted. I have got the row number, and I want to change the alpha of that row. Method setPropertiesAt() is not present in this version of Flex, I am working on Flex 2.

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Igor Costa
I didn't have this problem Jaime.It's works for me.On 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Hmmm, not sure what you mean Igor. Can you not get the app to compile or run for you? I just tested moving the script block up to the top on my machine and

RE: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-03 Thread Evan Gifford
Correction! I was wrong about one of the open source 3D libraries for flash/flex, Papervision is aspiring to go open source but has not. According to the author, those hoping to use an open source Papervision will have to wait a while. Personally, I think its a shame to have two

[flexcoders] selectedItem in Combo of a datagrid

2006-11-03 Thread damien.cardine
Hi, problem is I have a combo in a datagrid. The reason of that is I have a database with just one table task which contains task (idTask, idProject, idUser...). The users are recorded in Ldap. I get my tasks list thank to fds. But I get idUser. So i fill a combo with my list of users which

Re: [flexcoders] Custom Component Question - array collection

2006-11-03 Thread Michael Schmalle
Yes,So you are setting the dataProvider of the ComboBox in your custom component?If so, where are you setting it?Peace, MikeOn 11/3/06, Wally Randall [EMAIL PROTECTED] wrote: I have made a custom component from a standard combo box with an array collection

Re: [flexcoders] x, y, width, and height in CSS

2006-11-03 Thread Igor Costa
BrianAs in liveDocs says the values ( width, height, x,y ) doesn't support in an external CSS file, but you can also use as Manish J. saidhttp://mannu.livejournal.com/299285.html you can override the class and start doing this .I had a same situation last week when I was trying to get a

Re: [flexcoders] Custom Component Question - array collection

2006-11-03 Thread Igor Costa
of course they are.If you could put the code here, maybe as my undrestand you're just with problem of scoping.Regards.On 11/3/06, Wally Randall [EMAIL PROTECTED] wrote: I have made a custom component from a standard combo box with an array collection of

RE: [flexcoders] Re: Cairngorm 2 with Data Management

2006-11-03 Thread Dimitrios Gianninas
The commit() method on the DataService return an AsyncToken which has a addResponder method that you set to "this" and then declare the result and fault handlers in your command. Example: public class MyCommand implements Command, IResponder { public function execute():void { var

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
Try this:1) Add a parent node by clicking the button in lower right-hand corner2) Add a second parent node3) Add a child to the first parent nodeWhen I do this, I see that the child was added to both the first AND second parent nodes. What do you see? On 11/3/06, Igor Costa [EMAIL PROTECTED]

Re: [flexcoders] Detect scrollbar showing/not showing

2006-11-03 Thread Daniel Cascais
Yep, that's a good thought... thanks. Now that my issue is solved, I would ljust like to comment that this is something that IMO should have been included in the framework. For example: Event.ScrollbarAdded, or something. Thanks again guys, Daniel On 11/3/06, Michael Schmalle [EMAIL PROTECTED]

[flexcoders] Chart XML Drill Down Problem

2006-11-03 Thread Ryan
I'm having trouble displaying a subset of my XML data structure when I drill down in a simple Column Chart. I'm not sure if my problem is in my e4x notation, or possibly just miss management of my XMLList or XMLListCollection. What I'm trying to do is use a Bindable XMLListCollection to be

Re: [flexcoders] need help on authentication

2006-11-03 Thread Igor Costa
JByou can check out at my Blog, it's also in Portuguese, but the code MXML and Actionscript you will perfectly undrestand.Check http://www.igorcosta.com/blog/?p=98 Regards.On 11/3/06, jbbec_fr [EMAIL PROTECTED] wrote: Hi all, I want to diplay a box with a

Re: [flexcoders] input type=reset

2006-11-03 Thread Rick Root
DJ Lift wrote: Hey there, Is there something in flex that's similar to the input type=reset in html? So that all the form fields will reset to the values they were created with? Or do you have to program this yourself? Not that I'm aware of. I recently had to do this and just ended up

Re: [flexcoders] selectedItem in Combo of a datagrid

2006-11-03 Thread Igor Costa
just add idUser.login login it's the variable you return from your database, if is other you just change it.Regards.On 11/3/06, damien.cardine [EMAIL PROTECTED] wrote: Hi, problem is I have a combo in a datagrid. The reason of that is I have a database with

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Igor Costa
I see each parent node with their subnodes for each of them.Regards.On 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Try this:1) Add a parent node by clicking the button in lower right-hand corner2) Add a second parent node3) Add a child to the first parent

Re: [flexcoders] Disabling button on buttonBar - error...

2006-11-03 Thread Igor Costa
Try that.The problem it's because the buttonBar doesn't have the getChildAt properties it's only reserved to Containers. If you want to use that you have to create new a new override the mx.controls.buttonBar. But in other way you can try that.?xml version=1.0

[flexcoders] Re: Issue while tring to filter an arrayCollection...

2006-11-03 Thread camlinaeizerous
Oops, yes it was a typo on my part, I tried to make a couple changes as I thought I had an idea. testFilter in the error message should be arrayFilter. When i sat down though this morning and looked at it again I realized the problem was in my yesterday I was trying to do things backwards and

Re: [flexcoders] Q. How can I change the property of a row in a datagrid? Please help...

2006-11-03 Thread Igor Costa
Can you provide part of your code, it's hard to undrestand what you want to.Regards.On 11/3/06, arpan30_cs [EMAIL PROTECTED] wrote: I have list that displays some values, now when i select some value from the list corresponding row in the grid should get

[flexcoders] Re: DataGrid with content spanning several columns

2006-11-03 Thread ben.clinkinbeard
http://www.cynergysystems.com/blogs/page/andrewtrice?entry=gantt_charts_in_flex_datagrids --- In flexcoders@yahoogroups.com, Jonathan Bezuidenhout [EMAIL PROTECTED] wrote: Hi All, I need a DataGrid with the ability to have a row where some of the contents span across columns. It might

Re: [flexcoders] security issues when capturing flex screens that contain other domain bitmaps

2006-11-03 Thread hank williams
Yes, I did find the solution.You need to define a loadercontext. Create a loader context variable in you script section. [Bindable] private var loaderContext:LoaderContext; NOTE: I'm not sure that it needs to be bindable but thats what my code has, so to be safe I am showing it.Then, in

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
What version of the Flex 2 SDK are you running Igor?On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: I see each parent node with their subnodes for each of them.Regards.On 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Try this:1) Add a parent node by

RE: [flexcoders] Cairngorm ViewHelper\ViewLocater Example?

2006-11-03 Thread Brian Holmes
Yes and no. We have hundreds of screens that we're putting inpop ups for the most part that the user can get to by using an application control bar navigation system. I want to give the user the ability to pin screens to thier "desktop" when they choose to so they can customize

[flexcoders] Re: Event Listener Help!!!

2006-11-03 Thread s_hernandez01
Thanks everyone, all your advise was really helpful and the function is working like I want it to! Much props, thanks again! -Sal --- In flexcoders@yahoogroups.com, Dustin Mercer [EMAIL PROTECTED] wrote: There is some inefficiencies in this code, but this does work and its code to help you

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Igor Costa
the last oneOn 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: What version of the Flex 2 SDK are you running Igor?On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: I see each parent node with their subnodes for each of them.Regards.On 11/3/06, Jaime

[flexcoders] Re: Disabling button on buttonBar - error...

2006-11-03 Thread jamiebadman
Thanks Igor - but that generates a further error. In any case, I need to be able to enable/disable other buttons on the bar based on which button is clicked on etc... won't this approach only permit the enabling/disabling of the currently clicked button on the bar ? It's looking like perhaps the

RE: [flexcoders] httpservice method=DELETE does not work

2006-11-03 Thread Carson Hager
DELETE is not supported. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re-importing projects?

2006-11-03 Thread Steve Kellogg @ Project SOC
Hello, Ive got a problem that I cant find an EASY way around. Twice now, Ive accidentally launched FB2 while the source directory was not available. This causes FB2 to claim that the source files do NOT EXIST. (obviously). The PROBLEM is that once I get into this state,

[flexcoders] Change viewstack index from inside canvas

2006-11-03 Thread Wally Randall
How can I change the Viewstack index from a page in the stack? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go

  1   2   >