Re: [flexcoders] Re: PopUpManager quick help

2006-09-18 Thread aaron smith
its cool, i actually got it figured out for what i need. What i was looking for actually was to center the popup to the stage. so I just created this class that I extend from instead.. It makes sense now that if you want to center inside of the parent object, you use PopUpManager.centerPopUp.

Re: [flexcoders] Re: adding control bar to panel programitically

2006-09-18 Thread Harish Sivaramakrishnan
You can add the children in any order as long as you call this function at the end of adding all children createComponentsFromDescriptors ();ThanksHarishPS: This works when you extend from Panel. On 9/15/06, aaron smith [EMAIL PROTECTED] wrote: hey thanks

[flexcoders] remove white content area in TitleWindow?

2006-09-18 Thread aaron smith
is there a way to remove the white content area in a titleWindow? i'm experimenting with drawing the UI myself, and when I draw it then add children to it, it adds that white content area, which I don't want. I tried extending canvas and drawing it that way, but then you can't drag the window

Re: [flexcoders] Re: adding control bar to panel programitically

2006-09-18 Thread aaron smith
beautiful, it must update the display?On 9/18/06, Harish Sivaramakrishnan [EMAIL PROTECTED] wrote: You can add the children in any order as long as you call this function at the end of adding all children createComponentsFromDescriptors ();ThanksHarishPS: This

Re: [flexcoders] Re: adding control bar to panel programitically

2006-09-18 Thread aaron smith
so I could potentially set up a whole application in iterations, adding child components here and there, then use Application.application.createComponentsFromDescriptors(). and it would re create the components, only fixing how it messes up the ordering of the display list.. i'll have to mess

Re: [flexcoders] Re: adding control bar to panel programitically

2006-09-18 Thread Harish Sivaramakrishnan
Calling createComponentsFromDescriptors () would invoke Panel'smethod which adds the ControlBar as the lastChild irrespective of the order in which it is added. Making an explicit call to the method will do the layouting for us. HTHHarishOn 9/18/06, aaron smith [EMAIL PROTECTED] wrote:

[flexcoders] Re: Playing back a SWF with Flex

2006-09-18 Thread fuad_kamal
Has anyone done much work with Flash 9 Alpha swf's inside of Flex? What's the best way for flex components to interact with the swf? LocalConnection? Basically I want to broadcast events from the .swf created in Flash 9 that trigger state changes in the parent application; I want to use it as a

Re: [flexcoders] How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Tom Chiverton
On Thursday 14 September 2006 19:41, hank williams wrote: browser, I get that dialog box that asks where the debugger is. Of course this dialog never actually lets you connect to any debugger. So I am wondering if there is some trick to making this work. No trick. You just need to start up

[flexcoders] Tree Component closing and opening item

2006-09-18 Thread Mick Robin
Note: forwarded message attached. Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Expand an item and close the already opened item of Tree

2006-09-18 Thread Mick Robin
Hi,I want to expand an item and close the already opened item at the same time keepingtheanimation true.Any idea how to do that in flex 2.0?Thanks and Regards, Mick __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam

RE: [flexcoders] Re: cairngorm: calling a function in a view

2006-09-18 Thread Alex Uhlmann
Hi there, I'd suggest letting the Command retrieve a model object via ModelLocator. Then, some state property in the model changes which could trigger an event. Views could listen to either EventDispatcher events or via Bindings. Following the Binding approach, your view could bind to

Re: [flexcoders] remove white content area in TitleWindow?

2006-09-18 Thread Harish Sivaramakrishnan
To get rid of the white contentPane, you need to override the layoutChrome method in your class AddSubscriptionModal.as. however, there is a catch, the layoutchrome triggres off a whole lot of layouting operations, most of them private to get the Panel work the way it should. Overriding the

[flexcoders] embedding movieclip instance with mask and child movieclip

