RE: [flexcoders] Repeaters ?

2006-05-10 Thread Matt Chotin
In your handler look into event.target.getRepeaterItem()... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine Malpel Sent: Tuesday, May 09, 2006 6:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Repeaters ? For a shopping

RE: [flexcoders] Flex f2b3: Chart watermarking?

2006-05-10 Thread Matt Chotin
We've tested the license for turning off the watermark internally but we're not really testing the license code during the public beta. I assume you're not planning on going live with the app while Flex is still in Beta, so if that's true you'll be able to get a license for charts before you

RE: [flexcoders] Re: Webservice Flex 2 unexpexted incoming type

2006-05-10 Thread Matt Chotin
I'm guessing you're not using the proxy right? Unfortunately there is a limitation in the information the browsers will pass the Flash Player when doing network requests, so we can't read the information in the fault. The FDS proxy works around this issue by turning the response into something

RE: [flexcoders] Good Code Stops Working For Me Too

2006-05-10 Thread Matt Chotin
Ive mailed into support again, Ill see what they say. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simon Fifield Sent: Tuesday, May 09, 2006 12:15 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Good Code Stops Working For Me Too

RE: [flexcoders] How to bind to something programatically (not in MXML)?

2006-05-10 Thread Matt Chotin
Check out the newly exposed mx.binding.BindingUtils class (and ChangeWatcher). It's not documented to the point of really being a best-practice but it does give you a shot at adding bindings in the simple case. I'm not sure if the code we generate uses these, I think it might though. Matt

RE: [flexcoders] Flex2B3 problem

2006-05-10 Thread Matt Chotin
Usually this means that you didnt really get the new player installed correctly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff Sent: Tuesday, May 09, 2006 3:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2B3 problem This

RE: [flexcoders] Beta3 Tree control is out of control

2006-05-10 Thread Matt Chotin
I'm not sure exactly, but you could try to use indexToItemRenderer(index).data and I think the data will be the node. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sufibaba Sent: Tuesday, May 09, 2006 6:23 PM To:

[flexcoders] Re: Flex2B3 - parentDocument definition

2006-05-10 Thread bhaq1972
parentDocument should point to the parent MXML document (i.e. the root element in the .mxml file). So the way it works is correct. here's an interesting one. if i add another child to myComponent (a mx:Button), it thinks the parentDocument is the root application and not comp1 (see

RE: [flexcoders] Current Node in tree when drop

2006-05-10 Thread Paul Williams
Yes - you can download it from labs.adobe.com. If you are using beta 2 and you don't want to migrate right away, use the getDropLocation() method of the tree object. As far as I can tell this method was renamed to calculateDropIndex() for beta 3. Paul -Original Message- From:

Re: [flexcoders] Action Script Help

2006-05-10 Thread Chris Velevitch
I think you have 'show' it, however you do that (render, show, display, invalidate ... whatever its' called). Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Flex2B3 - parentDocument definition

2006-05-10 Thread Manish Jethani
On 5/10/06, bhaq1972 [EMAIL PROTECTED] wrote: here's an interesting one. if i add another child to myComponent (a mx:Button), it thinks the parentDocument is the root application and not comp1 (see below). mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=* mx:Box id=box1

Re: [flexcoders] Flex2B3 :: Framework Source :: Thanks

2006-05-10 Thread jeremy lu
very nice++ very enjoying reading those code.On 5/10/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi Gordon, The ones in the middle of the methods. I know OOP says your method should 'document itself' but, well written inline comments for framewroks like this seem to be ideal for a

Re: [flexcoders] Adobe Flex2 - Title window transparency

2006-05-10 Thread Manish Jethani
On 5/10/06, Robs [EMAIL PROTECTED] wrote: How can I remove the transparency of the title window? I tried all properties like backgroundALpha alpha, but it didn't help. Please help borderAlpha: 1 Or as Jeremy suggested, set styleName to opaquePanel, which is basically this:

RE: [flexcoders] Flash Player crashes the browser b3

2006-05-10 Thread JB
Hi Matt,Already did this last night.I thought that it would help.It was from the Flex Store from Labs,also I got an error from:http://weblogs.macromedia.com/mc/archives/2006/05/mac_os_x-lookin.cfmThat is such a wonderful aplication!Which I wrote a commend on the site, but should I log a "bug"

[flexcoders] Flex2B3 - 'page cannot be displayed' issue

2006-05-10 Thread bhaq1972
I want to do an initial deployment (nothing serious). All i've done is set up a virtual directory on iis pointing to my flex html page. When i try to access this page from another network machine at my workplace, i keep getting 'Page cannot be displayed'. I suppose this is a flexbuilder

[flexcoders] How to use assets from a theme?

2006-05-10 Thread Bas J. Brey
The default theme has icons I want to use in other components, how can I, for example, use the TreeNodeIcon in a List component? I know I can embed the swf file but there must be another way to access it. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] cf flex intergration

