[flexcoders] Re: Tabbing through items in a container

2006-06-21 Thread polestar11
I tried using LinkButtons and was still not able to get tabbing to work: mx:HBox tabChildren=true mx:Label text=1. / mx:LinkButton label=A tabIndex=0 tabEnabled=true / mx:LinkButton label=B tabIndex=1 tabEnabled=true / mx:Label text=2. / mx:LinkButton

[flexcoders] Re: Flex2B2 - cut off any gui controls that appear outside of parent container

2006-06-21 Thread bhaq1972
Excellent!! binding has done the trick. thanks --- In flexcoders@yahoogroups.com, Jason Y. Kwong [EMAIL PROTECTED] wrote: Ah, ok. So if you want to clip 20 pixels, then you need to make sure that button2 is always 20 pixels wider than the enclosing canvas. You can make use of binding:

[flexcoders] States within List

2006-06-21 Thread Sreejith Unnikrishnan
Is it possible to create states within a List that changes height on select? Basically, I need to switch between a simple and advanced view in a list only on select. I tried using a Repeater in a VBox, but navigating up and down using arrow keys is not possible(?) when using a repeater.

[flexcoders] Re: ACcess SOAP fault code

2006-06-21 Thread z l
Hi, Can someone explain to me that since you've caught the exception in your code, then how does the fault event handler in flex gets called? Generally speaking, what is the mechanism that triggers the fault event in flex? Thanks, __ Do You

Re: [flexcoders] Re: FlexPrintJob and large DataGrids?

2006-06-21 Thread Abdul Qabiz
The docs recommend that, for print jobs, you create a seperate custom component that contans the DataGrid in it's full size (no scroll bars). The print DataGrid is bound to the same dataProvider as the view DataGrid.Right. Use mx.printing.PrintDataGrid in that separate component and you

RE: [flexcoders] Re: ACcess SOAP fault code

2006-06-21 Thread Daniel Tuppeny
I wasn't thinking to use the fault handler, I was just planning on every response being an object with an error property that will usually be null, and checking for it myself. Your idea would be much nicer, but I doubt it's possible, since we're pretending everything worked fine. Maybe changing

Re: [flexcoders] Re: Reusing Cairngorm views

2006-06-21 Thread Tom Chiverton
On Tuesday 20 June 2006 22:14, Tim Hoff wrote: I think the right approach here is to maintain the view, that you want to duplicate through instantiation, in the ModelLocator. This is similar to the Cairngorm store example's ShoppingCart. You can then create multiple instances of the view and

[flexcoders] AMFPHP problems

2006-06-21 Thread Dima Ulich
Hi everybody, I just uploaded one project to the internet and have faced the Malformed AMF message, connection may have dropped problem. Does anyone know what could cause the problem. I just can't get it to work. Thanks Dima __ Do You

[flexcoders] ComboBox DropDown or DropUp

2006-06-21 Thread NZEYIMANA Emery Fabrice
Hello Group, I have a comboBox that's at the bottom of my FLEX Interface. When I pull down the contents of the ComboBox, the contents are hidden because the dropDown list exceeds the boundary of the FlexApplication UI. My question is: is it possible to instruct the comboBox to pop-up

Re: [flexcoders] Re: Reusing Cairngorm views

2006-06-21 Thread Tom Chiverton
On Wednesday 21 June 2006 09:25, Tom Chiverton wrote: Hmm ? Right, I've had an idea - rather than the views containing view:WibbleHelper id=wibbleHelper . selectedItem={wibbleHelper.selectedItem} move the view helpers onto the model, and drop the view: tag, so the 2nd line above becomes

[flexcoders] Re: [FileReference] change title on file chooser

2006-06-21 Thread keishichi2001
Any info? Thanks in advance K --- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: Following code will pop os-native file chooser up. FileReference.browse(); However, I couldn't find any property to change title on the file chooser. Any clue? K

Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-21 Thread Thomas Rühl -akitogo-
Hi Bill, yes, in fact I am trying to get the SessionTracker sample running. For some reason what-so-ever, it works as I'm typing this - I'm confused. Is it nesseccary to restart the whole system after the CF/Flex connectivity update? Didn't read that anywhere... However, here is what I did,

Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-21 Thread Tom Chiverton
On Wednesday 21 June 2006 10:40, Thomas Rühl -akitogo- wrote: * then the Flex2CF gateway failed to start up - just a blank page with 500 null on it. however, the other gateway types went well What was this URL ? What is in the CF and FDS logs ? -- Tom Chiverton