2006-09-18 Thread Dan Rossi
Hi, im trying to work out how its possible to embed a movieclip instance from flash 8/9 which has inside it a mask and on the mask layer is a half triangle filled graphic to a volume slider. Underneath the mask is a while filled movieclip which has the mask on top of this, and its controlled

[flexcoders] unsubscribe

2006-09-18 Thread tonih barrolle
--- Louis Ryan [EMAIL PROTECTED] wrote: Ive posted in the spirit of improving flex so find it here with a sample to play with... http://whittlin.blogspot.com/ --- In flexcoders@yahoogroups.com, Louis Ryan [EMAIL PROTECTED] wrote: I have modified the DataGrid class to allow

[flexcoders] Flex Data Services configuration problem

2006-09-18 Thread amalabie
I'm trying to configure Flex Data Services with Hibernate on the back end and I'm running into these problems as shown below. Any pointers to solve these would be highly appreciated. Thanks in anticipation! Aubrey M. Config: Windows XP FDS 2 Integrated JRun4 PS: My apologies if

[flexcoders] Flex Data Services configuration problem

2006-09-18 Thread amalabie
I'm trying to configure Flex Data Services with Hibernate on the back end and I'm running into these problems as shown below. Any pointers to solve these would be highly appreciated. Thanks in anticipation! Aubrey M. Config: Windows XP FDS 2 Integrated JRun4

[flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Louis Ryan
Ive have a workaround though perhaps not ideal.. - In FlexBuilder change your projects debug URL to something that doenst immediately launch Flash. See menu Run - Debug - Other and in the section 'URL or path to luanch' uncheck the use defaults option and enter a URL that wont launch Flash - Hit

[flexcoders] Object of a specified type

2006-09-18 Thread Daniel
How can I konw if an object is an instance of a specified type, for example String. Thx! -- 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

[flexcoders] Working Datagrid to Tree Drag Drop

2006-09-18 Thread aerospc04
I've come across numerous posts on drag and drop actions with tree, but have been unable to find any WORKING solutions for dragging items from a datagrid to a tree that works with Flex 2.0. If anyone has a WORKING code snippet can they PLEASE post it in reply to this post/email? Thanks in

[flexcoders] Re: Flex2, ActionScript3, Cairngorm Flash

2006-09-18 Thread comfederation
Greg, Thanks a whole million because your summary is precisely what I got so far out of learning this new and amazing environment but I just needed to confirm that I was on the right track as to what was happening under the hood and only to make sure that I understood it all correctly. I have

[flexcoders] Re: Newbie problem sending an object to a cfc - where have I gone wrong?

2006-09-18 Thread iviivi_us
Hi Al, It's seems to me you are missing channel definition, something like public var cSet:ChannelSet; public function initApp() { cSet = new ChannelSet(); var customChannel:Channel = new AMFChannel(my-cfamf, http://localhost:8500/flex2gateway/); // Add the Channel to the ChannelSet.

[flexcoders] horizontallist editable=true

2006-09-18 Thread graysonpierce
Hello, I was expecing to find a editable=true on the HorizontalList just like on a vertical list. Are there any work-arounds to being able to edit the text of list members in a HorizontalList? Thanks, Gray -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Remote Object....and Data Base Connectivity

2006-09-18 Thread Madhuri Chamarty
hi Brennan,I tried putting the code in the remoting-config.xml which is in C:\fds2\jrun4\servers\default\flex\WEB-INF\flex folder?xml version="1.0" encoding="UTF-8"? service id="remoting-service" class="flex.messaging.services.RemotingService"

[flexcoders] displaying the Pop window as we focus on the link.

2006-09-18 Thread akash
Hi all, I am new to flex. And I m using flex 1.5. I am trying to open the popup window for showing contents of the link of some message as i focus on it.. but I have no idea of it. Plz. Someone having some idea regarding it share with me. Regards, Akash __._,_.___ --

[flexcoders] Re: Posting patched versions of framework code to this list?

2006-09-18 Thread Louis Ryan
Matt, Thanks for the followup and clearing up the license question. I do generally post these things to the 'wishlist', the one in question here was posted late last week. Im sure the wishlist receives a large no. of requests so Im quite happy to wait a while for someone to get back to me. I

RE: [flexcoders] Company for sale (owns 4 cpu FDS)

2006-09-18 Thread Joshua Ostrom
Alexander, How much are you looking to get for your flex licenses? Joshua Ostrom From: Alexander Tsoukias [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Company for sale (owns 4 cpu FDS) Date: Mon, 18 Sep 2006 10:49:46 - Hi

Re: [flexcoders] How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Tom Chiverton
On Monday 18 September 2006 12:16, hank williams wrote: debugger is already running in eclipse. Sorry, must have missed where you said that :-) Anyway, assuming you are right, do you (or anybody) know where I can find more doc on exactly how to invoke the debugger from the command line since

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Dimitrios Gianninas
Hi, Can you post the full error message and stacktrace to the list so we can help you? But to you what u need, use data binding! A powerful thing it is. 1) Create a variable on your ModelLocator: class ModelLocator { public var someState:String = ""; } 2) Then bind that variable to