2006-05-10 Thread JB
Hi Simeon,Thanks so much for all your help`-`I did get Mystic 3 installed, and now have an option in the cf admin, and so I know everything during the install went well. I saw a link to the docs from your flexcf.com,and tonight I am going to try to set it up. Hopefully I will not have question,

Re: [flexcoders] How to use assets from a theme?

2006-05-10 Thread Anant Gilra
You could do something like?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml mx:Style Button{upIcon: Embed(source=Assets.swf,symbol=TreeNodeIcon)}/mx:Style mx:Button id=b//mx:Application On 5/10/06, Bas J. Brey [EMAIL PROTECTED] wrote: The

Re: [flexcoders] Flex2 B3, changing the tree folder icons

2006-05-10 Thread Anant Gilra
folderOpenIcon=mx.core.UIComponent works.Thanks,Anant.On 5/10/06, greenfishinwater [EMAIL PROTECTED] wrote:To change the open, close and default folder icons on a tree, I used folderOpenIcon=UIComponent in Beta 2 and it worked, now in Beta 3 Iget a compile error Definition UIComponent could

Re: [flexcoders] Action Script Help

2006-05-10 Thread JB
Hi rishi,Thanks so much, that worked like a charm`-`One more question:Is there a book for learning actionscript 3 that is good for a beginer?I know there are good books for actionscript 2, but I think that there are lots of differences between 2 and 3.Thanks so much,JohnRishikesh Shetty [EMAIL

RE: [flexcoders] cf flex intergration

2006-05-10 Thread Dirk Eismann
Yes, it works. You can either run FDS under the same server instance CF is running under or create a new server and deploy the FDS application there. It's also possible to use the J2EE option now although this is a bit tricky to setup. Dirk. -Original Message- From:

[flexcoders] Flex2 B3, changing the tree folder icons

2006-05-10 Thread greenfishinwater
To change the open, close and default folder icons on a tree, I used folderOpenIcon=UIComponent in Beta 2 and it worked, now in Beta 3 I get a compile error Definition UIComponent could not be found. What has changed, I want to use the small triangle as the tree folder icons, not any of my own

RE: [flexcoders] cf flex intergration

2006-05-10 Thread João Fernandes
It is possible. I'm currently using CF mystic + FDS in the same server instance. If you need help to set it up just tell me. João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Paul Hastings Sent: Wed 10-May-06 9:38 AM To: flexcoders@yahoogroups.com

[flexcoders] Action Script Help

2006-05-10 Thread JB
Hi,I have a question if I have do understand more about compiling actionscript. I have a very simple example, just prints "Hello World" to the screen. Is there something wrong with this code:package { import flash.display.TextField; import flash.display.Sprite;//complains about this public

Re: [flexcoders] Adobe Flex2 - Title window transparency

2006-05-10 Thread jeremy lu
styleName = opaquePanel worked in B2, not sure for B3On 5/10/06, Robs [EMAIL PROTECTED] wrote: Hi all, How can I remove the transparency of the title window? I tried allproperties like backgroundALpha alpha, but it didn't help. PleasehelpThanks,Robi. Yahoo! Groups

[flexcoders] Re: Flex2 B3, changing the tree folder icons

2006-05-10 Thread greenfishinwater
Yes, mx.core.UIComponent worked. Thanks Andrew --- In flexcoders@yahoogroups.com, Anant Gilra [EMAIL PROTECTED] wrote: folderOpenIcon=mx.core.UIComponent works. Thanks, Anant. On 5/10/06, greenfishinwater [EMAIL PROTECTED] wrote: To change the open, close and default folder icons

Re: [flexcoders] Action Script Help

2006-05-10 Thread Rishikesh Shetty
TextField is located in flash.text package.import flash.text.TextFieldShould fix your problem.-rishi On 5/10/06, JB [EMAIL PROTECTED] wrote: Hi,I have a question if I have do understand more about compiling actionscript. I have a very simple example, just prints Hello World to the screen. Is

Re: [flexcoders] cf flex intergration

2006-05-10 Thread Paul Hastings
Dirk Eismann wrote: Yes, it works. You can either run FDS under the same server instance CF is running under or create a new server and deploy the FDS application there. ok, i'm game. how exactly? is that documented? thanks guys. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Flex Builder 2 Beta 3 Error in Eclipse WTP

2006-05-10 Thread Carlos Rovira
strange,I test the same enviroment in other PC, and the error is not showing. I'll try this night at home again.Sorry for the noiseC.On 5/9/06, Carlos Rovira [EMAIL PROTECTED] wrote: Hi,I just installed Flex Builder 2 Beta 3 as a plugin in Eclipse Web Tools Project 1.0.1, and I'm

RE: [flexcoders] Re: Caringorm with f2b3 issues

2006-05-10 Thread Steven Webster
Tim has solved your problem. Flex Builder 2 and code-completion is your friend. ;) Steven Webster Practice Director (Rich Internet Applications) Adobe Consulting Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK p: +44 (0) 131 338 6108 m: +44 (0) 7917 428 947 [EMAIL

Re: [flexcoders] F2B3 - Problem with ColdFusion/Flex Connectivity Beta 3

2006-05-10 Thread Kleber Voigt
Yes, this is the line. Hi, Is the line you changed? endpoint uri=http://{server.name}:{server.port}{context.root}/flex2gatewaynull/ class=flex.messaging.endpoints.AMFEndpoint/ I still get the same error??? Thanks, John */Kleber Voigt [EMAIL PROTECTED]/* wrote: I install the

Re: [flexcoders] F2B3 - Problem with ColdFusion/Flex Connectivity Beta 3

2006-05-10 Thread JB
Hi, Okay it is working now, I get a blank page. I guess it took a while, not sure why. Now I can begin to try to intergrate Mystic. John --- Kleber Voigt [EMAIL PROTECTED] wrote: Yes, this is the line. Hi, Is the line you changed? endpoint

RE: [flexcoders] How to use assets from a theme?

2006-05-10 Thread Bas J. Brey
That doesnt work cause my application cannot load the Assets.swf from the theme without putting it in the project. Van: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Namens Anant Gilra Verzonden: woensdag 10 mei 2006 10:51 Aan: flexcoders@yahoogroups.com Onderwerp:

[flexcoders] Re: Adobe Flex2 - Title window transparency

2006-05-10 Thread Robs
Hey..thanks a ton ! --- In flexcoders@yahoogroups.com, jeremy lu [EMAIL PROTECTED] wrote: styleName = opaquePanel worked in B2, not sure for B3 On 5/10/06, Robs [EMAIL PROTECTED] wrote: Hi all, How can I remove the transparency of the title window? I tried all properties like

RE: [flexcoders] cf flex intergration

2006-05-10 Thread João Fernandes
  Replace the /yourinstance/cfusion.ear/cfusion.war/WEB-INF with mine should be Replace the /yourinstance/cfusion.ear/cfusion.war/WEB-INF/web.xml with mine João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043

[flexcoders] Flex2B3: How to test if a tree node has children

2006-05-10 Thread greenfishinwater
In my tree I dynamically fetch data from a DB to populate lower nodes in a tree, initially all my nodes are setup with isBranch=true. In Flex 1.5, in the tree node open event I was able to use event.node.hasChildNodes() to determine if there really was no data under a node. In Flex2

RE: [flexcoders] cf flex intergration

2006-05-10 Thread John
hi,Am I supposed to have a flex.war file? I don't. In:/Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/flexthe only file there is the flex-enterprise-service.xmlI have looked in all the temp folders, and no such file. I checked the logs, and it says that it was installed

Re: [flexcoders] Re: FB2B3 - Source code

2006-05-10 Thread judah
Thanks Scott Scott Romer wrote: Take a look in: InstallDir\Flex Builder 2.0 Beta 3\Flex SDK 2.0\frameworks\source --- In flexcoders@yahoogroups.com, judah [EMAIL PROTECTED] wrote: I've just downloaded the Flex Builder 2 Beta 3 and I'm having difficulty

RE: [flexcoders] cf flex intergration

2006-05-10 Thread João Fernandes
John, Im talking about FDS + CF so youll need to install FDS (default path is c:\fds2) After installing it, youll find flex.war, samples.war and flex-admin.war there (and other stuff also). Expand the flex.war and follow those steps. João Fernandes Dep. Informática - Área

[flexcoders] A little disappointed with Flex 2.0 (Beta 3)

2006-05-10 Thread sourcecoderia
Drag and drop in a tree control: No updating. The source is updated but the tree is not until you close and reopen the node to refresh it. Not even executeBindings updates it? It just doesn't seem to be getting the datasource changes event. The drop indicator is way off it's mark, always 2

Re: [flexcoders] Re: Caringorm with f2b3 issues

2006-05-10 Thread Graham Weldon
Hi Tim, Thanks for that, the error exists only in my email, as i hand-typed the code into the email. The code has the correct spelling cairngorm. Regards, Graham Weldon sufibaba wrote: Graham, I noticed that cairngorm is mispelled. You've got

[flexcoders] brose button funcationality

2006-05-10 Thread sreedhar reddy
Hi, Does anybody have the browse button functionality? I am working on Flex2 Beta 2.Thanks Regards,Sreedhar Yahoo! India Answers: Share what you know. Learn something new. Click here Send instant messages to your online friends - NOW -- Flexcoders Mailing List FAQ:

[flexcoders] combobox selection

2006-05-10 Thread sreedhar reddy
Hi, I am working with combobox. Basically, my application has different comboboxes for Categories and Subcategories. Here, my question is when i select one item from Categories combobox, then those items whcih are related to Perticuler Category should be shown in SubCategories Combobox.Thanks

[flexcoders] Error #1090: XML parser failure.

2006-05-10 Thread sreedhar reddy
Hi, I am working on HttpServiceDemo.mxml in FlexBuilder2 beta2. This demo application is given in flex1.5 there it is working, but when execute same application in flexbuilder2 beta2, it is throwing following error.Error: faultCode:Client.CouldNotDecode faultString:'Error #1090: XML

[flexcoders] Flex Charting Beta 3

2006-05-10 Thread Sachin Dharmapurikar
Hi Adobe Team, I have downloaded Flex 2 Beta 3. It asked for a serial number at the time of installation. I didn’t have any and as per installation notes I just skipped the step. Now I can see on each chart there is a Flex Charting Trial watermark. How to get rid of this? Can I

[flexcoders] Flex2.0Beta3 : Could not resolve Caption to a component implementation.

2006-05-10 Thread calvin33castic
I DL and reinstalled Beta3. Copy all the mxml to new project. rebuild the project. the problem is: error in main.mxml : Could not resolve Caption to a component implementation. Caption id=caption/ is a Custom Component. I place Caption.mxml in the directory with main.mxml. In beta2, It's

[flexcoders] install debug player without (re)installing Flex Builder

2006-05-10 Thread Andrea Varga
Hi I uninstalled my flash player, reinstalled using the kit on labs, but that isn't the debug player. Can I somehow install Debug Player without reinstalling Flex Builder? Thanks, Andi -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] install debug player without (re)installing Flex Builder

2006-05-10 Thread Muzak
They should be in the install directory: default on win xp: C:\Program Files\Adobe\Flex Builder 2 Beta 3\Player\debug regards, Muzak - Original Message - From: Andrea Varga [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, May 10, 2006 8:32 AM Subject: [flexcoders]

Re: [flexcoders] Flex 2.0 Feature Request - Code view splitter

2006-05-10 Thread Tom Chiverton
On Wed, May 10, 2006 at 2:16 AM, in message [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: Is the lack of this feature something that is imposed by the Eclipse base? Yeah. CFEclipse is waiting for the same feature to be finished :-) Tom Chiverton

Re: [flexcoders] Re: problems when creating a pop up

2006-05-10 Thread Alin DICU
Hi, Yes I thought I could be a cause of error and I've checked it before sending the first mail... and in fact both files are in the same directory. I've even put them into another application folder (that already contained files that work) and I get the same error. It's strange. Thanks

Re-Solved: [flexcoders] Re: problems when creating a pop up

2006-05-10 Thread Alin DICU
In fact I reinstalled the Flex Server and the problem disappeared, so it could be a problem with the Flex server or it's just my machine that caused problems to the server's files directory. Bye Doug Lowder a crit: Your code, exactly as posted, works fine for me. Do you have the

Re: [flexcoders] Flex2 B3, changing the tree folder icons

2006-05-10 Thread 海云飞
I had the same problem.2006/5/10, greenfishinwater [EMAIL PROTECTED]: To change the open, close and default folder icons on a tree, I usedfolderOpenIcon=UIComponent in Beta 2 and it worked, now in Beta 3 Iget a compile error Definition UIComponent could not be found. What has changed, I want to

[flexcoders] HELP URGENT!

2006-05-10 Thread sachin gaur
Hi all, I am facing this problem of data transfer from one datastructure to another i tried making a component which picks up some values dynamically from an xml file which xml needs to be picked is also to be dynamic based users choice. So the main file looks like this. ?xml version=1.0

RE: [flexcoders] F2B3 - Problem with ColdFusion/Flex Connectivity Beta 3

2006-05-10 Thread Bill Sahlas
Hi John This throws the error - http://localhost/flex2gateway  The URL is not terminated with the / This gives a blank page - http://localhost/flex2gateway/ as the URL is properly terminated.  This is only useful as an internal reference for CF. My question to you is why do

RE: [flexcoders] install debug player without (re)installing Flex Builder

2006-05-10 Thread Bas J. Brey
All debug player installation files are in the installation directory of Flex Builder under the player/debug directory. -Oorspronkelijk bericht- Van: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Namens Andrea Varga Verzonden: woensdag 10 mei 2006 8:32 Aan:

Re: [flexcoders] Help Contents dissapears (both Flex Builder 2 B2 and B3)

2006-05-10 Thread Andrea Varga
I haven't find anything like this. There is something about Flex Builder hanging up, but nothing like the problem I have. When I restart my computer, the help works, and after a while, it seems that the server that provides the content just stops and I'm not longer anle to view the help

[flexcoders] How to use flash movies in mxml flex files ?

2006-05-10 Thread Franca Daniel
i need to put a flash movie inside a mxml page, how cani do that ? thank you! ___ Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de e-mail no celular e anti-spam realmente eficaz. http://br.info.mail.yahoo.com/ --

[flexcoders] No header in Datagrid : how ?

2006-05-10 Thread Jean-Luc ESSER
I didn't manage to find a way of not having any header in a datagrid. Setting headerHeight property to 0 does not really work as the little black arrow keeps appearing (partially) in the upper right corner of the column. Anyone to tell me which property i'm missing here ? --

[flexcoders] mx:Tree control icon setting (f2b3)

2006-05-10 Thread Graham Weldon
Hey everyone, To be honest, I've not completely read the changes since Beta2, but thought I would ask: Has the ability to individually set icons for tree nodes been made available? If not, is it a feature that is planned for inclusion with Flex 2.0? To clarify: Can I set a specific icon per

[flexcoders] Re: Beta 3 runtime error Error: Cannot add a child that is already parented.

2006-05-10 Thread wlbagent
Thanks for the reply, Ben. I had actually already changed all target properties to relativeTo but kept getting the error. I think I discovered why. Beta 3 (Flash Player 9?) seems to work a little differently than previous versions. Before when I got runtime errors, I would make changes to my

[flexcoders] basic data binding

2006-05-10 Thread Antoine Malpel
for user perfil modifying I use some TextInput, I can get the actuals value mx:TextInput id=clientNameRegister styleName=form text={clientInfos.nom} but this doesn't work so I cannot modify my values ! change=clientInfos.nom = event.target.text; / -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Getting Error with Beta 3 ColdFusion update.

2006-05-10 Thread Bill Sahlas
Hi Gareth, Lets try to put this into some kind of context. When exactly does this error occur? What are you running that returns/throws this error? If you turn debugging on in the CF Administrator youll find that lots more information to help diagnose the problems will reveal itself.

[flexcoders] Draw Box Crop Tool?

2006-05-10 Thread Aly Sidi
Hello,This is probably a noob question..but here goes.anyone know to turn this into a MXML component What i really want is to be able to drag a box like on this site : http://www.myheritage.com/FP/Company/faceSamples.php?s=1u=g0lang=ENclick the pic then click the image crop tool.i just

Re: [flexcoders] Re: Caringorm with f2b3 issues

2006-05-10 Thread Dominick Accattato
try cleaning the project project clean that scrubs the bin directory and re-compiles the classes. It seems that two things could be your problem. 1. that package is not in the classpath, possibly in a folder that is not a source folder 2. that file has errors. Do a clean and then try

[flexcoders] difficulties accessing tree branches

2006-05-10 Thread Alin DICU
Hi, I'm having problemes accessing clicked branches in trees. I tried many thing but I keep stumbling on undefined items. Here are piéces of my code: - the UI tree component --- mx:Tree id=employeeTree

Re: [flexcoders] Flex 2.0 Feature Request - Code view splitter

2006-05-10 Thread Graham Weldon
Thanks for that Sho. This will do great, until a split-pane feature is available. Thanks for your help on this. Regards, Graham Weldon Sho Kuwamoto wrote: Hi Graham. If you follow my steps, you do get multiple views on the same file which update in real time as you type.

[flexcoders] Re: Flex2 B3, changing the tree folder icons

2006-05-10 Thread bhaq1972
try folderOpenIcon=mx.core.UIComponent (worked for me). --- In flexcoders@yahoogroups.com, º£ÔÆ·É [EMAIL PROTECTED] wrote: I had the same problem. 2006/5/10, greenfishinwater [EMAIL PROTECTED]: To change the open, close and default folder icons on a tree, I used

RE: [flexcoders] mx:Tree control icon setting (f2b3)

2006-05-10 Thread Jason Hawryluk
I use the iconFunction. Embed the images. You can change it this way dependant on any attribute you want. mx:Script ![CDATA[ private function getIconForNode(item:Object):Class{ var iconSymbol:String = [EMAIL PROTECTED]; if (iconSymbol !=){ switch(iconSymbol){ case myimage: return

Re: [flexcoders] Simple XML web service call

2006-05-10 Thread Tom Chiverton
On Tue, May 9, 2006 at 7:50 PM, in message [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: I've tried different resultFormats, different returnTypes... returning a string instead of the cfxml tag... building mystring and returning the result of parseXML(mystring). Nothing seems to work. Can

RE: [flexcoders] mx:Tree control icon setting (f2b3)

2006-05-10 Thread Jason Hawryluk
Opp's Change [Bindable] [Embed(source=myimage.png)] public var Tasks:Class; to [Bindable] [Embed(source=myimage.png)] public var myimage:Class; Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Jason Hawryluk Envoyé : mercredi 10 mai

Re: [flexcoders] No header in Datagrid : how ?

2006-05-10 Thread Antoine Malpel
showHeaders=false Jean-Luc ESSER a écrit : I didn't manage to find a way of not having any header in a datagrid. Setting headerHeight property to 0 does not really work as the little black arrow keeps appearing (partially) in the upper right corner of the column. Anyone to tell me which

[flexcoders] Re: mx:Tree control icon setting (f2b3)

2006-05-10 Thread bhaq1972
its something i'm thinking about as well (only thinking!). if it was flex1.5 I would have a cellRenderer that looked like this mx:HBox mx:Image / mx:Label/ /mx:HBox the do mx:Tree cellRenderer=/ so i'd probably do it that way in f2b2 (dont forget cellRenderer is now called

[flexcoders] Re: mx:Tree control icon setting (f2b3)

2006-05-10 Thread bhaq1972
Jason's solution is better. --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: its something i'm thinking about as well (only thinking!). if it was flex1.5 I would have a cellRenderer that looked like this mx:HBox mx:Image / mx:Label/ /mx:HBox the do mx:Tree

[flexcoders] RE: Implementing IMenuDataDescriber - still no joy

2006-05-10 Thread n51red
Hello again, I waited patiently for beta 3 and tried again, but the problem persists. Now the only methods that are executed are setSelected and isEnabled. Any clues?? Thank you, N51 --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: At first glance I don't see

[flexcoders] Pie Chart help

2006-05-10 Thread Dogra, Daman
Title: Pie Chart help Hi All, I have a pie chart which looks pretty similar to the basic pie chart on the flex charting explorer http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml?versionChecked=true By default most pie charts seem to have a grey colored shadow in the

RE: [flexcoders] No header in Datagrid : how ?

2006-05-10 Thread Karl Johnson
Set the showHeaders property to false. Karl Johnson Cynergy Systems, Inc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jean-Luc ESSER Sent: Wednesday, May 10, 2006 6:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] No header in

[flexcoders] error: unable to find framework_rb.swc

2006-05-10 Thread eskaya_82
Hi you all, As general visitors I am also new to flex - as a one day user- I installed Flex Builder 2.0 / Flex Data Services/ Flash 8.5 Active X for Windows/ Coldfusion Integration kit while creating a new project the following error occured: unable to open 'C:\Program Files\Adobe\Flex

RE: [flexcoders] Dynamically setting RemoteObject endpoints in Flex 1.5

2006-05-10 Thread Tom Chiverton
On Thu, May 4, 2006 at 3:32 PM, in message [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: Try calling it on the underlying Connection... remoteObjectId.connection.connect(newURIGoesHere); Hmm, may have worked :-) Is there a complete set of ActionScript docs anywhere ? There Flex ones

Re: [flexcoders] Flex Data Services for .NET

2006-05-10 Thread Omar Ramos
Hi Joe, This is great news! I was already starting to complain about adobe not making a data adapter for .net since they are mostly in love with java :P Keep the good work. On 5/4/06, Joe Orbman [EMAIL PROTECTED] wrote: Hey guys,This might be of interest to some of you (especially if you work

RE: [flexcoders] Please Help: Not being able to access the .as class from mxml in Flex 2 Beta 2

2006-05-10 Thread Umesh Garg
Hi, Thanks for replying.Yes, Program.as live in test package and it is in test directory. In the flex builder, there is no compile-time error. I get the error, when I run it. This is the directory configuration:- programview.mxml - test\Program.asAm I missing any

Re: [flexcoders] i can't use mx.controls - source not found... ( yes...i'm a newbie)

2006-05-10 Thread Federico Ferri
tanks for your reply, sorry if i answer noy, i was ill... i've installed again flex builder as eclipse plugin instead of a stand alone app and now it' ok. tnx!! Alle 17:50, venerdì 21 aprile 2006, [EMAIL PROTECTED] ha scritto: Ciao Federico,    This example worked fine for me. I am using

[flexcoders] sorting an XMLListCollection

2006-05-10 Thread djbrown_rotonews
I have a dataGrid of about 20 columns, whose dataProvider is an XMLListCollection: mx:XMLListCollection id=delays_xml source={getadvisordelays.result.*} filterFunction=filterData/ where getadvisordelays is an HTTPService call to a jsp, returning results in an e4x format: mx:HTTPService

[flexcoders] Change from directly loading a XML file to using RemoteObject

2006-05-10 Thread mahuika1
I was loading XML directly from a file using mx:Model id=myXML source=data.xml/ but I needed to change this to access a CFC. So I have created a RemoteObject but the data is available in a different format. Does anyone know a quick way that I can change the result so I can access it as if I had

RE: [flexcoders] mx:Tree control icon setting (f2b3)

2006-05-10 Thread Jason Hawryluk
Another thing, you don't need [Bindable] above the [Embed]. I copied the wrong entry from my code. Jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Jason Hawryluk Envoyé : mercredi 10 mai 2006 15:45 À : flexcoders@yahoogroups.com Objet :

[flexcoders] XMLSocket communiation (F2b2)

2006-05-10 Thread Graham Weldon
Hi All, I am trying to communicate with a server that responds to XML document requests. The basic workflow is: Client Connect Client Send XML Doc Server Receive XML Doc Server Process Server Send XML Doc2 Client Receive XML doc2 Client Process XML doc2 I cannot seem to find any useful

[flexcoders] HttpService Fault: Server Internal Error

2006-05-10 Thread sreedhar reddy
Hi, Here, I am trying to execute restaurant application using MySql as backend. i am using flex1.5 with integrated JRun server for executing this application. And I am using HttpService to communicate with Java.The moment i execute the restaurant application(restaurant1.mxml) it is

[flexcoders] Flex2B2 RealEstate Sample - Getting an ActionScript Error

2006-05-10 Thread porsche_911_1978
Being new to Flex and Coldfusion, I'm trying to work through an example to help me understand what is goes on. I'm having troubles trying to get the following Flex2Beta2 RealEstate sample to work. http://www.asfusion.com/blog/entry/real-estate-sample-app-updated- for-flex#comments When

RE: [flexcoders] Flex Component Directory

2006-05-10 Thread Ben Watson
I love the idea of an open source development approach for components. Adobe would be happy to help with you that. Our plans to support component development are consolidate to 3 key areas.1) In Flex 2 we include a developer guide on creating and extending components. We are also

[flexcoders] MenuItem with icon

2006-05-10 Thread Franca Daniel
How can i put icon on menuitem ? i have trying this : mx:XML menuitem label=Option menuitem label= A1 data=""> icon=images/ico.png/ menuitem label=A2 data="" / menuitem label=A3 data="" / /menuitem /mx:XML but does not work... HELP PLEASE!

RE: [flexcoders] Am I crazy?

2006-05-10 Thread Doug Hughes
Looks like I am crazy.. Ill resend the message. Doug From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug Hughes Sent: Friday, May 05, 2006 8:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Am I crazy? Am I crazy, or does it take

RE: [flexcoders] Extending visual custom components

2006-05-10 Thread Chris Reynolds
Chapter 2 of the Creating and Extending Flex Components followed by Chapter 7 perhaps? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mahuika1Sent: Thursday, May 04, 2006 9:57 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Extending visual custom

[flexcoders] Re: How to prevent GridItem collapse?

2006-05-10 Thread a_sogor
I did it still collapses --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Look into mx:Spacer Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of a_sogor Sent: Thursday, May 04, 2006 3:49 PM To:

Re: [flexcoders] difficulties accessing tree branches

2006-05-10 Thread Graham Weldon
I use the Change attribute: mx:Tree width="100%" height="100%" id="employeeTree" dataProvider="{treeHttpSrv.result}" change="onClick(employeeTree);"/ I hope this helps somewhat :-) Regards, Graham Weldon. Alin DICU wrote: Hi, I'm having problemes accessing clicked branches in

[flexcoders] Re: Installing Flex 2 beta 2 with flash remoting against multi-home ColdFusion.

2006-05-10 Thread ianskinnerbs
Thanks Muzak, that seem sto validate as a location. Now what do I put for the root url? The root of my site, http://flex/ Or something else? --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: C:\JRun4\servers\playground\cfusion.ear\cfusion.war\ regards, Muzak

RE: [flexcoders] Free Spyware Remover Softwares

2006-05-10 Thread Jason Hawryluk
lol, who let this guy in here? :) -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de preetyzinta1981Envoyé: mardi 2 mai 2006 11:49À: flexcoders@yahoogroups.comObjet: [flexcoders] Free Spyware Remover SoftwaresFree Spyware

[flexcoders] VerifyError: Error #1014: Class flash.util::Timer could not be found

2006-05-10 Thread bobpardoe1959
since I updated to b3 and fp9 I keep getting this error (see below for full stack) everywhere I try to load demos and the like ie http://weblogs.macromedia.com/sho/archives/2006/04/flex_sliding_dr.cfm and try to run the sliding doors demo. If I choose continue, nothing happens It is not

RE: [flexcoders] VerifyError: Error #1014: Class flash.util::Timer could not be found

2006-05-10 Thread Dirk Eismann
In beta 3, the Timer class is located in the flash.utils package and not flash.util Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bobpardoe1959 Sent: Wednesday, May 10, 2006 4:15 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] VerifyError: Error #1014: Class flash.util::Timer could not be found

2006-05-10 Thread Jason Hawryluk
I thought I was fairly fast on the draw there but you beat me. just... jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Dirk EismannEnvoy: mercredi 10 mai 2006 16:15: flexcoders@yahoogroups.comObjet: RE: [flexcoders]

[flexcoders] Firefox status bar text - HTTPService

2006-05-10 Thread praful . aggarwal
I've an application that on 'initialize' reads some XML data using HTTPService. The status bar of the browser reads - Transferring data from localhost... even when the HTTPService has read all the data. Is there any way I could change this status bar text once the read has been done ?

RE: [flexcoders] VerifyError: Error #1014: Class flash.util::Timer could not be found

2006-05-10 Thread Jason Hawryluk
the namespace has changed, so the code if compiled on version beta 2 it would explode... new =flash.utils.Timer jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de bobpardoe1959Envoyé: mercredi 10 mai 2006 16:15À:

  1   2   >