Re: [flexcoders] Flex2B3: Container fillColors

2006-06-21 Thread Michael Schmalle
Hey man, this is a primitive example: myContainer.setStyle(borderSkin, TaskListTitleBarBorderSkin ); or you know in CSS ;-) code --- package com.teotiGraphix.skins.teo { import flash.geom.Matrix; import flash.display.GradientType;

RE: [flexcoders] E4X Interpreter

2006-06-21 Thread Jason Hawryluk
Not trying to hijack here but , how did you get a xml chain to bind? An yes a need for e4x features would be most handy, but until i get just a simple chain working can help ya ;) I'm trying to do this and getting no results at all? Dynamic binding not working, from the docs it say's

Re: [flexcoders] Flex2B3: Container fillColors

2006-06-21 Thread Michael Schmalle
Ah, And I realize this is an old one. The setActualSize(w, h) needs to be updateDisplayList(w, h); Sorry about that. :) Peace, MikeOn 6/21/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hey man, this is a primitive example: myContainer.setStyle(borderSkin, TaskListTitleBarBorderSkin ); or

RE: [flexcoders] E4X Interpreter

2006-06-21 Thread Jason Hawryluk
WishingI read my own writing.. I mean, I can't help you until I get mine working, and yes full e4x features would be great. Sorry bout that. jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de Jason HawrylukEnvoy: mercredi 21

Re: [flexcoders] ComboBox DropDown or DropUp

2006-06-21 Thread Michael Schmalle
It should, there is y bounds checking in the code. Could you show an example? It might have been something they tunned for the public release also. Never know. Peace, MikeOn 6/21/06, NZEYIMANA Emery Fabrice [EMAIL PROTECTED] wrote: Hello Group, I have a

[flexcoders] Binding chart to XML

2006-06-21 Thread Daniel Tuppeny
I'm trying to bind a chart to an XML document, like this: /* Script */ var sXML:String = '\ data\ item name=Aaa val=6 /\ item name=Bbb val=46 /\ item name=Ccc val=16 /\ /data\ '; gXMLDoc =

[flexcoders] Re: ComboBox itemRenderer scrolling Bug?

2006-06-21 Thread indy_nagpal
Hi Brendon... I came across exactly the same weirdness when using an itemrenderer that displayed different images in a datagrid column based on specific values. No matter what I do, I continue to get the same weird behaviour where if you scroll down, the values in the rendered column start

[flexcoders] More than one class in the same file

2006-06-21 Thread alglx
Well, i've read that it is possible to place more than one class in the same as file and also within the body of a package, like for example package tutorial{ class Sample1 {} class Sample2 {} class Sample3 {} } but everytime i try to do that, Flex gives me an error saying... A file found

Re: [flexcoders] FLV can't load in to videoDisplay component from remote machine

2006-06-21 Thread Bhavin Padhiyar
hi Tom It is givinging me error of no bitrate matchError: 1000: No bitrate match at mx.controls.videoClasses::VideoPlayer/play() at mx.controls::VideoDisplay/play() at Support/::toggle() at Support/___Button1_click() Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 20

Re: RESENDING: RE: [flexcoders] Login System

2006-06-21 Thread greggohlke
This is something I have been struggling with as well. Since I am brand new to this groups thing how do I download your samples file. It tells me the attachment was not stored and I can not get the file. --- In flexcoders@yahoogroups.com, Bill Sahlas [EMAIL PROTECTED] wrote: Here's a

[flexcoders] Adding dynamic items to MenuBar component

2006-06-21 Thread Jordan Snyder
Hello All, I have a Window menuitem on the top level of a MenuBar component, and when I add a new window to my application, I'd like to reflect that under the Window menuitem. I know that I can modify the dataprovider for the MenuBar itself (bind it to a ModelLocator.menuBarDP or something of

Re: [flexcoders] More than one class in the same file

