Re: [flexcoders] So? What are folks here actually building...?

2006-07-20 Thread Pan Troglodytes
Well, since I have never programmed in ActionScript at all, my projects have served a dual purpose - functional and educational. In other words, some of the software may never see the light of day but that's okay - at least it taught me how to build in Flex. My most real application has been an

Re: [flexcoders] Is it possible to put a chart inside a DataGridColumn as an itemRenderer?

2006-07-20 Thread Pan Troglodytes
The BarChart can be pretty persnickety about how the data is arranged. You didn't fully explain exactly what you wanted the chart to look like, so I made some assumptions. Like I assumed you wanted the axis to say gold, red, yellow. The BarChart doesn't seem to like it much when each axis

Re: [flexcoders] How to remove DataGrid itemRenderer top Bottom spaces

2006-07-20 Thread Pan Troglodytes
I've run into the same problem. ItemRenderer had a canvas that was 100% width/height, but still had that annoying space over it. Haven't been able to fix it. Really annoying in combination with the selectionColor. The selectionColor winds up being draw only in that out-of-bounds region,

Re: [flexcoders] So? What are folks here actually building...?

2006-07-20 Thread Dima Ulich
Hello, My name is Dmitriy. I think I can share what I've been working on during last couple of years. I work for Christian University in Russia. The school hired me to make a website for them and to write a program to automate students' registration, grades and etc. The school didn't have

RE: [flexcoders] So? What are folks here actually building...?

2006-07-20 Thread Matt Chotin
Can you provide a little more detail on the performance areas that are hurting you? If theres a sample that demonstrates the speed issue it may be something we can look at. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan

[flexcoders] performance issues