Re: [flexcoders] ToolTip Timers

2006-09-18 Thread Samuel Reuben
and off course it would be desired to create or destroy the tooltips on the desired events of the components. -sam On 9/18/06, Samuel Reuben [EMAIL PROTECTED] wrote: Hi J, You could look into the documentation for ToolTipManager and use the methods (createToolTip and destroyToolTip)that are

RE: [flexcoders] Flex - Database

2006-09-18 Thread Jonas Windey
Has anyone actually tried executing an SQL 2005 XML Webservice directly in Flex 2? I have setup an example but I always get the following error in flex when calling a webservice method: faultCode:DecodingError faultString:'Error #1009: Cannot access a property or method of a null object

RE: [flexcoders] Flex - Database

2006-09-18 Thread Jonas Windey
Has anyone actually tried executing an SQL 2005 XML Webservice directly in Flex 2? I have setup an example but I always get the following error in flex when calling a webservice method: faultCode:DecodingError faultString:'Error #1009: Cannot access a property or method of a null object

Re: [flexcoders] Re: Flex + .NET Web Services irritations

2006-09-18 Thread John C. Bland II
I'm using WS because it is what was created for the project. The next revision will be using remoting.Serializing the returned data just seems like an extra step that is unnecessary. If I can return a List of User objects and Flex receives it and I can access it as an ArrayCollection, etc then

[flexcoders] MenuBar and Cairngorm

2006-09-18 Thread Mozilla By
Hi all, I need to enable and disable menu items in dependency of model changing. What the best practices to do this? Thanks Now I use something like this for example: ?xml version=1.0 encoding=utf-8? mx:MenuBar     xmlns:mx=http://www.adobe.com/2006/mxml    