2006-06-21 Thread Michael Schmalle
There can only be one public class in a package package { public function MyPublicClass() { } } // you need to import here again for the classes below // you can also have functions here function somePackageFunction(arg:Number):void { } MyInternalClass { public function MyInternalClass()

Re: [flexcoders] Applet invocation using Flex

2006-06-21 Thread Ralf Bokelberg
You should be able to access the applet with _javascript_. The best thing is to provide a _javascript_ api in your html document and use this from flex.Cheers,Ralf. On 6/21/06, tinywhistles [EMAIL PROTECTED] wrote: Hi Is it possible to call an applet class from a MXML file? I am trying to

[flexcoders] Noob binding question

2006-06-21 Thread Shannon Hicks
I've racked my brain, and searched all the documentation I could find, but seem to be having a problem binding results from a CFC query to flex objects... I know I'm doing the chart all wrong, but I tried binding to a datagrid, and I don't see what's wrong there. I can confirm that the

[flexcoders] Re: Flex2B3: Container fillColors

2006-06-21 Thread Tim Hoff
Thanks Mike, I started trying to do something similar to this before I asked for help. I kept stepping on my own foot figuring out a way to apply it. I have a lot to do today. But, I'll try to work this in. Again, this may be something that has been added to Flex final, but good

Re: [flexcoders] Noob binding question

2006-06-21 Thread Scott Langeberg
According to ServiceCapture, your flash Remoting calls are bombing out... It says you were making 'the following service calls:' null.null() Never a good thing! Scott On 6/21/06, Shannon Hicks [EMAIL PROTECTED] wrote: I've racked my brain, and searched all the documentation I could

[flexcoders] Re: Reusing Cairngorm views

2006-06-21 Thread Tim Hoff
Yeah, that sounds reasonable. Keep as much in the model as you can. I see your point about child component id's. You might have to take the same concept of instantiation to these as well. It might take a little refactoring. -TH --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL

[flexcoders] [Ann] The world's largest Flex application

2006-06-21 Thread Chris Velevitch
Robin Hilliard of Rocketboots (www.rocketboots.com.au) will talk about the lessons learnt from the world's largest Flex (1.5) application. Mon 3rd July at the Sydney Flash Platform Developers Group (www.flashdev.org.au) at 6:30 pm for 7pm start at the NSW Sports Club (www.flashdev.org.au/venue).

Re: [flexcoders] FLV can't load in to videoDisplay component from remote machine

2006-06-21 Thread Abdul Qabiz
Have you set hardcoded value for the bitrate? -abdulOn 6/21/06, Bhavin Padhiyar [EMAIL PROTECTED] wrote: hi Tom It is givinging me error of no bitrate matchError: 1000: No bitrate match at mx.controls.videoClasses::VideoPlayer/play() at

[flexcoders] Migration problem Flex 1.5 to 2.0.

2006-06-21 Thread silpa s
Hi all, We have around 13 modules for the project say ABC, i've to work on one of the module and we are using Flex2.0. But the re two modules already implemented their modules in Flex 1.5. But we all share common web.xml and deploy as a single EAR file. Now how about other modules (Flex 1.5)?

[flexcoders] how to handle large menus

2006-06-21 Thread Sam
What is the best way to handle generating a large menu? What I'm doing currently is looping thru an array and creating a mc and adding a text feild to it, as you can imagine this craps out on larger arrays. I'm sure this is not the preferred way to do something like this and I'm looking for

RE: [flexcoders] Binding chart to XML

2006-06-21 Thread Ely Greenfield
In E4X parlance, attributes are referred to by prefixing their name with @. i.e., to get the val of the first item in your code, you would write: [EMAIL PROTECTED]; So to have a data component (chart, list, etc) pull a value from an attribute, you need to do the same: PieSeries

[flexcoders] Re: flex2gateway woes on UNIX

2006-06-21 Thread wlbagent
I've found the solution (actually CheapEnergy on Adobe's CF-Flex Connectivity forum found it). Although I had reinstalled CF a couple of times, apparently there were a couple of processes that didn't get killed after stopping CF and the Web server prior to the reinstall. Killing these before

RE: [flexcoders] E4X Interpreter

