[flexcoders] Re: IFlexModule

2007-01-10 Thread Tom Sobut
My compile errors looked a bit different. I created a new project folder named Test201. Added an HBox and a Button. Compiled. Here are my compile errors: Severity and DescriptionPathResourceLocation Creation Time Id 1144: Interface method create in

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
Are both of you on mac y/n? jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Tom Sobut Envoyé : mercredi 10 janvier 2007 20:31 À : flexcoders@yahoogroups.com Objet : [flexcoders] Re: IFlexModule My compile errors looked a bit different. I

[flexcoders] Re: Maximum Precision of a Slider? (Flex 2)

2007-01-10 Thread pinigeliai2003
--- In flexcoders@yahoogroups.com, Jim Robson [EMAIL PROTECTED] wrote: I'm building an app where the users need to manipulate values that are very small. For example, the range of possible values for one variable is 0.89 - 0.000100. ... Does anyone have a way of overcoming this

RE: [flexcoders] Re: POST not working

2007-01-10 Thread Tracy Spratt
Here is an example that uses either ASP.NET or JSP to retrieve and save a file. It also is an xml editor, so there is more code than you need, but you will see how the file manipulation is done pretty easily. http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=544

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
Thanks Jason for the help. I'm on a PC.. I was able to create a new project, add an HBox and Label and run it as a Flex Application. What do you mean by older version? Older version of what? I downloaded the Flex Builder 2.0.1 install file and Eclipse 3.2 on Apache Tomcat server. On 1/10/07,

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
Could you if verify that the files exist in your application directory (not sure with mac) Yourpath\Flex Builder 2\Flex SDK 2\frameworks\source\mx\core” FlexModuleFactory.as IFlexModuleFactory.as IFlexModule.as And are you both trying this with eclipse 3.2? I’m thinking that if you both

RE: [flexcoders] How I can get access Application's script

2007-01-10 Thread Tracy Spratt
Do you mean, how do I access members in the application scope from within a child component? If so, there are a few ways. 1) In the component, import mx.core.Application;, then do: Application.application.test2(); 2) Pass a bound reference to the current scope (this) into the

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
There was an old version of the modules framework from the original creator (it was just a thought) it's probably not the problem. Ok so your pc.. On another post here i asked to take a look to make sure that the module framework is indeed where it is supposed to be. The fact you where able to

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
more... I believe that flex builder installs eclipse 3.1 hence the question. So to use flex all you need is flex builder the full version. Eclipse is not required, rather Adobe took eclipse 3.1 and modified it for flex builder==one in the same. Hope I’m making sense, it's late here :) jason

RE: [flexcoders] Re: Flex, RemoteObject calls, ColdFusion, and SSL

2007-01-10 Thread Peter Farland
One more comment on this, during any of your investigations remember that Flash Player restrictions for secure content are asymmentrical. If you load your SWF via HTTP you cannot make requests for any information via HTTPS. However, if you load your SWF via HTTPS you can make requests via both

[flexcoders] Re: Maximum Precision of a Slider? (Flex 2)

2007-01-10 Thread Jim Robson
Thanks for the suggestion; that is in fact what I did... http://tech.groups.yahoo.com/group/flexcoders/message/60688 :-)

[flexcoders] Re: Event calling in Cairngorm 2.1 - Newbie question.

2007-01-10 Thread cardinalflexjeremy
Hey Kevin. Well my problem was different than yours but I will answer your question as best I can. What I would check are: Make sure your controller is being instantiated on your Main.mxml page. Like this: !-- the FrontController, containing Commands specific to this appliation --

Re: [flexcoders] Scrollbar doesn't show up when it should - Possible rendering bug?

2007-01-10 Thread Ethan Miller
I've seen this too, lots and for Lists as well as TileLists. It looks like the TileList doesn't know what size it is... However, if you put a Canvas around your TileList, the Canvas will know the right size and give you scroll bars as needed... cheers, ethan I'm encountering a problem with

[flexcoders] Re: XML manipulation