Re: [flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Johannes Nel
try altering the index.template.html page and then running in debug mode from eclipse?On 9/15/06, hank williams [EMAIL PROTECTED] wrote:Someone must know the answer to this!On 9/14/06, hank williams [EMAIL PROTECTED] wrote: I need to be able to invoke the debug version of my flex app from the

Re: [flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread hank williams
Hmm... Though somewhat confused by your directions, I tried to follow them, and it didnt work. so some questions: 1. In FlexBuilder change your projects debug URL to something that doenst immediately launch Flash. What does this mean? Any URL at all? I did select a random url put it in the

[flexcoders] script running structure

2006-09-18 Thread Varun Shetty
What is the script running structure? Will the MX:Script run and load first before the flex structure loads.. ? Or does the flex structure load first ? I am trying to load an XML using AS 3.0 and then populate it to an datagrid obj on screen? Any good example for that been

Re: [flexcoders] Object of a specified type

2006-09-18 Thread Harish Sivaramakrishnan
use typeof to find the type of an object.ex:var str:Stringtrace(typeof(str) : prints stringHope this helpsHarishOn 9/18/06, Daniel [EMAIL PROTECTED] wrote: How can I konw if an object is an instance of a specified type, for example String. Thx!

[flexcoders] MenuBar and Cairngorm

2006-09-18 Thread Mozilla By
Hi all, I need to enable and disable menu items in dependency of model changing. What are the best practices? Thanks Now I use something like this but it isn’t good solution when menu depends on many models parameters: mx:MenuBar xmlns:mx=http://www.adobe.com/2006/mxml

Re: [flexcoders] horizontallist editable=true

2006-09-18 Thread Harish Sivaramakrishnan
Here is a small example for editable TileList using itemRenderers, its a little unpolished, nevertheless will be a good starting point. This could be easly implemented for horizontal list alsoMain.mxml--- ?xml version=1.0

Re: [flexcoders] How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Tom Chiverton
On Monday 18 September 2006 14:19, hank williams wrote: variables in a graphical window is really key to me. For me, working with the command line version of the debugger would barely be debugging. Could be worse, you could be debugging using blinkenlights :-)

Re: [flexcoders] Re: Flex - Database

2006-09-18 Thread Paul Andrews
- Original Message - From: Sudharshan Rao [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 18, 2006 2:28 PM Subject: [flexcoders] Re: Flex - Database --- In flexcoders@yahoogroups.com, Sudharshan Rao [EMAIL PROTECTED] wrote: Hi, I am new to flex, Can

[flexcoders] Re: Data synchronisation tip and tricks?

2006-09-18 Thread bill_sahlas
The CRM App example (company/employee management system) is an excellent example that is available on your deployment at http://localhost:8700/samples/dataservice/crm/companyapp.mxml You should read http://localhost:8700/samples/dataservice/crm/README.htmlas well as playing with the sample.

[flexcoders] Re: remove white content area in TitleWindow?

2006-09-18 Thread Jack OMelia
There is an easier way that I've used and that's to set the headerHeight attribute of the panel to 0. Jack --- In flexcoders@yahoogroups.com, Harish Sivaramakrishnan [EMAIL PROTECTED] wrote: To get rid of the white contentPane, you need to override the layoutChrome method in your class

[flexcoders] Set Alignment of Repeater Items

2006-09-18 Thread jbeck_sound
I've been trying to come up with a way to change the default alignment of a repeater control. By default, and this may be by specific design, the repeater aligns all items on the left. However, what I am looking for is a way to center and right align the items in the repeater. All this is for

[flexcoders] Re: Tree Component closing and opening item

2006-09-18 Thread barry.beattie
no takers, Mick? this was one thing I wanted to look into before being sidetracked with some datagrids. at first I was thinking of keeping a register of what was opened so I knew what to close. then I was thinking of closing all before opening the selected one. these are just some rough thoughts

[flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread javier_mza2003
Hello everybody ... I'm having a little problem .. The thing is that I have an application that shows a TabNavigator, a form inside it and two buttons a the bottom of the TabNavigator. Those buttons are simply previous/next buttons to go to the previous/next container in the TabNavigator. I need

[flexcoders] ListItemRenderer and border problems

2006-09-18 Thread Tom Ortega
Hello all,This is my code for my itemRenderer that I'm using in my list:?xml version=1.0 encoding=utf-8?mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml width=100% height=100% paddingLeft=0 paddingBottom=0 paddingRight=0 paddingTop=0 verticalGap=0 bottom=0 top=0 left=0 right=0 borderStyle=none

Re: [flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread Paul Andrews
- Original Message - From: javier_mza2003 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 18, 2006 2:44 PM Subject: [flexcoders] How can I block a TabNavigator ? Hello everybody ... I'm having a little problem .. The thing is that I have an application that

[flexcoders] Re: Tree Component closing and opening item

2006-09-18 Thread bhaq1972
this can be done. at first I was thinking of keeping a register of what was opened so I knew what to close. you dont have to. mx:tree has a property called openItems ..this has a reference to all the opened items. all you have to do is check whether anything is opened during a Tree.itemOpen

Re: [flexcoders] Re: Tree Component closing and opening item

2006-09-18 Thread Michael Schmalle
Hi,Actually, 'I think'... Having looked at the Tree code quite extensively, it is NOT possible.The reason being is the way the tween logic works in the Tree. When a tween is currently running, there cannot be any other tween going because there is only 1 instance of the tween in the whole tree.

[flexcoders] Re: cairngorm: calling a function in a view

2006-09-18 Thread Tim Hoff
That would be fantastic Alex. Thank you for your thoughts concerning this topic. I look forward to reading your blog. -TH --- In flexcoders@yahoogroups.com, Alex Uhlmann [EMAIL PROTECTED] wrote: Hi there, I'd suggest letting the Command retrieve a model object via ModelLocator. Then,

[flexcoders] i use the api that google provides to make flex rearch page,but...

2006-09-18 Thread garylee0709
i failed to success,here is my code,hope you can help finding the mistakes...thank you very much!!! ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ public var searchTerm:String;

[flexcoders] Re: Can a legend be draggable?

2006-09-18 Thread dinger0007
So I assume that since the people here are the best in the business that being able to create a dragable legend on a graph is not possible. --- In flexcoders@yahoogroups.com, dinger0007 [EMAIL PROTECTED] wrote: I was having space issues with a legend and thought that the ability to drag a

Re: [flexcoders] ListItemRenderer and border problems

2006-09-18 Thread Brendan Meutzner
Tom,Had the same issue with a DataGrid... don't remember exactly what the style was, and don't have access to the code right now, but it was fixed with something that was set on the DataGrid, not the renderer... hope that helps. Sorry, I could have been vaguer...;) BrendanOn 9/18/06, Tom Ortega

[flexcoders] Re: Multiple XML loads?

2006-09-18 Thread Jamie O
I had to make a few minor changes to your example to type define the XML during the function, but otherwise the following WORKS perfectly! Can also, as a result, use dot notation to access individual elements / attributes for comboBoxes within components. I think the biggest stumbling block for

RE: [flexcoders] How to implement BarChart with vertical scroll bar

2006-09-18 Thread Ely Greenfield
THere's no scrolling functionality built in to the charts, Pekka. You could extend BarChart to add it, although you might find it easier to embed a barchart instead. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pekka KolaSent: Monday, September 18,

RE: [flexcoders] Gauges in Flex Charting

2006-09-18 Thread Ely Greenfield
Hi Pramod. Building a guage in Flex/Flash should be pretty simple. Take two assets (background + needle), slap them together, and give the component a minimum, maximum, and value property. Set the rotation of the needle to match the ratio of value between min and max. Obviously,

[flexcoders] compiler warnings with [Bindable] internal

2006-09-18 Thread Jeff Tapper
Is there some restriction about using [Bindable] on internal properties? It seems that i get compiler warnings if i have [Bindable] properties maked as internal, where if i mark the same property as either public or private, there is no warning. Is this a bug, or are we not meant to allow

Re: [flexcoders] i use the api that google provides to make flex rearch page,but...

2006-09-18 Thread Muzak
Unless something has changed, you can't access the Google Search webservice from within Flash/Flex, because there's no crossdomain policy file on their server. cross-domain policy file/cross-domain file access: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213 You'll need to

[flexcoders] exisitng coldfusion .cfc files

2006-09-18 Thread bghoward3
i am updating an .cfm site and trying to make use of exisiting .cfc files and am wondering if there is way to remotely connect to them or how i can import them into my project with flex. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Steve Kellogg @ Project SOC
Dimitrios, Thanks very much for your response.  Ill put the offending code back into my app to generate the error. I had tried using data binding, but I ran into another problem, so Im not sure what Im doing wrong. The currentState that Im trying to modify is the APPLICATIONS

[flexcoders] Custom Validator in DataGrid Cell Renderer: Problems setting custom error messag

2006-09-18 Thread jfournet
I have a custom validator in a cell renderer for a datagrid cell. I cannot get the following statement to put out a custom error message when executed, nothing happens validator.validationError('requiredField',LabelProperties.getLabel (LabelProperties.FIELD_IS_REQUIRED_MSG),

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Steve Kellogg @ Project SOC
Dimitrios, Please disregard my request for further information.  Clearly, it WAS a RTFM issue.  [Bindable]. Thanks again for the initial response. It seems to be working perfectly. Steve From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] How to implement BarChart with vertical scroll bar

2006-09-18 Thread Pekka Kola
Thanks Ely! Can I fix the height of a bar series or should I implement that by myself too? BR, Pekka From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ely Greenfield Sent: 18. syyskuuta 2006 19:15 To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread Deepa Subramaniam
What you can do is iterate through the TabNavigator's tabs and disable each of them. By disabling them, the change event will not get emitted. Use TabNavigator.getTabAt() and set the enabled property to false for each Tab. Now, when you disable a Tab, the Tab will assume the look of its disabled

[flexcoders] Problem with Flash Player 9 in IE6

2006-09-18 Thread efeminella
Has anyone had any problems running Flex 2.0 apps in IE6? I have a relatively big Flex 2.0 application that runs absolutely fine in Firefox but when the app runs in IE6 and sits idel (i.e. there are no processes running in the app) the CPU fluctuates from 0 - 25 - 75 - 100% Does anyone know what

[flexcoders] Auto Scroll in Datagrid

2006-09-18 Thread KP
Hi All, Is there any way to implement auto scroll in datagrid. What I want to do is I have a datagrid of lets say 10 rows approx it has data of about 20 rows. Now what happens is scrollbars comes for another 10 rows. What ideally should happen is it should first show 10 rows and

RE: [flexcoders] Re: Can a legend be draggable?

2006-09-18 Thread Matt Horn
So I assume that since the people here are the best in the business that being able to create a dragable legend on a graph is not possible. Scot, Actually, it's documented how to make any UI component draggable. You can use the drag and drop APIs documented here (conceptual info):

Re: [flexcoders] exisitng coldfusion .cfc files

2006-09-18 Thread Douglas Knudsen
add a service or facade layer. Basically a CFC that has methods with remote access that access the other pre-existing ones.DKOn 9/18/06, bghoward3 [EMAIL PROTECTED] wrote: i am updating an .cfm site and trying to make use of exisiting .cfcfiles and am wondering if there is way to remotely

[flexcoders] AreaSerie minField Datatip bug?

2006-09-18 Thread guillaume . bignon
Hi, I am using the minField attribute of the AreaSerie, to define high and low bounds for the area. The datatip announces always the same value for both high and low. does anyone know if it's a known bug and if there's anything I can do? I'm using Flex 2. Thanks.

RE: [flexcoders] How to implement BarChart with vertical scroll bar

2006-09-18 Thread Ely Greenfield
I'm not sure exactly what you mean by 'fix the height of a bar series.' Can you be more specific? E. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pekka KolaSent: Monday, September 18, 2006 9:51 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] How

[flexcoders] Re: exisitng coldfusion .cfc files

2006-09-18 Thread bghoward3
--- In flexcoders@yahoogroups.com, bghoward3 [EMAIL PROTECTED] wrote: i am updating an .cfm site and trying to make use of exisiting .cfc files and am wondering if there is way to remotely connect to them or how i can import them into my project with flex. i have figured out how to get the

[flexcoders] Re: remove white content area in TitleWindow?

2006-09-18 Thread gustavo.saume
Hello aaron, i dont know if its what your looking for but you could set backgroundAlpha of the panel to 0. it might do the trick Gus --- In flexcoders@yahoogroups.com, Jack OMelia [EMAIL PROTECTED] wrote: There is an easier way that I've used and that's to set the headerHeight attribute

[flexcoders] Loading XML question again.

2006-09-18 Thread aaron smith
when I run this i get a runtime error about not being able to access local files. If I comment out the local xml file reference and uncomment the reference to sephirot's xml file. it works fine. How can this be used to load local XML? And i think using the compiler switch to allow local

Re: [flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread Paul Andrews
- Original Message - From: Deepa Subramaniam [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, September 18, 2006 6:52 PM Subject: RE: [flexcoders] How can I block a TabNavigator ? What you can do is iterate through the TabNavigator's tabs and disable each of them. By

Re: [flexcoders] Re: Flex - Database

2006-09-18 Thread greg h
Sudharshan, Please tell us more about yourself? The more we know the better we can be at providing assistance. For instance: Do you have a web application server? (e.g. J2EE, ColdFusion, PHP, etc.) What type of database are you trying to connect to? (Oracle, DB2, MySQL, Access, etc.)

[flexcoders] Wrapping a TileList

2006-09-18 Thread Daniel Wabyick
Hey guys, I am trying to figure out a way to get a TileList to dynamically change its columns and rows based on its size. Here is a scenario with a TileList whose direction is vertical: - TileList is drawn with 8 items in a space where it can fit 4 items in a column, so it draws 2 columns, 4

[flexcoders] Work for hire

2006-09-18 Thread smellhound04
Does anyone know where I might be able to solicit Flex/Flash programmers for hire? I don't just want to blatently post here because I know that is not the forum for this group. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Extending (mxml) HTTPService

2006-09-18 Thread magnus_particledreams
First post :)I use JSON for most of my work because it makes handling datatypes so much easier.. and with corelib including serializers for JSON makes things a whole lot easier for me.For future projects I will make heavy use of remoting and Im currently looking at HTTPService as a foundation

[flexcoders] IDE

2006-09-18 Thread Cosmic
Has anyone heard any rumors of when the IDE for mac is coming out? Thanks Peter -- 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

[flexcoders] Re: Newbie problem sending an object to a cfc - where have I gone wrong?

2006-09-18 Thread foote3
Irina -- Thanks for the suggestion, but I'm not sure that's germaine. I've used other remote objects that are working just fine without a channel definition. This seems to be an issue of the object I'm passing from Flex/ActionScript is not being well received by ColdFusion. (Unless I'm missing

[flexcoders] xsd datatypes in flex??

2006-09-18 Thread Aldo Bucchi
looking for a lib to work with xsd datatypes in flex... any pointers?? thx aldo -- : Aldo Bucchi : mobile (56) 8 429 8300 -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Wok for hire

2006-09-18 Thread smellhound04
Does anyone know where I can find Flex/Flash programmes for projects? -- 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

Re: [flexcoders] weakreference??

2006-09-18 Thread Aldo Bucchi
aha! thanks so we have weakreferences... but only for the *keys* of the dictionary... but i need them for the values so I can create ordered lists and maps list[0] = weaklyReferencedObject1; list[1] = weaklyReferencedObject2; list[2] = weaklyReferencedObject3; map[blabla] =

[flexcoders] Re: Auto Scroll in Datagrid

2006-09-18 Thread Tim Hoff
Hi Kumar, You can control the verticalScrollPosition of a DataGrid with actionscript. Create a funtion that utilyzes a Timer object. At the desired time interval, increment the verticalScrollPosition. You will probably want to check to see if there are enough rows to scroll and if you are

[flexcoders] Re: How do I invoke debug version of a flex app from web browser URL

2006-09-18 Thread Louis Ryan
Hank, Sorry if my instructions werent clear... Hitting the debug icon in Flex Builder will start the debugging session and launch the debug URL specified for the project which can be changed by going into the Run - Debug - Other (Debug Configuration) If you change that URL to something which

[flexcoders] Re: datagrid, custom editRenderer, and labelFunction

2006-09-18 Thread Douglas Knudsen
bump! Any ideas?On 9/17/06, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, I have a datagrid setup with using a combobox as a editRenderer. The column using this renderer displays its data using a labelFunction. When a edit takes place, the labelFunction is not kicked off again. If I remove the

Re: [flexcoders] Re: Newbie problem sending an object to a cfc - where have I gone wrong?

2006-09-18 Thread Paul Hastings
On 9/18/06, iviivi_us [EMAIL PROTECTED] wrote: public var svcEvent:RemoteObject = new RemoteObject(); not so hot on this technique but if you're passing an AS object (typed or otherwise) to your CFC, are you adding a dummy argument flex side to make cf see the passed objects as structures?

[flexcoders] Outline view in FB2 does not work with classes from mx.* package?

2006-09-18 Thread Andriy Panas
Hello flexcoders, I did not manage yet to use Outline view together with classes from mx.* package. Outline view in FB2 works fine only with my custom classes. Here are the steps to reproduce: 1) Start Flex Builder 2 Standalone 2) Press

Re: [flexcoders] Re: cairngorm: calling a function in a view

2006-09-18 Thread Diego Guebel
Thanks Alex for reply, I'm looking forward to read that post in your blog. cheers, Diego On Mon, 18 Sep 2006 21:50:59 +1200, Alex Uhlmann [EMAIL PROTECTED] wrote: Hi there, I'd suggest letting the Command retrieve a model object via ModelLocator. Then, some state property in the model

[flexcoders] flash player 9 security?

2006-09-18 Thread aaron smith
Hey question about the flash player and loading xml / security.I saw this comment by Mike Chambers on Kuwomot's blog, this is what the comment said: After installing the new Beta 3 I'm having trouble with loading local XML filesIn the project setting for your project, select the Flex Compiler

[flexcoders] Re: Flex - Database

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Thought-making, certainly :-) Suppose I was using FDS, so I've got lots of client-side logic for what can and can't be changed. I then have to duplicate that all server-side as well, because I don't trust the client.

[flexcoders] Re: Flex - Database

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: Thought-making, certainly :-) Suppose I was using FDS, so I've got lots of client-side logic for what can and can't be changed. I then have to duplicate that all server-side as well, because I don't trust the client.

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Dimitrios Gianninas
you got it :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOCSent: Monday, September 18, 2006 12:40 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] limits to

[flexcoders] Re: Flex Data Services configuration problem

2006-09-18 Thread jason_williams_mm
--- In flexcoders@yahoogroups.com, amalabie [EMAIL PROTECTED] wrote: I'm trying to configure Flex Data Services with Hibernate on the back end and I'm running into these problems as shown below. Any pointers to solve these would be highly appreciated. You need to specify/configure the

[flexcoders] AreaSerie minField Datatip bug?

2006-09-18 Thread guillaume . bignon
Hi, I am using the minField attribute of the AreaSerie, to define high and low bounds for the area. The datatip announces always the same value for both high and low. does anyone know if it's a known bug and if there's anything I can do? I'm using Flex 2. Thanks.

[flexcoders] Scrollbar thickness

2006-09-18 Thread Daniel Wabyick
I am creating a touchscreen app that requires thick scrollbars. I noticed a static constant in the Scrollbar class - THICKNESS set to 16 pixels. Are scrollbars fixed to that size, or is there some way to change that through the skinning mechanism? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: exisitng coldfusion .cfc files

2006-09-18 Thread bghoward3
can you provide more insight or direction on how to do this, links or examples are greatly appreciated --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: add a service or facade layer. Basically a CFC that has methods with remote access that access the other

Re: [flexcoders] Gauges in Flex Charting

2006-09-18 Thread John Kirby
Title: quote Check this out: http://www.maani.us/gauge Ely Greenfield said the following: Hi Pramod. Building a guage in Flex/Flash should be pretty simple. Take two assets (background + needle), slap them together, and give the component a minimum, maximum, and value

Re: [flexcoders] weakreference??

2006-09-18 Thread Christian Edward Gruber
I used to have this problem in Java. You are likely to have to build it yourself, regrettably. Thankfully, maps aren't that hard to build. If you create a WeakValueMap class, share it with the community - they'll thank you. :) regards, Christian. Aldo Bucchi wrote: aha! thanks so we

  1   2   >