2006-06-21 Thread Gordon Smith
I can understand that an open-ended eval() function might be a security worry Yes, and there are also some other reasons why AS3 doesn't include eval() ... It would make the Player larger than we'd like, because the Player would have to contain the AS3 compiler. And the

[flexcoders] Thoughts on AMFPHP Restaurant Finder

2006-06-21 Thread Phil Marston
Hi All, In an attempt to get to grips with Flex 2 and AMFPHP after following Mike Potter's tutorial here http://labs.adobe.com/wiki/index.php/Flex_Framework:tutorials:flex2_AMFPHP I've built a Restaurant Finder based on Christophe Coenraets' Flex 1.5 example found here

Re: [flexcoders] [Ann] The world's largest Flex application

2006-06-21 Thread Abdul Qabiz
Just curious, what was criteria to decide that it's largest Flex app...No offenses..-abdulOn 6/21/06, Chris Velevitch [EMAIL PROTECTED] wrote: Robin Hilliard of Rocketboots (www.rocketboots.com.au) will talk about the lessons learnt from the world's largest Flex

Re: [flexcoders] Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread Abdul Qabiz
Cool! Thanks for sharing the info...-abdulOn 6/21/06, John Grden [EMAIL PROTECTED] wrote: If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being

RE: [flexcoders] Re: ACcess SOAP fault code

2006-06-21 Thread Carson Hager
The way it should work is for the fault handler to be triggered due to the fact that a SOAP fault was returned. At this point, the 500 status code is what's triggering the fault. Carson Carson Hager Cynergy Systems, Inc.

[flexcoders] FYI - this email address has been abused and is no longer an acceptable email address

2006-06-21 Thread phlux
Hi there, If you are getting this message it is probably because you tried to email me at [EMAIL PROTECTED] Unfortunately, this email generates too much spam, which renders it quite useless. The best way to reach me is through my myspace account. This way I can be sure I do not get followed

Re: [flexcoders] Re: ComboBox itemRenderer scrolling Bug?

2006-06-21 Thread Brendan Meutzner
Is this a bug then?... can somebody tell me if it's been reported on the beta list?Thanks,BrendanOn 6/20/06, indy_nagpal [EMAIL PROTECTED] wrote: Hi Brendon... I came across exactly the same weirdness when using an itemrenderer that displayed different images in a

RE: [flexcoders] Migration problem Flex 1.5 to 2.0.

2006-06-21 Thread Tracy Spratt
You can probably mix them at the swf level but no lower. In other words, you cant have 2.0 mxml or as files under your 1.5 app. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of silpa s Sent: Wednesday, June 21, 2006 11:55 AM To:

[flexcoders] Building flat data object based on XML file with complicated structure

2006-06-21 Thread wayneposner
Howdy all!! Take the following blurb of XML: item id=0006 qty=2.000 uom=EA matnr=347565 bismt=DBT347565 name=ASSY, SPLIT CLUTCH COVER hasBom=X path=pdf/347565.pdf image=pdf/thumbnails/347565.jpg item id=0001 qty=1.000 uom=EA matnr=347564 bismt=DBT347564 name=SPLIT CLUTCH COVER hasBom=X

RE: [flexcoders] Binding chart to XML

2006-06-21 Thread Daniel Tuppeny
I wasn't deliberately using E4X (I don't really know what it is!!). I thought I was using XML! :-) I added an @ and get the same issue: "Property @val not found on flash.xml.XMLNode and there is no default value." Any ideas? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] States within List

2006-06-21 Thread Jason Szeto
Sree, You can create an ItemRenderer based on any UIComponent and add your states into that. Then assign that ItemRenderer to your List. I have started working on an example. This is not complete because it doesnt handle selecting an item. But it should be a good starting point.

[flexcoders] Flash Player 8 Upload/Download support

2006-06-21 Thread Valy Sivec
Hello, I read somewhere that Flash Player 8 adds Download/Upload support. I was wondering if you can point me to any resource in this regard or any samples would be greatly appreciated. I had implemented the upload functionality using HTML - file upload tag - but I'd like to migrate to Flash if

[flexcoders] Re: Trying out new Cold Fusion/Flex Application Wizard

2006-06-21 Thread christophers1228
This has been a problem for me also. It works sometimes but most times it does not. It seems like the results aren't being bound to the form in time (before it pops up the window) very frustrating, because it definately works sometimes. --- In flexcoders@yahoogroups.com, yaagcur [EMAIL