2007-01-10 Thread phipzkillah
Ben, Thanks for your help. It works great! I have another question that I'm not sure if you will be able to answer or not. If I have 3 levels of hierarchy in my XML and I want to remove level 2 (but not its children - level 3) how would you go about doing that? Eliminate level 2 while

[flexcoders] Flex 2.0.1: Updated from Beta to Full Release

2007-01-10 Thread Jim Robson
Just ran the Windows updater. Everything went smoothly; all of my projects, settings, and preferences were preserved, and my currently-open projects still compile and run without issue. Even Subclipse survived this one, so I don't need to re-install it.

[flexcoders] Html in Flex?

2007-01-10 Thread gtuhl
We have an existing application that has a feature enabling a user to set content for and preview html newsletters. We are in the process of researching Flex2 and determining whether the client-side of this application (currently xul/html/js) should be converted. Is there any way to render html

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
I've got eclipse 3.2 an the plug-in, sorry for not clarifying earlier. On 1/10/07, Greg Morphis [EMAIL PROTECTED] wrote: I've got them installed in my Flex Data Services folder C:\fds2 and my Flex plugin folder (C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex SDK

[flexcoders] Re: gradient itemrenderer and resize (charts)

2007-01-10 Thread phipzkillah
Vigen, Do you mind posting your source for the gradient item renderer? I have tried to implement this, but was unsuccessful. Or if you can see where I went wrong here... private static const fills:Array = getColors(); private static function getColors():Array{

Re: [flexcoders] still trying to reverse the order of XML nodes in a chart

2007-01-10 Thread Simeon Bateman
Hey Chris. Sorry about that, I didnt realize you were using xml as your datasource nor did I realize you were working with dates. Using xml you could convert your xml object into an XML List and then use the sort methods I outlined. But working with dates can make it tricky. On a flex 1.5

RE: [flexcoders] Re: XML manipulation

2007-01-10 Thread Jason Hawryluk
Yes; basically Grab level3 into an xmllist var delete level 2 append level 3 to level 1. var tempxml:XMLList = myxml..level3; delete myxml.level2; myxml.append(tempxml); the above code is off the top of my head. May and may not work :) jason -Message d'origine- De :

RE: [flexcoders] Html in Flex?

2007-01-10 Thread Jason Hawryluk
Would an iframe work for this? I mean is it just for display/preview not editing... jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de gtuhl Envoyé : mercredi 10 janvier 2007 21:34 À : flexcoders@yahoogroups.com Objet : [flexcoders] Html in

[flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Pan Troglodytes
Okay, this is only borderline Flex since it's a Flex app, but I hope you'll indulge me. Is there a way to use the flash ocx in a desktop application without having flash installed on the machine? Say I have just my application's exe and Flash9.ocx. Or am I stuck because the OCX has to be

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
hmmm. I use the full version. I'm not sure nor aware of any compatibility issues with regards to eclipse 3.2. It may be a pain but could you try the full flex builder version not the plug-in? If not well there has to be some file that is gorking(not a real word) on your configuration. Before

RE: [flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Jason Hawryluk
Yes, you can load a ocx without registering it, provided you give com the required type information it needs. Basically you fake com into thinking the ocx is registered. We have a very large product (not flex) that uses this technique with a slew of custom ocx’s (100’s) all are not registered.

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
I've got them installed in my Flex Data Services folder C:\fds2 and my Flex plugin folder (C:\Program Files\Adobe\Flex Builder 2 Plug-in\Flex SDK 2\frameworks\source\mx\core) On 1/10/07, Jason Hawryluk [EMAIL PROTECTED] wrote: more... I believe that flex builder installs eclipse 3.1 hence

Re: [flexcoders] Scrollbar doesn't show up when it should - Possible rendering bug?

2007-01-10 Thread Rachel Maxim
Hi Ethan Thanks for the tip, I'll give it a shot! Rachel On 1/10/07, Ethan Miller [EMAIL PROTECTED] wrote: I've seen this too, lots and for Lists as well as TileLists. It looks like the TileList doesn't know what size it is... However, if you put a Canvas around your TileList, the Canvas

RE: [flexcoders] Re: IFlexModule

2007-01-10 Thread Jason Hawryluk
Did you delete this C:\Program Files\Adobe\Flex Builder 2 Plug-in\ before the install of 2.01 ? another thing to try just to see is add a reference to the module files in your little clean test app that compiled. import mx.modules.*; see if it still chokes. just trying to eliminate stuff.

[flexcoders] Re: Html in Flex?

2007-01-10 Thread gtuhl
Yes it is just for display/preview. My apologies if this is obvious, fairly new to Flex2, but how do I use an IFrame? The only html-related bits I can find in the help system concerns the htmlText property of text controls and iframe isn't listed as an understood tag. I appreciate the quick

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Greg Morphis
according to adobe.com, flex builder 2.0.1 should work with eclipse 3.2. I had Eclipse 3.1 installed with the Flex Builder 2.0 plugin On 1/10/07, Jason Hawryluk [EMAIL PROTECTED] wrote: hmmm. I use the full version. I'm not sure nor aware of any compatibility issues with regards to eclipse

[flexcoders] Re: Flex and XSLT

2007-01-10 Thread Jamie O
I'm just beginning to experiment on thisWill post back any successful results I find on this. --- In flexcoders@yahoogroups.com, Leon Tanner [EMAIL PROTECTED] wrote: Hi All, Has anyone tried their hand at using XSLT to transform XML data to a Flex interface? I have been given a

RE: [flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Michael D. Randolph
Yes, it is possible. I've used this control before, it works: http://www.f-in-box.com/ It isn't free though, I think its around $400, or $900 with the source code (which could be interesting to see how they did it). It provides a wrapper around flash.ocx so your app doesn't require

[flexcoders] webservice SOAP envelope

2007-01-10 Thread mrinal.wadhwa
Is there a way to see the outgoing/incoming SOAP envelopes when I call an operation in a webservice from a flex app

[flexcoders] Accessing Components inside Tilelist-ItemRenderer

2007-01-10 Thread cgiamett2
I need to know if it is possible to focus in on the component rendered in a TileList. Currently I can only focusIN at the TileList level. Output shows an event.target of: appName_0.ClientList I need to get down to: appName_0.ClientList.arrow I am wanting to set the visible property to 'true'

[flexcoders] Re: webservice SOAP envelope

2007-01-10 Thread phipzkillah
I used this 3rd part app to view all http and soap headers. Its free and lite. Check it out here: https://wsmonitor.dev.java.net/ --- In flexcoders@yahoogroups.com, mrinal.wadhwa [EMAIL PROTECTED] wrote: Is there a way to see the outgoing/incoming SOAP envelopes when I call an operation in

Re: [flexcoders] Re: Html in Flex?

2007-01-10 Thread Collin Peters
This is what you are looking for: http://www.deitte.com/archives/2006/08/finally_updated.htm On 1/10/07, gtuhl [EMAIL PROTECTED] wrote: Yes it is just for display/preview. My apologies if this is obvious, fairly new to Flex2, but how do I use an IFrame? The only html-related bits I can find

RE: [flexcoders] Re: XML manipulation

2007-01-10 Thread Jason Hawryluk
Yes in that case you would, and before deleting the level 2 append level3 to level 2's parent. Kind of (not at all tested) like this.. for each (var item:XML in myxml..level2) { item.parent.append(item..level3); delete item; } you may actually need 2 loops one for the delete. If

RE: [flexcoders] Re: Html in Flex?

2007-01-10 Thread Tracy Spratt
The short answer to your original question is no, there is no browser control in Flex. The Iframe solution is a workaround that uses an Iframe in the host browser that is positioned in such a way to look like it is part of the Flex app. You use externalInterface to communicate/control

[flexcoders] Re: Flex/Flash on The iPhone ?

2007-01-10 Thread ben.clinkinbeard
http://www.engadget.com/2007/01/09/the-iphone-is-not-a-smartphone/ --- In flexcoders@yahoogroups.com, John Dowdell [EMAIL PROTECTED] wrote: John Kirby wrote: After seeing the Steve Jobs MacWorld demo (http://events.apple.com.edgesuite.net/j47d52oo/event) of the new iPhone which runs a

[flexcoders] Drag N' Drop Tree Issues

2007-01-10 Thread Jeremy Rottman
I am working with a tree component that is being used to display test documents that are in various folders on my server. What I am trying to work out is moving one document from one node to another node. When the drag is complete it sends data to my cfc that then moves the document on the server

RE: [flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Merrill, Jason
Wow, thanks for that - is it only desktop though or could it be used to deliver Flash through the browser? Thanks for the link! Jason Merrill Bank of America Learning Organizational Effectiveness From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Html in Flex?

2007-01-10 Thread Jason Hawryluk
Funny i chose the same site email not getting through fast enough :p jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Collin Peters Envoyé : mercredi 10 janvier 2007 22:18 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Re:

[flexcoders] validating a list control

2007-01-10 Thread bill sticky
I'm new to Flex and wanted to validate that a user made at least one selection with a multi select list control. I've found lots of examples of validation using text input controls. Can anyone point me to an example or a blog?

Re: [flexcoders] validating a list control

2007-01-10 Thread Clint Tredway
just check for the list controls selectedItem, if its true, then its valid, if its not, then it isnt. On 1/10/07, bill sticky [EMAIL PROTECTED] wrote: I'm new to Flex and wanted to validate that a user made at least one selection with a multi select list control. I've found lots of examples

[flexcoders] Re: XML manipulation

2007-01-10 Thread phipzkillah
I can't seem to get that to work... --- In flexcoders@yahoogroups.com, Jason Hawryluk [EMAIL PROTECTED] wrote: Yes in that case you would, and before deleting the level 2 append level3 to level 2's parent. Kind of (not at all tested) like this.. for each (var item:XML in

[flexcoders] Re: flex 2.0.1 feedback from the trenches

2007-01-10 Thread mthielman11
I did read your post and looked at the link. I am not using the standalone flex builder. I am using the eclipse plugin version. SO the files are stored in the worspace folder. Not sure then how your directions would help? I did check the properties and it is selecting the proper project

[flexcoders] Re: Bug.Flex 2: Background becomes black when defining depthColors style for Tree Component

2007-01-10 Thread bhaq1972
I noticed this as well. I just took out the depthColors setting and and everything is okay. --- In flexcoders@yahoogroups.com, Arul [EMAIL PROTECTED] wrote: Bug.Flex 2: Background becomes black when defining depthColors style for Tree Component. It used to work fine before (in Flex

Re: [flexcoders] Scrollbar doesn't show up when it should - Possible rendering bug?

2007-01-10 Thread Rachel Maxim
To follow up on this, I tried it and it didn't seem to help. Maybe because I have nested TileLists? I tried wrapping it with a Canvas a couple different ways but no dice. Thanks Rachel On 1/10/07, Ethan Miller [EMAIL PROTECTED] wrote: I've seen this too, lots and for Lists as well as

[flexcoders] Re: IFlexModule

2007-01-10 Thread Tom Sobut
Hi Jason, I checked all three .as files you specified. All are there and are dated at the time of my 2.0.1 install. I had installed the full Flex version, so I've not used Eclipse directly, although I do have 3.2 installed from last June. Tom --- In flexcoders@yahoogroups.com, Jason

[flexcoders] what is precompiling?

2007-01-10 Thread boy_trike
I was reading another post and it mentioned precompiling. I am confused. I thought the SWF was the compiled version of my application. Is there a way to make my system load faster with precompiling? Thanks Bruce

Re: [flexcoders] what is precompiling?

2007-01-10 Thread Simeon Bateman
Typically pre-compiling was a term thrown around with flex 1.5. Because the mxml and as is compiled at the time of the request to the server it oftern caused problems for users. They didnt like to have to wait. Similarly we can compile applications for FDS in flex builder giving us the same

Re: [flexcoders] validating a list control

2007-01-10 Thread Simeon Bateman
Like clint said you can just check the selectedItem or if its a multi-select then check the selectedItems properties. If you find these to not meet your validation requirements you can set the errorString property to trigger the red box and error message so your validation will all look like it

[flexcoders] Accessing Components inside Tilelist-ItemRenderer

2007-01-10 Thread cgiamett2
I need to know if it is possible to focus in on the component rendered in a TileList. Currently I can only focusIN at the TileList level. Output shows an event.target of: appName_0.ClientList I need to get down to: appName_0.ClientList.arrow I am wanting to set the visible property to 'true'

RE: [flexcoders] Re: XML manipulation

2007-01-10 Thread Jason Hawryluk
I had mentioned it was un tested :) try the below (its tested), should get your on the right track, and i'm sure it can be improved just a quick sample. ?xml version=1.0 encoding=utf-8? mx:Application creationComplete=stripoutlevel() xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: Drag N' Drop Tree Issues

2007-01-10 Thread Jeremy Rottman
We got it figured out. This is what we did. private function onDragStart(event:DragEvent):void{ sourceUUID = docTree.getParentItem(docTree.selectedItem) destFile = docTree.selectedItem.label; }

Re: [flexcoders] Re: Erratic behavior when modifying an item of filtered ArrayCollection

2007-01-10 Thread Daniel Wabyick
Hi Ben, I had similar problems using filters on ArrayCollections and lists. Some really weird rendering issues happened, and I basically manually implemented filters (e.g myCollection.removeAll(), myCollection.addItem( item1 ), myCollection,addItem( item 2)). This played nicely with binding.

[flexcoders] Re: XML manipulation

2007-01-10 Thread phipzkillah
You saved my day! Thanks. Do you know if it's possible to edit attributes of any given xml node? node attribute=phil/ change to node attribute=jason/ --- In flexcoders@yahoogroups.com, Jason Hawryluk [EMAIL PROTECTED] wrote: I had mentioned it was un tested :) try the below (its

Re: [flexcoders] any possible way to use flash ocx without installing?

2007-01-10 Thread Pan Troglodytes
Very cool. Do you know if they have some sort of license that allows them to redistribute the flash OCX? From what I read on Adobe's page, the license agreement prohibits that. On 1/10/07, Michael D. Randolph [EMAIL PROTECTED] wrote: Yes, it is possible. I've used this control before, it

[flexcoders] Re: XML manipulation

2007-01-10 Thread phipzkillah
Nevermind. [EMAIL PROTECTED] = jason; does the trick. However what I learned was you can also ADD attributes this way. [EMAIL PROTECTED] = just added; yields... node attribute=jason attributeNEW=just added/ :) --- In flexcoders@yahoogroups.com, phipzkillah [EMAIL PROTECTED] wrote: You

[flexcoders] I want to use Flexbuilder on my MAC to access Cfusion

2007-01-10 Thread boy_trike
In our network we have a windows machine with Coldfusion. I am running flexbuilder on my mac. How can I configure a project on the mac to: 1). Access Coldfusion (I get stuck on page 2 where it asks for the CFSERVER 2). Have the BIN folder under wwwroot on the same machine so my code is

[flexcoders] Re: Erratic behavior when modifying an item of filtered ArrayCollection

2007-01-10 Thread ben.clinkinbeard
Its still there in 2.0.1 and has more or less been confirmed as a bug by Adobe. There is a workaround though. Put myCollection.filterFunction = null; just before updating your value, no call to refresh() necessary. That will prevent the erratic behavior and for now seems to be the easiest way to

Re: [flexcoders] Adobe Labs platform classes best practice

2007-01-10 Thread Kevin Newman
I was attempting to set it up so that I could just always have a fresh trunk build to include in other projects, but on second thought, maybe it would be better to just use the binary releases, and do the whole SVN library thing for my own internal libraries. I'm still new to SVN, and eclipse

[flexcoders] DataGrid - numeric sort?

2007-01-10 Thread parkerwhirlow
Its amazing how complicated something so seemingly easy can be... All I want to do is provide a numeric sort for columns that contain numeric data. (by default the sorting is all text based) I found the DataGridColumn.sortCompareFunction and tried this. The problem I have is that the objects

[flexcoders] Re: FileReference Upload Chunk The File into smaller chunks

2007-01-10 Thread Jason
Thanks for the comments. I am finding that the security restrictions on the FileReference object are very strict. One of the other features I am trying to add in is the ability for a user to resume a list of file uploads if the browser crashes or the upload is interrupted in any way. I am

Re: [flexcoders] Adobe Labs XMPP errors

2007-01-10 Thread Kevin Newman
Hi Danny, Thanks for adding that file, that seemed to clean up a lot of the compile errors. There is still one error though, there does not seem to be a definition for PacketExtension, which is referenced in several places in mx.collaboration.xmpp.protocol.packets.Packet.as I've also noticed

[flexcoders] Re: IFlexModule

2007-01-10 Thread Tom Sobut
Hi Jason, I have the Mac version. Check that all three .as files exist. File dates look correct. I compared all three files to their counterpart in the beta version. The only differences were in FlexModuleFactory.as. An obvious difference was in line 185 in both files: Beta: public

RE: [flexcoders] Re: Flex and .net webservices

2007-01-10 Thread Robin Burrer
Thanks Ben, Changing the data type to Number didn't help either. I'll have a look at Darron's solution ... Cheers Robin From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Tuesday, 12 December 2006 4:56 PM

[flexcoders] cairngorm flash lite/AS2 version

2007-01-10 Thread Robin Burrer
Hi there, I read that cairngorm has been back-ported for flash lite. Does anyone know if there is a downloadable version available yet? I guess that version could be used for any flash 8 - AS2 projects. Cheers Robin

RE: [flexcoders] Flex Charts - Line Segments produced when min and max values exclude data points

2007-01-10 Thread Ely Greenfield
LineSeries filterData=false / Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kristoffersingleton Sent: Tuesday, January 09, 2007 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Charts - Line Segments

[flexcoders] Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread phipzkillah
I have a Datagrid in a panel whose size is 80% width of the screen (panel width that is). My datagrid has 68 columns and its width is set to 100% (to fill the panel). When the datagrid loads you can't read a damn thing. If i set the minwidth I can read the data, but I have to horizontally

Re: [flexcoders] Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread Patrick Mineault
Granted, the behaviour of the datagrid is not optimal, but then again, why would you want to show 68 columns simultaneously? Even if the scrolling did work as you expect it to, that doesn't sound very user-friendly. I'd suggest thinking of another interface instead. For instance, you could

[flexcoders] Re: Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread phipzkillah
Patrick, I have a toggle bar which controls the amount of columns being shown to the user. Each field [column] is relevant to the corresponding record [row]. There are situations where the user will want to see all the columns at once -- even though it will probably cause them a headache. Is

Re: [flexcoders] I want to use Flexbuilder on my MAC to access Cfusion

2007-01-10 Thread Douglas Knudsen
you don't :) this is looking for a local install of CF. You can actually install CF on your MAC, I'm no MACie, but there are blog posts about on how. DK On 1/10/07, boy_trike [EMAIL PROTECTED] wrote: In our network we have a windows machine with Coldfusion. I am running flexbuilder on my

Re: [flexcoders] Re: Bug.Flex 2: Background becomes black when defining depthColors style for Tree Component

2007-01-10 Thread Arul
Ya. I also did the same for now. but still looking for ways to use the depthColors Regards, Arul - Original Message - From: bhaq1972 To: flexcoders@yahoogroups.com Sent: Thursday, January 11, 2007 6:04 AM Subject: [flexcoders] Re: Bug.Flex 2: Background becomes black when

RE: [flexcoders] Re: Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread Tracy Spratt
Perhaps you could put the DataGrid in a Canvas, and let the Canvas provide the scrolling. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of phipzkillah Sent: Wednesday, January 10, 2007 8:55 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread Patrick Mineault
You could put an instance of VScrollBar on the right hand side and have it control the DataGrid, and hide the original scrollbar. Patrick phipzkillah a écrit : Patrick, I have a toggle bar which controls the amount of columns being shown to the user. Each field [column] is relevant to the

Re: [flexcoders] Re: IFlexModule

2007-01-10 Thread Angus Johnson
I would say that you're picking up the old framework. Check your FRAMEWORKS setting in Eclipse... http://allthego.com/index.cfm/2007/1/11/Flex-Framework-Location HTH Angus On 11/01/07, Tom Sobut [EMAIL PROTECTED] wrote: Hi Jason, I have the Mac version. Check that all three .as files

[flexcoders] Re: Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread phipzkillah
Tracy, I tried that before I created this posting. The problem with using the canvas as your scrolling medium is when you vertically scroll down you will loose the header to your datagrid (your scrolling the canvas which the datagrid is a part of). Thanks --- In flexcoders@yahoogroups.com,

Re: [flexcoders] I want to use Flexbuilder on my MAC to access Cfusion

2007-01-10 Thread Mike Weiland
Hi Bruce, I could never figure out how to set up a CF project on a machine that doesn¹t have CF installed on it using the Flex project set up wizard. However I have good news, when you create a project select the 1st project option, basic I believe. Then your remoteObject would look something

[flexcoders] showCaret not on DataGrid

2007-01-10 Thread patricklemiuex
Hi there, I'm using a datagrid control, how do I set the showCaret property to false when mousing over to any item in my custom itemRenderer I'm a little confused because I see the listBase has the showCaret property but not the datagGrid. I don't want show any carets or have the selection

[flexcoders] Re: Datagrid Scrolling -- Is it really this complicated?

2007-01-10 Thread phipzkillah
This seems like a good way to approach this problem. I don't know too much about the VScrollBar, but it seems straight forward. These are its properties: lineScrollSize=1 maxScrollPosition=0 minScrollPosition=0 pageScrollSize=Reset to the pageSize parameter of setScrollProperties

[flexcoders] flashlog.txt is not being updated

2007-01-10 Thread David_Stafford
I updated to the new 2.01 SDK and 9,0,28,0 debug player. My Actionscript project required a couple of minor changes to build with the updated compiler and it seems to work ok. At one point I manually deleted my flashlog.txt file and now there are no more updates to it. - I am running the debug

[flexcoders] Re: Problem Using Modules - Flex 2.0.1

2007-01-10 Thread fliabrussa
--- In flexcoders@yahoogroups.com, fliabrussa [EMAIL PROTECTED] wrote: I'm having the following problem: I've built a module (called Modulo1.swf) that contains a DataGrid and a couple of controls. Then I made another module (called Modulo2.swf) that also contains a DataGrid and an

[flexcoders] How do you not show the focused item in a datagrid

2007-01-10 Thread patricklemiuex
I have 4 of them on the screen at one time... how do I hide the selections from the other 3 when another has got focus. I just need a simple example. Thanks, Patrick

RE: [flexcoders] what is precompiling?

2007-01-10 Thread Robert Chyko
If you are using FDS you have the option of deploying the already compiled .swf or you can just deploy .mxml files which are then compiled on the server the first time they are accessed. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: IFlexModule

2007-01-10 Thread Tom Sobut
Solved my problem. Searching through this list, I found others having the same problem. For the original solution, read message #60420 from Paul Evans. Thanks Paul. The problem is caused by re-using the workspace from the Beta version. Here's how I fixed mine: Create a new folder for your

[flexcoders] [JOB] Flex Developer, full time - Philadelphia, PA

2007-01-10 Thread rr0b1n
Software Engineer Duties and Responsibilities: · Manages day-to-day activities of small development team in support of corporate strategy. · Designs, builds, and tests software components. · Works closely with Product Management and other developers to clarify requirements, identify problems,

[flexcoders] Re: Flex 2.0.1 Developer Ready?

2007-01-10 Thread hbwvt
Yes, Flex 2.0.1 is no longer in beta and has been released. It is available here: http://www.adobe.com/support/flex/downloads_updaters.html#flex2 -Heidi Flex Builder Dev Manager --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 09 January 2007 12:42, Adam

[flexcoders] Re: webservice SOAP envelope

2007-01-10 Thread paulwelling
Hello mw, There maybe others, but Charles works great: http://xk72.com/charles/ Paul --- In flexcoders@yahoogroups.com, mrinal.wadhwa [EMAIL PROTECTED] wrote: Is there a way to see the outgoing/incoming SOAP envelopes when I call an operation in a webservice from a flex app

[flexcoders] Re: Network Monitor in Flex Builder

2007-01-10 Thread hbwvt
Hi Mrinal, The article you found is for Flex Builder 1.0 and 1.5 which was built on top of Dreamweaver. Flex Builder 2.0 and 2.0.1 are brand new and are built on top of Eclipse. The Network Monitor is not a feature of Flex Builder 2.0 or 2.0.1. Some people have mentioned that they use

[flexcoders] Re: Flex Charts - Line Segments produced when min and max values exclude data po

2007-01-10 Thread kristoffersingleton
Thanks Ely, I was about to respond to my own post with that same property. filterData property filterData:Boolean [read-write] This property is true if the series filters its data before displaying. If a series renders data that contains missing values (such as null, undefined,

[flexcoders] Re: flex 2.0.1 feedback from the trenches

2007-01-10 Thread hbwvt
--- In flexcoders@yahoogroups.com, mthielman11 [EMAIL PROTECTED] wrote: You have to clear your workspace of flexbuilder stuff. The easiest test would be to just switch to a new workspace to verify that is the problem. If that works, then in your original workspace, try deleting all the

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

2007-01-10 Thread sbyrne_dorado
I'm getting this error message from within an mx:Application (well a subclass thereof) that includes things via mx:Style source=.../. Is there some salient difference between inline inclusion vs. external definitions? The docs don't seem to indicate so... --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Performance Enhancement of Flex Application

2007-01-10 Thread haravallabhan
Hi Rob and Mod, Thanks for your itme guys. Rob I use FDS and there are no images loaded initally. I directly call the application which initially shows Vbox-- Hbox-a Logo-/Hbox applictionControlBar-- / viewStack -- first tab(visible first time) - 3 viewstack each has a chart

[flexcoders] Compile sizes of swf file getting bigger and bigger

2007-01-10 Thread patricklemiuex
Any body notice the size of their swf files increasing after committing to a cvs server. I am having an issue where my swf file went from 490 to 1.7 meg. To fix this I have to check out my project into a new workspace. This happens every time I commit. Thanks, Patrick

Re: [flexcoders] Compile sizes of swf file getting bigger and bigger

2007-01-10 Thread Simon Janssens
Would it be because it's compiling everything that in the .cvs/.svn directories? If that were the case you could probably setup an ant build file to copy the files for compile and to get rid of the versioning directories? I would have thought Flex builder would have ignored them though? Cheers,

[flexcoders] Single Flex Client connecting to both .NET/J2EE middleware

2007-01-10 Thread pk_wasp
Does anyone know if its possible to have a Flex Client which uses remoting (RPC style) to connect to a .NET backend using WebOrb etc and a J2EE backend using Flash-remoting or FDS 2? e.g. the Flex client is talks both to a J2EE evironment and a .NET one cheers

RE: [flexcoders] Re: CSS type selectors are not supported in components

2007-01-10 Thread Gordon Smith
Is there some salient difference between inline inclusion vs. external definitions? No. Writing mx:Style source=.../ should be the same as putting the contents of the CSS file between mx:Style and /mx:Style. Are you sure you have mx:Style only in mx:Application and not in any of the components

[flexcoders] Need advice on which Event I should be using -

2007-01-10 Thread Mike Anderson
Hello All, I have a Cairngorm application containing a DataGrid, in which the Grid's dataProvider is bound to an ArrayCollection (comprised of ValueObjects) located in the ApplicationModel. Whenever I want to add a new record to the dataProvider, I first create a new ValueObject instance, then

[flexcoders] Re: 2.0.1 compile modules with ant - no problem

2007-01-10 Thread vargaandrea
Sorry, my bad. It's working.

<    1   2