2006-07-20 Thread Pan Troglodytes
Well, specifically I had a DataGrid using this for the itemRenderer:package nes { import mx.controls.dataGridClasses.DataGridListData ; import mx.controls.Label; public class SignColorItemRenderer extends Label { public var negativeColor:uint = 0xFF; public var positiveColor:uint =

RE: [flexcoders] Re: Flex and CF

2006-07-20 Thread Dirk Eismann
Unfortunately not - if your authenticated against FDS (or a service behind FDS by using setRemoteCredentials()) you're not automatically authenticated against the RPC destination as this is running in a different process and vice versa. You'll have to set the same credentials on both RPC and DS

RE: [flexcoders] Flex 2.0 - Passing Custom Java Objects to Flex

2006-07-20 Thread Dirk Eismann
Hi Josh, _remoteClass has been deprecated since Flex 1.5 To create a mapping between AS3 and Java classes in Flex 2you have to use the [RemoteClass(alias=foo.bar.Classname)] metadata tag on your AS3 class. Check the Serializing data chapter (p. 1089) in the flex2_devguide.pdf for morre

[flexcoders] URGENT Question: CSS type selectors are not supported in components

2006-07-20 Thread Tansht
Hi, there I checked the Flex 2 livedoc and found out all formatting rules I wrote in my css file are supported styles. However, the warning messege CSS type selectors are not supported in components appears when I run my Flex application. Does any one know how to resolve this problem? Thanks in

[flexcoders] CSS type selectors are not supported in components

2006-07-20 Thread Tansht
Hi, there I'm experiencing a problem. I've checked FLEX 2 livedoc and found out all styles I defined in an external css files are supported style. However, the warning message CSS type selectors are not supported in components appeared when I run my application. Does any one know how I can

Re: [flexcoders] Re: HTTPService in components

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 07:34, mcmcbrianfarrell wrote: Many thanks to all for their help. That's OK - the compiler errors are not always as clear as they could be about what is wrong and how to fix it, especially when the error is in the fomat of your MXML. -- Tom Chiverton

RE: [flexcoders] Flex 2: How To Use Tree.expandItem()

2006-07-20 Thread Jonas Windey
Hi Colin, expandItem doesnt expect a node in your tree, but in your dataprovider example: myTree.expandItem(treeData.node[0],true, false); where treeData is the dataprovider (in this case, an xml document) Hope this helps, Jonas From:

[flexcoders] what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Antoine Malpel
I still do not understand clearly what is the difference between a Flex server and Flex Data Services... I actually use Flex 1.5 with RemoteObjects (calling JavaObject in tomcat) and HTTPRequests (texte files) are RemoteObject and HttpRequests using Flex Data Services ? is FDS used only but

Re: [flexcoders] what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Ralf Bokelberg
Hi Antoine, i found this posting from Steven very useful. http://groups.yahoo.com/group/flexcoders/message/43033 Also David provides some useful links in the same thread http://groups.yahoo.com/group/flexcoders/message/42588 Cheers, Ralf. On 7/20/06, Antoine Malpel [EMAIL PROTECTED] wrote:

[flexcoders] Datagrid/webservice - best practice??

2006-07-20 Thread Ken Bromberger
smime.p7m Description: S/MIME encrypted message

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 17:57, Jesús Iglesias wrote: I have read the docs, but I don't know how to deny drop, there is aa acceptDragDrop method, but not anything to deny. In your dragEnter handler, don't call DragManager.acceptDragDrop if you don't want it dropped. -- Tom Chiverton

Re: [flexcoders] Cairngorm starter question

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 01:03, Dimitrios Gianninas wrote: account, search accounts, etc... Don't know exactly what to call these, they are complex events that will affect many things (data and views). We've got a sort-of-vague-rule that says 'if everything you are doing is only view-local,

Re: [flexcoders] what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Rich Tretola
If you are using Java Remote Objects, you will need FDS either Express (Free Version) or Enterprise. A compiled swf will only work for you if you are loading data through http or webservices. Here is an Adobe faq http://www.adobe.com/products/flex/productinfo/faq/ Rich On 7/20/06, Antoine

Re: [flexcoders] Re: Chart data transitions effects when using AS

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 17:35, Doug Lowder wrote: The Series class has a showDataEffect. Ely has some source code available at http://demo.quietlyscheming.com/ChartSampler/srcview/ that demonstrates how to use it. Take a look at the SeriesInterpolate and LineSeries declarations in

RE: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Jesús Iglesias
Yes, it is supposed to work, but drop event is made always. My tree have: dragEnabled=true dropEnabled=true dragEnter=handleDragDrop(event) And the handler (empty): private function handleDragDrop(event:DragEvent) : void{ } I don't call acceptDragDrop but the drop is

Re: [flexcoders] what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Antoine Malpel
ok thanks for this clear answer, because I had allready read the previous post but couldn't be sure, so I think this is the same for flex 2.0 ... what I don't understand is how to syncrhonize datas between back clients (like a product stock) ... but I may understand that finding a article

Re: [flexcoders] Endpoint uri mapping confusion for coldfusion:8500

2006-07-20 Thread Tom Chiverton
On Tuesday 18 July 2006 22:14, ruby_annes_dad wrote: When i test the Main.mxml file i get a gray flash player screen that never loads. Do you have the debug version of the Flash player installed ? (as a side note, why do lots of people refer to this as an flex-enterprise-services.xml file?

Re: [flexcoders] what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 09:33, Rich Tretola wrote: A compiled swf will only work for you if you are loading data through http or webservices or ColdFusion remoteing. -- Tom Chiverton This email is sent for and on behalf of Halliwells

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 10:36, Jesús Iglesias wrote: Yes, it is supposed to work, but drop event is made always. AFAIK you can't mix automatic drag/drop behaviour (dragEnabled=true dropEnabled=true as MXML attributes) and doing it yourself (mouseMove=dragIt()... dragEnter=doDragEnter(event);

Re: [flexcoders] Flex Builder 2 RDS Connection problems

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 19:56, Brian Holmes wrote: no context root Not even '/' ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and

RE: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Jesús Iglesias
Yeah!!! We are on the right way. Now I have another problem: private function dragIt(event:MouseEvent):void { var dragInitiator:Tree=Tree(event.currentTarget); var ds:DragSource = new DragSource(); DragManager.doDrag(dragInitiator, ds, event);

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 11:34, Jesús Iglesias wrote: private function dragIt(event:MouseEvent):void { var dragInitiator:Tree=Tree(event.currentTarget); var ds:DragSource = new DragSource(); DragManager.doDrag(dragInitiator, ds, event); }

[flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
Has anyone found a workaround for deselecting a tab in a Flex 2 TabNavigator?To avaoid rehashing what has been tried, none of the following work:selectedIndex = nullselectedIndex = 0selectedIndex = -1 selectedChild = nullAny other ideas?Rich __._,_.___ -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Jesús Iglesias
Hi again and thanks for your help. I had saw the sample from de the docs, but the sample tries to drag and drop a Canvas. Following that sample I can drag and drop full tree object, but I want to drag only one node. The problem is how to instantiate that node and not the tree: var

[flexcoders] Re: what is and when Do I need FDS ? 1.5 2

2006-07-20 Thread Dave Wolf
Just to be entirely precise, if you are calling a Java class via mx:RemoteObject/ then you will need the AMF gateway which is a part of the services provided with FDS. You can however call a Java object in several other ways. You could expose that servant as a SOAP web service using several

[flexcoders] getLineMetrics()

2006-07-20 Thread Rich Tretola
getLineMetrics() does not seem to be working on Text components created through actionscript. It does work when using an inline mx:text componet but I need to create the Text components at runtime with actionscript. Has anyone else noticed this? I have tried using measureText(componentId).width

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 11:52, Jesús Iglesias wrote: What I need is something likd: var dragInitiator:Object=Tree(event.currentTarget).selectedItem; But it has to bee a UIComponent, not just an object. I haven't had to play with trees myself yet, but in dragIt(): ds.addData(

[flexcoders] Re: Flex and CF

2006-07-20 Thread dcooper2025
Brian, see my last post on this subject. It's all working now,just use custom channels. Damon --- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: I agree. I have been able to get FDS and CF running together on my local machine, problem is we work in groups and have not

Re: [flexcoders] addressing lineseries chartItems

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 09:54, sp0rarb3jd3r wrote: Anyone got a clue on this? Did some chart stuff the other day - maybe you could look at the series property of the chart itself ? -- Tom Chiverton This email is sent for and on behalf

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Ralf Bokelberg
NaN maybe? Cheers, Ralf. On 7/20/06, Rich Tretola [EMAIL PROTECTED] wrote: Has anyone found a workaround for deselecting a tab in a Flex 2 TabNavigator?To avaoid rehashing what has been tried, none of the following work:selectedIndex = nullselectedIndex = 0selectedIndex = -1 selectedChild =

Re: [flexcoders] Icons in Datagrid

2006-07-20 Thread Tom Chiverton
On Wednesday 19 July 2006 23:37, Josh Johnson wrote: In re-creating the application, one of the issues I'm stumped on is how to get icons in a data grid cell. Ideally, I want to key off an You'll need to create what is known as an itemRenderer:

[flexcoders] Re: Flex and CF

2006-07-20 Thread dcooper2025
Correct: you need to use setRemoteCreditials for both Flash Remoting and FDS. A bit inconvenient, but still a very workable solution I would argue. Putting FDS inside the CF instance may not be feasible with CF and Flex 2: we did some initial investigation on whether a bundled install would

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 11:48, Rich Tretola wrote: Has anyone found a workaround for deselecting a tab in a Flex 2 TabNavigator? If you are saying that setting the selectedIndex of a tabnavigator doesn't work, we're going to need some code to convince us. -- Tom Chiverton

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
Nope, tried that as well. That won't even compile.On 7/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: NaN maybe? Cheers, Ralf. On 7/20/06, Rich Tretola [EMAIL PROTECTED] wrote: Has anyone found a workaround for deselecting a tab in a Flex 2 TabNavigator?To avaoid rehashing what has been

[flexcoders] Looking for Free SWF Projector

2006-07-20 Thread Shade Gmail
Hey, everyone, I'm developing an open-source local application which requires file access (browse, load, save). Are there any open-source / free projectors I could use to play my swf app with a file access API? An alternative _javascript_-oriented solution would work great as well. I've seen

[flexcoders] Re: ACcess SOAP fault code

2006-07-20 Thread ting_first
It is working in Flex 2, JBoss/tomcat Thanks! --- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] wrote: It's a little more work than a simple filter. It requires a filter and an HttpServletResponseWrapper. I've included a simple version here along with the web.xml file

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 12:45, Rich Tretola wrote: I am not saying that setting a TabNavigators selectedIndex doesn't work, I am saying that I can not put a TabNavigator into a state where there are no tabs selected. That's impossible - what on earth would it look like ? You can set visible

[flexcoders] Confusion about 'Security error accessing url'

2006-07-20 Thread flexava
I'm using flex builder to create a small flex project to learn how to call web service in flex,but I encountered a problem really confusing me.I created a new file called wstest.mxml and here's its content: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Not acept drag on Tree nodes

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 12:41, Jesús Iglesias wrote: dragInitiator in my case should be the node not the full Tree. Why ? But I wanted the drag to display a copy of the node (the folder and the text), just the standard way it works. If all you want is to change the image shown while

[flexcoders] Re: Flex 2: How To Use Tree.expandItem()

2006-07-20 Thread Colin Wiseley
Thanks for the reply. That clears up a lot of confusion that I had about the tree control. I wish the documentation was a little clearer about it. Colin --- In flexcoders@yahoogroups.com, Jonas Windey [EMAIL PROTECTED] wrote: Hi Colin, expandItem doesn't expect a

[flexcoders] Re: Confusion about 'Security error accessing url'

2006-07-20 Thread jrunrandy
I was just looking at this page in the tutorial: http://livedocs.macromedia.com/flex/2/docs/0071.html You probably need to define a crossdomain.xml file on the server running the web service. This Flex docs have more information on this topic, as well as this technote:

[flexcoders] Loading configuration file on runtime

2006-07-20 Thread Ben Agre
I'm looking for a way to load a configuration file in flex that is in the folder on runtime. It can be any type of text file I just want to load it then declare a variable from the item that is loaded. A simple question I thought but I still can't find the answer. Any help is greatly

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
Not the content, the actual tab in the navigator. In Flex 1.5 setting selectedIndex to -1 put all of the tabs in the unselected state visually but this doesn't work in Flex 2. Rich On 7/20/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 20 July 2006 12:45, Rich Tretola wrote: I am not

[flexcoders] using XMLList.contains() question

2006-07-20 Thread djbrown_rotonews
My xml stream is as follows, and I want to programmatically determine if it contains the cpData tag. How can I do this via the XMLList.contains() method? socFlight cp dataValue=3* severity=5/ cpflt dataValue=HOTL severity=5/ cpfrm dataValue=STL severity=0/ fa dataValue=7 severity=11/

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
There is a valid reason for why I want to do this and that is to have a multirow custom navigator. Darron (http://www.ifbin.com/news/2005/11/flex-15-multiline-tabnavigator-by.html) accomplished this in Flex 1.5 by repositing the 2 navigators and setting the selectedIndex to -1 in the upper

RE: [flexcoders] Using taglib in JSPs

2006-07-20 Thread Cathy Reilly
The tag library feature is not available in Flex 2. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joonha Lee Sent: Wednesday, July 19, 2006 10:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using taglib in JSPs I am not found

[flexcoders] App Blows Up in Production Player

2006-07-20 Thread dadrobson
We have the boxed version of FlexBuilder 2 on back-order; Adobe tells us they're out of stock. Adobe's website won't take our corporate credit cards, so we can't order the download version. Meanwhile, I've completed an entire app in Flex Builder 2 Beta 3. It works beautifully in the Beta debug

[Flexcoders] ApplicationControlBar and dragManager bug?

2006-07-20 Thread Dima Ulich
Hello, Did anyone see that before? I found it this morning. If you hava an applicationControlBar docked and have a list control which can accept drop operations, you will find that there is an offset for a dragManager. Try the example. Try to drag the 3 item to the top most position and you

Re: [flexcoders] FDS deployment issue

2006-07-20 Thread hank williams
Ok, so I have figured this out and boy was it complicated.There were two issues that combined to make this problem very difficult to track.First, though flex may be in build automatically mode, it does not rebuild when a dependent xml file is changed. So if you make a change to the

RE: [flexcoders] Re: ACcess SOAP fault code

2006-07-20 Thread Carson Hager
Glad to hear it. I'm going to package those classes up in a JAR file so that they're using to use and people don't have to compile them manually. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
That is worth a shot. Rich On 7/20/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 20 July 2006 14:14, Rich Tretola wrote: There is a valid reason for why I want to do this and that is to have a multirow custom navigator. Darron

[flexcoders] Subclassing the flex DateChooser

2006-07-20 Thread Paul Andrews
Any good examples out there? Paul Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM

Re: [flexcoders] Looking for Free SWF Projector

2006-07-20 Thread JesterXL
Rock and a hard place. Screenweaver is open source, I believe supports Flash Player 8 and below: http://www.osflash.org/screenweaver Zinc 2.5 supports Flex 2, but is not open source.http://www.multidmedia.com/software/zinc/ - Original Message - From: Shade Gmail To:

RE: [Junk E-Mail - MED] [flexcoders] App Blows Up in Production Player

2006-07-20 Thread Shannon Hicks
You need to re-compile the app in the final version of FlexBuilder. For the moment, you can go download the trial version (45 days), and use that. Of course, charting is still the evaluation version, but that's probably not an issue for you if you're still using B3. Shan From:

[flexcoders] Re: Loading configuration file on runtime

2006-07-20 Thread ben.clinkinbeard
import flash.events.Event; import flash.net.*; public function execute():void { var XML_URL:String = ../config/config.xml; var myXMLURL:URLRequest = new URLRequest(XML_URL); appLoader = new URLLoader(myXMLURL); appLoader.addEventListener(complete, configLoaded); }

Re: [flexcoders] return STRUCT type from CFC to flex

2006-07-20 Thread Nick Collins
OK, I am using RemoteObject. Tom's suggestion of putting the variables all UPPERCASE worked! Thanks Tom.I think I do have value object created in the CFC. I'm not familiar with what exactly you're referring to, but this is what I have to create the variables: cfset results = StructNew() cfset

RE: [Junk E-Mail - MED] [flexcoders] Subclassing the flex DateChooser

2006-07-20 Thread Shannon Hicks
http://weblogs.macromedia.com/khoyt/archives/2005/03/custom_calendar.cfm Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul AndrewsSent: Thursday, July 20, 2006 8:55 AMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - MED] [flexcoders] Subclassing the

Re: [flexcoders] App Blows Up in Production Player

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 14:19, dadrobson wrote: Meanwhile, I've completed an entire app in Flex Builder 2 Beta 3. It Why not download the trial of it, or use the free SDK ? In short, it's a complete mess. The difference between running the app in the Beta player vs. the production player is

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Ralf Bokelberg
Unfortunately _selectedIndex is private, so we are not able to assign something to it without using the original setter (which in turn hinders you from assigning -1) Maybe you can throw a few buttons into a horizontal box? Cheers, Ralf On 7/20/06, Rich Tretola [EMAIL PROTECTED] wrote: That is

[flexcoders] itemRenderer=mx.controls.CheckBox

2006-07-20 Thread mepaninaresh
I am pretty sure this is a bug. Every time a checkbox is selected the other one gets reset. The only conclusion I have reached is I am using aXMLListCollection as a dataProvider. Any help would be welcome. PS. My actual code is more complicated than below!! ?xml version="1.0"

[flexcoders] Really weird behavior when changing state

2006-07-20 Thread cvich12
I develop an application which displays statistics according to various views. When I pass from the basic view to a more advanced view called "VueClient", I re-initialized the dataProvider of my charts. In spite of that, when the charts appear, the dataProvider have one element. Here an sample

[flexcoders] Flex 2 plugin with Eclipse 3.2 errors

2006-07-20 Thread thunderstumpgesatwork
Hi all. Before you all tell me It's not supported, I know. However I'm using HibernateTools which requires it, so I've been giving it a try. I read on the official Flex forum that some people are using Eclipse 3.2 successfully. However I get the following 'internal errors' when the stack trace is

[flexcoders] Updates for Flex 2.0?

2006-07-20 Thread Sergey Kovalyov
Hi All! Are there any plans regarding updates or add-ons for Flex 2.0 by Adobe? I consider, such useful features like markers for methods that either implement interface or override super class implementation, highlighting all variable appearance in its scope, removing unused imports,

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Rich Tretola
Yeah, I did something like that also but it didn't look as nice. Rich On 7/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: Unfortunately _selectedIndex is private, so we are not able to assign something to it without using the original setter (which in turn hinders you from assigning -1)

Re: [flexcoders] App Blows Up in Production Player

2006-07-20 Thread Weyert de Boer
One of the reasons why most companies don't allow you to redistribute 'products' made with beta software. Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out the enhanced email design.

Re: [flexcoders] Flex arrows?

2006-07-20 Thread Douglas Knudsen
no workiehope jester's bag of tricks is deep! I looked around the Flex SDK source and see no arrow pngs at all, many other pngs though. My guess is the arrows are compiled in a swc somewheres, which means they should be 'grabable' eh? Be nice to use any graphics in the SDK in custom

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:26, Ralf Bokelberg wrote: Unfortunately _selectedIndex is private, so we are not able to assign Can you not use override public set selectedIndex() ? -- Tom Chiverton This email is sent for and on behalf of

Re: [flexcoders] return STRUCT type from CFC to flex

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:00, Nick Collins wrote: I think I do have value object created in the CFC. I'm not familiar with what exactly you're referring to, but this is what I have to create the variables: What'd you do with VO's is cfset results =

Re: [flexcoders] Re: Loading configuration file on runtime

2006-07-20 Thread Douglas Knudsen
besides Ben's suggestion, you can also use remoteobjects to map a configBean. This way you have one config file for server/client. DKOn 7/20/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: import flash.events.Event;import flash.net.*;public function execute():void{var XML_URL:String =

Re: [flexcoders] Updates for Flex 2.0?

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:34, Sergey Kovalyov wrote: Are there any plans regarding updates or add-ons for Flex 2.0 by Adobe? I imagine so. Have you dropped your list in the box at http://adobe.com/go/wish ? -- Tom Chiverton This email

Re: [flexcoders] Really weird behavior when changing state

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:08, cvich12 wrote: Any idea of what could cause this ? Action script and events are all asynchronous - the order things get logged in the debugger need not be the order they actually happened :-) Do you have something that goes off and fills in the dataProvider that

Re: [Junk E-Mail - MED] [flexcoders] Subclassing the flex DateChooser

2006-07-20 Thread Paul Andrews
Thank you! - Original Message - From: Shannon Hicks To: flexcoders@yahoogroups.com Sent: Thursday, July 20, 2006 3:08 PM Subject: RE: [Junk E-Mail - MED] [flexcoders] Subclassing the flex DateChooser

Re: [flexcoders] return STRUCT type from CFC to flex

2006-07-20 Thread Mike Nimer
Next time you run intoa problem like this, you can use this to dump what is being returned and figure out what's wrong. http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel ---nimer - Original Message From: Nick Collins [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent:

[flexcoders] DateField cellRenderer not working with date as String

2006-07-20 Thread John Buhl
The DateField cellRenderer works great when your date is already a Date object. However, since I am dynamically reading in an XML file the date field comes across as text, so I'm trying to cast it into a Date object before using the cellRenderer component. But it just won't work. Has anyone run

[flexcoders] Acegi/Spring/Flex authentication

2006-07-20 Thread flxcoder
Hi all. Maybe not a flex question but relevant. I am trying to authenticate flex into my middle tier by using acegi. I am moderately familiar with acegi and the saying goes that the filter checks the entry point as bean id=authenticationProcessingFilterEntryPoint

[flexcoders] Unsubscribe

2006-07-20 Thread Ferran Rosales
Be one of the first to try Windows Live Mail. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Looking for Free SWF Projector

2006-07-20 Thread hank williams
Edwin is working on flash 9, but it is crashing right now.You should join the mailing list at haxe.org. Edwin (the author of screenweaver) and Nicolas canasse have created a new screenweaver called screenweaver swhx. Flash 9 support as soon as he fixes the bug. Its quite cool. All of the stuff

[flexcoders] [Bindable] not working

2006-07-20 Thread polestar11
Hi there I have a class containing 2 variables, which I am trying to bind to a seperate component. I am not using Cairngorm, although the structure is quite similar, in that I have a component (view) that references values in a singleton class (model) In the model-like class I have the

Re: [flexcoders] Flex arrows?

2006-07-20 Thread JesterXL
Here G, this should get you started: http://pastebin.de/9387 http://pastebin.de/9388 ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:local="*" mx:Style source="index.css" /local:NextMonthButton /mx:DateChooser

Re: [flexcoders] Deselecting a Tab ??

2006-07-20 Thread Ralf Bokelberg
You can override it, but you can't change the internal _selectedIndex, so it's useless. Found another solution though: tabNavigator.getTabAt(tn.selectedIndex).selected=false; Cheers, Ralf. On 7/20/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 20 July 2006 15:26, Ralf Bokelberg

Re: [flexcoders] return STRUCT type from CFC to flex

2006-07-20 Thread Nick Collins
Cool! Thanks MikeOn 7/20/06, Mike Nimer [EMAIL PROTECTED] wrote: Next time you run intoa problem like this, you can use this to dump what is being returned and figure out what's wrong. http://www.mikenimer.com/index.cfm/2006/7/5/FlexDebugPanel ---nimer

RE: [flexcoders] Flex Builder 2 RDS Connection problems

2006-07-20 Thread Brian Holmes
Tom, I did try just a '/' for the context root and still can't connect. I'm beginning to think that it's got to be something on our network as I have been able to connect to RDS everywhere but here it seems. Thanks. Brian. -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Strange behavior in datagrid

2006-07-20 Thread Joe Stramel
I have a datagrid in my app that is displaying one row of data BELOW the actual visible control. Any idea what could cause something likethat? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Binding 2 datagrids and videoDisplay

2006-07-20 Thread franto
i think, you read something from localfilesyustem and web as well?i have same problem... but I have to use compiler directive use_network=trueand use just network, than this error didnt occurs anymore(it was because flv wasnt downlaoding from webOn 7/18/06, tonyx_788 [EMAIL PROTECTED] wrote:

[flexcoders] double click in a cell adds an icon?

2006-07-20 Thread djbrown_rotonews
I've got a dataGrid, and I want to add an icon to a particular cell when I doubleclick on it. I know how to capture the doubleclick event, etc.. but how do I go about adding the icon to the current contents of the renderer (it's plain text by default) Yahoo!

Re: [flexcoders] DateField cellRenderer not working with date as String

2006-07-20 Thread Tom Chiverton
On Thursday 20 July 2006 15:53, John Buhl wrote: field comes across as text, so I'm trying to cast it into a Date object before using the cellRenderer component. But it just won't work. Has What format is the data string in ? Is it one Date can parse itself ? -- Tom Chiverton

[flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-07-20 Thread ben.clinkinbeard
Hey Tim, No worries, I didn't think you were being harsh, I just wanted to clarify what I was referring to. I am very new to Flex, so as long as it doesn't involve calling me names I am willing to listen to just about any advice. Actually, I could probably overlook namecalling if the info was

[flexcoders] Re: Confusion about 'Security error accessing url'

2006-07-20 Thread flexava
Ya,I know the existence of crossdomain.xml.But what really confused me is that the generated swf file can run in the bin directory without a crossdomain.xml file put in the root of the server while it failed to run in other position!! I can't figure out why. --- In flexcoders@yahoogroups.com,

[flexcoders] Cairngorm 2 - Operation.arguments not clearing after call

2006-07-20 Thread ben.clinkinbeard
Hello all, this post is a bit long but I have tried to organize it to accomodate easy reading. I have modified my ServiceLocator so that my services are defined in AS, and am calling loadWSDL() from the constructor of my delegates. The problem is that if I call an operation more than once in my

[flexcoders] Datagrid/Webservices - best practice??

2006-07-20 Thread Ken Bromberger
Hello All, If I have a web service operation that populates a datagrid and an operation in the same web service that inserts a record, what would be the best way to then get the initial web service to refresh the data grid when an insert has occurred and an identity result has been

Re: [flexcoders] Updates for Flex 2.0?

2006-07-20 Thread Sergey Kovalyov
Just posted there. Sure, it's interesting to know, whether new features of IDE will be implemented in next version only or they can arrive with some kind on Flex 2.0 Update Pack. :) On 7/20/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 20 July 2006 15:34, Sergey Kovalyov wrote: Are

[flexcoders] Re: Strange behavior in datagrid

2006-07-20 Thread Colin Wiseley
I had this problem too with extra rows displaying sometimes both above and below the actual control as you scrolled the datagrid. I had an embedded font in the header style for the datagrid. Turning off the embedded font and using a client font for the header fixed it for me. Colin

Re: [flexcoders] Flex arrows?

2006-07-20 Thread Douglas Knudsen
holy kow batman! Thank you Jester! I'm now fully lost, what book is this stuff you suggested in? have to read up! I will add somehting i just found thoughone word Binding! ooops! The below is starting to work. Just have to figure out the settings used in the DateChooser to get things to

[flexcoders] Please Put Back Multiple Select in Tree Control

2006-07-20 Thread sufibaba
Dearest Adobe Flex Engineers, Our application uses the Tree control's multiple selection quite heavily. At first, we thought it was a bug in the final release but then realised that this functionality had been dropped due to bug issues. Please reinstate this feature because we really really need

Re: [flexcoders] Datagrid/Webservices - best practice??

2006-07-20 Thread JesterXL
What we do in Cairngorm: - bind DataGrid to ModelLocator - refresh button fires off Command to call WebService - when Delegate comes back, Command puts data on ModelLlocator - this fires the bindings and the DataGrid to update If you click the button again, the above repeats. -

  1   2   >