[flexcoders] Re: Reusing Cairngorm views

2006-06-21 Thread Tim Hoff
Tom, I think that you would keep your view/viewHelper in the view section and create a Class reference in the ModelLocator. That way you can instantiate the view multiple times. Sub-Views would also have to follow this path. Your dataProviders (VOs) would also need to be instantiated or

[flexcoders] Re: toolTip for dataGrid headers?

2006-06-21 Thread djbrown_rotonews
I've seen references to using the setValue() function of the custom renderer to gain access to the header itself and putting the toolTip code in there, but it doesn't look like setValue is called any longer using Beta3. any ideas/suggestions? --- In flexcoders@yahoogroups.com, djbrown_rotonews

RE: [flexcoders] Flash Player 8 Upload/Download support

2006-06-21 Thread Carson Hager
This is the original post on the subject. http://www.adobe.com/devnet/flex/articles/fp8_features.html Google on Flex file upload and you'll get lots of hits. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email:

Re: [flexcoders] Beta 3 Bug - ComboBox Colors

2006-06-21 Thread Brendan Meutzner
This is a bigger problem than just being a style issue. I posted yesterday (see ComboBox itemRenderer scrolling Bug?) that using an itemRenderer with a ComboBox inside a datagrid was causing strange scrolling issues. What appears to be happening is when a ComboBox is opened by clicking on the

[flexcoders] Customized Loading File

2006-06-21 Thread parksch2
Is there a way to use a customized file in place of the built in initializing... that comes up when you load a Flex application? TIA. Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email.

Re: [flexcoders] [Ann] The world's largest Flex application

2006-06-21 Thread Pan Troglodytes
Will there be some sort of video feed available later for those of us who can't just pop over? I'd be very interested to hear what Robin has to say.On 6/21/06, Chris Velevitch [EMAIL PROTECTED] wrote: Robin Hilliard of Rocketboots (www.rocketboots.com.au) will

RE: [flexcoders] Binding chart to XML

2006-06-21 Thread Ely Greenfield
Gotcha. I didn't read your post closely enough. I'm nut sure if you're using Flex 1.5 or 2. In Flex 1.5, Charts don't support rendering XML data. In Flex 2, there are two different types of XML supported by the player. 'Classic' XML (flash.xml.XMLNode) and ECMA Standard XML. When I

[flexcoders] ServiceLocator in Cairngorm extends UIComponent?

2006-06-21 Thread Daniel Cascais
Hi, Is there a reason why the ServiceLocator in Cairngorm extends the UIComponent? I can't figure it out; maybe you guys can tell me the reason. The reason why I'm asking is because it takes up some space in my app, moving the view a few pixels down. I've got something like this in the main

Re: [flexcoders] Applet invocation using Flex

2006-06-21 Thread Abdul Qabiz
Hi,I am assuming you are doing this on client side? If yes, can you invoke applet using _javascript_? If yes, then you can do it with Flex...You can use ExternalInterface or navigateToURL (..) to do invoke any _javascript_ function which in turn launches Java Applet... -abdulOn 6/21/06,

RE: [flexcoders] Flash Player 8 Upload/Download support

2006-06-21 Thread João Fernandes
Valy take a look here: http://www.adobe.com/devnet/flex/articles/fp8_features.html. João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Valy Sivec Sent: Wed 21-Jun-06 8:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Player 8

Re: [flexcoders] Design Pattern books for AS3 and Flex 2

2006-06-21 Thread judah
fyi, i stopped by the bookstore and found design patterns for dummies. it seems to be language nuetral too up until the examples which are in java. i read through the first two chapters and it was very easy to understand http://www.amazon.com search design patterns for dummies by steve holzner

[flexcoders] Combobox in a Datagrid

2006-06-21 Thread wi1df1ower
I know someone out there has done this...for the life of me i cant seem to find any documentation, or an example of how it is done. Can someone out there direct me to an example or docs on how to put a combobox in a datagrid. The only codicil is that the combobox must take the value of the of

[flexcoders] mouseOver icon

2006-06-21 Thread Michael
I have a tree control that uses an itemrenderer to display Some data Select. I want the select text to function like a link button. I have tried to put a linkButton in my itemRenderer, but it does not show up. I have gotten a checkbox to show up, but where the linkButton was supposed to

[flexcoders] working with XML data

2006-06-21 Thread arnold_charming
Hi! I'm new to Flex 2.0 so please help me out. I'm trying to build a simple flex application which excepts userpass which is then send via mx:httpservice to my php script. If the login is OK, then the flex application receives a XML file which states that the user can log-in. Now I have to build

[flexcoders] Re: Noob binding question

2006-06-21 Thread Tim Hoff
Hi Shannon, Here's a couple things that might get you moving forward. First, add a fault handler to your RPC, to see ifthe CFC result is getting through:fault="Alert.show(event.fault.faultstring, 'Error');" And, some subtle changes to your functions: private function appInit():void{

[flexcoders] How can I reference the particular item I am using?

2006-06-21 Thread Charles
Hi everyone,This post title isn't all that descriptive but I couldn't think of a better one. The question is pretty straightforward though. I think it's best explained with an example. Let's say I have an image... mx:Image source="../pictures/banner.jpg"/Now, let's say that if I click the

Re: [flexcoders] FYI - this email address has been abused and is no longer an acceptable email address

2006-06-21 Thread Brian
It would be nice if phlux could be removed as a member of the group. I'd do it but don't have access. On Wed, 21 Jun 2006 10:32:51 -0700 (PDT), phlux wrote: Hi there, If you are getting this message it is probably because you tried to email me at [EMAIL PROTECTED] Unfortunately, this email

Re: RESENDING: RE: [flexcoders] Login System

2006-06-21 Thread Pat Buchanan
Greg:Just save the attachement to your desktop, then rename it to samples.zip. Then you should be able to open it. If it does not work let me know and I'll email the file to you.Thanks-Pat On 6/20/06, greggohlke [EMAIL PROTECTED] wrote: This is something I have

RE: [flexcoders] Blank out password field in a datagrid cell

2006-06-21 Thread jfournet
We are using flex 1.5, I think this is a flex 2.0 feature. Is there another way to accomplish this?Jason Szeto [EMAIL PROTECTED] wrote: You need to create a TextInput with password for your itemEditor as well. JasonFrom: flexcoders@yahoogroups.com

[flexcoders] Re: toolTip for dataGrid headers?

2006-06-21 Thread Tim Hoff
DJ, I included a hack for this in the following example. Since the column's headeRenderer is a dataGridItemRenderer (TextField), it has a toolTip property. The headerText is set before the itemRenderer is created, so you can compare to data.text to identify the column.

Re: [flexcoders] How can I reference the particular item I am using?

2006-06-21 Thread Paul BH
try this:mx:Image source=../pictures/banner.jpg click=SomeFunction(event)/function someFunction (event:Event):void{ var refToMyComponent = event.target ;}On 6/21/06, Charles [EMAIL PROTECTED] wrote: Hi everyone,This post title isn't all that descriptive but I

RE: [flexcoders] Flex dataservices:

2006-06-21 Thread Peter Farland
Mike, The fact that the error said the send failed means that perhaps the RTMP channel isn't running... so I'm guessing something went wrong on starting the web application. Most likely the configuration was invalid. Can you look at the server startup output (perhaps in the console window

[flexcoders] [F2B3] Could Adobe make Flex Framework available trough SVN?

2006-06-21 Thread Carlos Rovira
Hi,I want to point to the great post by Joe Berkovitz about the tree bugs in the last Beta3. Other bugs can be find as well in some mails to this list, and other blogs out there. I found as well working with the tree a little frustrating, and knowing that there's a lot of bugs, I decided to

RE: [flexcoders] [F2B3] Could Adobe make Flex Framework available trough SVN?

2006-06-21 Thread Matt Chotin
We are certainly looking into things like this for the future but havent figured out the exact right thing to do. There are plenty of things that we would need to be concerned about from a support perspective if essentially daily builds of the framework were available. We do have

Re: [flexcoders] Re: [Flex2Beta3] CF/Flex integration - 500 NULL

2006-06-21 Thread Thomas Rühl -akitogo-
Hi, the link out of the cfide was and is... http://127.0.0.1:8500/cfide/administrator/eventgateway/gateways.cfm?gwid=Flex2CFaction=start so this addresses the same cfm as the start/stop buttons for the other gateway instances, nothing inappropriate. This was in the cf exception log:

Re: [flexcoders] [F2B3] Could Adobe make Flex Framework available trough SVN?

2006-06-21 Thread Carlos Rovira
Great to here that Matt, that will ensure a long live for Flex and finish with a lot of frustration when working with this excelent framework.Thanks again for listening : )C. On 6/21/06, Matt Chotin [EMAIL PROTECTED] wrote: We are certainly looking into

RE: [flexcoders] Combobox in a Datagrid

2006-06-21 Thread Tracy Spratt
What version of Flex? Check out www.cflex.net for many examples for both versions. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wi1df1ower Sent: Wednesday, June 21, 2006 4:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Customized Loading File

2006-06-21 Thread Tracy Spratt
Search the livedocs for preloader. http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/js/html/wwhelp.htm Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of parksch2 Sent: Wednesday, June 21, 2006 4:03 PM To:

RE: [flexcoders] Building flat data object based on XML file with complicated structure

2006-06-21 Thread Tracy Spratt
Is there anyway to post that xml so it stays formatted? I really do not like that part of the new yahoo groups. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wayneposner Sent: Wednesday, June 21, 2006 2:44 PM To: flexcoders@yahoogroups.com

[flexcoders] How can I get variable height in datagrid rows?

2006-06-21 Thread Charles
Hi everyone,I am populating a datagrid, and for some items, there are pictures, and others there are not. I am displaying the pictures using an itemRenderer (the only way I know how), and so to fit the pictures, I've set the height of the renderer to be 100. This works fine. However, for the

RE: [flexcoders] Combobox in a Datagrid

2006-06-21 Thread Shannon Hicks
You're in need of a custom Item Renderer (and/or Item Editor) http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=Part2_DevApps.html Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] How can I get variable height in datagrid rows?

2006-06-21 Thread Brendan Meutzner
Do you have variableRowHeight set to true on the DataGrid instance?On 6/21/06, Charles [EMAIL PROTECTED] wrote: Hi everyone,I am populating a datagrid, and for some items, there are pictures, and others there are not. I am displaying the pictures using an

[flexcoders] Re: Flex newbie: issues with HTTPServices and my URL

2006-06-21 Thread Bill Dawson
Thanks, Tracy!I'm now able to post with parameters successfully to the server - the current "challenge" is that I don't seem to be handling the server response. I can confirm that I'm making valid calls to the server, and they are responding, but my Flex application is not displaying

RE: [flexcoders] Binding chart to XML

2006-06-21 Thread Tracy Spratt
In Flex 2.0, the XML class is now the new e4x class. The old XML is still available by using XMLDocument. That message indicates you still have some confusion between the two XML classes. There is NO XMLNode in e4x. Everything is just XML. But

Re: [flexcoders] Flash Player 8 Upload/Download support

2006-06-21 Thread Oscar . Cortes
Check this out http://www.macromedia.com/devnet/flex/articles/fp8_features.html |-+- | | | | | Valy Sivec | | | [EMAIL PROTECTED]| | | Sent by: | |

RE: [flexcoders] Re: Flex newbie: issues with HTTPServices and my URL

2006-06-21 Thread Tracy Spratt
Are you using a result handler function or binding? Binding is hard to debug, but a result handler makes things much easier. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bill Dawson Sent: Wednesday, June 21, 2006 4:22 PM To:

[flexcoders] Best practices questions about Flex/CF and the cflogin container

2006-06-21 Thread greggohlke
Ok I have been playing with using cflogin to handle security for my Flex/CF app for about a month. After seeing several examples that only address the most simple login scenarios I started to look a little farther. I am wondering if anyone has a real good example of a login/security system

[flexcoders] How to parse a date string with custom syntax?

2006-06-21 Thread Uwe Raddatz
Hi, may you tell me how to parse a date string in german format (24.12.2005) in ActionScript 2, so I get a date object? Bye. ur -- Uwe Raddatz [EMAIL PROTECTED] __ Erweitern Sie FreeMail zu einem noch leistungsstärkeren

[flexcoders] Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread John Grden
If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being updated when you save and having to clear ASO or do a clean build with Flex2. ZoneAlarm Security Suite (v6.5.714.000)

[flexcoders] Re: Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).

2006-06-21 Thread John Grden
They're latest version fixes this issue. Just released yesterdayOn 6/21/06, John Grden [EMAIL PROTECTED] wrote: If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being updated

[flexcoders] Re: How to parse a date string with custom syntax?

2006-06-21 Thread Doug Lowder
Untested, so may require debugging: function stringToDate(dateString: String) : Date { var params: Array = dateString.split(.); return new Date( parseInt(params[2], 10), parseInt(params[1], 10) - 1, parseInt(params[0])); } var myDate: Date = stringToDate(24.12.2005);

[flexcoders] Re: Building flat data object based on XML file with complicated structure

2006-06-21 Thread wayneposner
H Let's try again :) item id=0006 name=ASSY, SPLIT CLUTCH COVER item id=0001 name=SPLIT CLUTCH COVER item id=0001 name=CLUTCH COVER MACH. item id=0001 name=CLUTCH COVER WELDMENT item id=0001 name=HR PLATE item id=0010 name=PLATE(A572-50)/

Re: [flexcoders] [Ann] The world's largest Flex application

2006-06-21 Thread Chris Velevitch
FlexDaddy (http://www.flexdaddy.info/2006/06/19/afr-access-one-of-the-largest-public-flex-apps-to-date/) talks about it and, unfortunately, it won't be recorded. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au Yahoo!

[flexcoders] XML CSS (new in FLEX)

2006-06-21 Thread tonyx_788
Helloi have this xml with a CDATA as u can seecatalog libro nameA orillas de una laguna./name desc![CDATA[ la iUJAT/i a través bDACS/b]]/desc/libro/catalogand this CSS fileTextArea{font-family: Garamond;font-size:16;margin-left:6;margin-right:6;}in flashUJAT a través DACSMY QUESTION IS HOW DO

[flexcoders] e4x filtering question

2006-06-21 Thread coder_flex
I have an xml document of the form employees employee name=joe mark department id=id1/ address city=miami state=florida/ /employee employee name=joe mark address city=san francisco state=california/ /employee employee name=mary dooley department id=id1/ address

Re: [flexcoders] FYI - this email address has been abused and is no longer an acceptable email address

2006-06-21 Thread Jennifer Larkin
And perhaps someone with a myspace account can tell her to unsubscribe from her lists first AND not to require that her contacts sign up for an account at some third party service in order to contact her. The email address she wants us to use is only available to MySpace users. I'm not signing up

[flexcoders] Re: How can I get variable height in datagrid rows?

2006-06-21 Thread Charles
Wow...I feel so foolish...haha Thanks! --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: Do you have variableRowHeight set to true on the DataGrid instance? On 6/21/06, Charles [EMAIL PROTECTED] wrote: Hi everyone, I am populating a datagrid, and

RE: [flexcoders] How can I reference the particular item I am using?

2006-06-21 Thread Shannon Hicks
My guess would be to give the image an ID... mx:Image id="myPic"source="../pictures/banner.jpg" click="someFunction({myPic.source})" I doubt the syntax is right, but I think that's the right idea... Shan __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Applet invocation using Flex

2006-06-21 Thread Tim Scollick
I think that the only way that you could do this would be using Chritophe Coenraets' iFrame trick:http://coenraets.com/viewarticle.jsp?articleId=95 On 6/21/06, tinywhistles [EMAIL PROTECTED] wrote: Hi Is it possible to call an applet class from a MXML file? I am

[flexcoders] Re: e4x filtering question

2006-06-21 Thread Geoffrey Williams
Here you go: var employees:XML = employees employee name=joe mark department id=id1/ address city=miami state=florida/ /employee employee name=joe mark address city=san francisco state=california/ /employee

[flexcoders] Re: Flex dataservices:

2006-06-21 Thread Mike_Robinson_98
Pete, thanks for the response. Yes, you're probably right. It appears that the endpoints are not being created. My guess is it has something to do with a security setting ( I removed all references to security in the config files, as they did not seem necessary). That's just a wild guess. Here's

  1   2   >