Re: [flexcoders] Custom List Item Render to have multiline (so variable Height)

2009-02-05 Thread Flap Flap
Thanks guys for all that clues. I will give a try and send feedback. For info, I've just used TextArra for a multiline text item, I don't need any editable behavior on it. Thx Benoit aka Flapflap

[flexcoders] Re: Adding container references to an array

2009-02-05 Thread Hyder
Nah! Doesn't work. I needed a simple way to allow users of a component to easily add container references in MXML. Guess it'll have to AS then --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: It is just that you want to do it with MXML. I'd really need to test this but

[flexcoders] Upload images

2009-02-05 Thread christophe_jacquelin
Hello, I want to Upload images from the user computer into my flex application. Which instruction to use to upload images ? Thank you, Christophe,

[flexcoders] Navigate in Flex application

2009-02-05 Thread christophe_jacquelin
Hello, I am a new developper in Flex. How to navigate between pages of an application in flex, as we can do in html ? Thank you, Christophe,

[flexcoders] Login / Password Form

2009-02-05 Thread christophe_jacquelin
Hello, I am searching a code source exemple for a classical login / password form in a flex application. Did I need absolutely a database to store Passwords ? Thank you, Christophe,

[flexcoders] Re: ZendAmf Setup issue 1.7 where gateway filw working ?

2009-02-05 Thread tiend...@ezweb.ne.jp
Hi Sajid Hussain I think you are wrong in setting Gateway file, Do you have set path for Zendamf library, you can setting Zendamf library in php.ini file as below include_path = C:\library or setting in you gateway file as below ? define('APPLICATION_PATH', realpath(dirname(__FILE__) .

[flexcoders] C and ActionScript

2009-02-05 Thread christophe_jacquelin
Hello, How to call a function of a library in C, from a line code in a flex application ? Thank you, Christophe,

Re: [flexcoders] C and ActionScript

2009-02-05 Thread Sam Lai
You can't, without a whole lot of plumbing in between, or possibly using the experimental Alchemy set of tools (labs.adobe.com). 2009/2/5 christophe_jacquelin christophe_jacque...@yahoo.fr: Hello, How to call a function of a library in C, from a line code in a flex application ? Thank you,

[flexcoders] Array Collection

2009-02-05 Thread thelordsince1984
Hi, i've have an array collection of objects...every object is like this one: - id:path private function create(id:String, path:String):void { var arrayCollection:ArrayCollection = new ArrayCollection(); var o:Object = {id:path}; arrayCollection.addItem(o); } i would create a function that

[flexcoders] Re: Login / Password Form

2009-02-05 Thread ursprakash6
Code Source?? Thats not necessary. You can code it by own,thats easy only. just put two TextField,and one button control. In button click event call one actionscript method ,in that get the values in textFields and send the values to backend using either HttpService or RemoteObject Gnanz.../

[flexcoders] Re: Array Collection

2009-02-05 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, thelordsince1984 lore...@... wrote: Hi, i've have an array collection of objects...every object is like this one: - id:path private function create(id:String, path:String):void { var arrayCollection:ArrayCollection = new ArrayCollection(); var

[flexcoders] Memory leak in mx:HTML

2009-02-05 Thread Tom Chiverton
I seem to be able to reproduce a leak in mx:HTML by just placing it on the main application, as per https://bugs.adobe.com/jira/browse/SDK-19119 Has anyone else seen this ? -- Tom Chiverton This email is sent for and on behalf of

[flexcoders] Adjusting Linear Axis minimum and maximum dynamically

2009-02-05 Thread omkarjoe
Hi, Any idea, how can I center a '0' on Linear Axis? I can't set minimum and maximum values at the design time. As it may change according to the data coming from server. For Example, if I get data between range of 25 to -70. I want to set min as -70 and max as +70 so that 0 will come in to

[flexcoders] Displaying UIComponents vertically

2009-02-05 Thread annelie2008
Hi, I'm having trouble with the layout of the musical score I'm displaying. It's generated from an xml file and I want the staves to be placed on top of each other but I can't make it work. I have a class which draws out the lines and the notes on it, so I instantiate that class, create the

Re: [flexcoders] Re: mx:Text maxWidth

2009-02-05 Thread Josh McDonald
Ack, I've just this minute come up on the same thing. This is annoying as hell, I've used maxwidth all over the place without noticing it wasn't working until now. What I want is to have my text centered if it's narrow, and left justified (+ wrapped of course) if it exceeds maxWidth. I need this,

Re: [flexcoders] Re: Adding styles to UIComponents

2009-02-05 Thread Josh McDonald
UIComponent doesn't have any code for drawing background images. If you want a background image without the overhead of using a Container such as Box, you'll have to build a subclass of UIComponent that does. Or simply add an Image as the first child of your UIComponent. Are you extending

Re: [flexcoders] Java enum in Flex3

2009-02-05 Thread Josh McDonald
I'm kicking off a blaze-ds project this weekend, and I'll be doing typesafe java-flex enums, when I figure it out I'll blog about it and post it here :) It'll probably just require a small amount of custom unmarshalling code, there's a lot of undocumented flexibility in mx.rpc.* -Josh Thu, Feb

[flexcoders] Re: Upload images

2009-02-05 Thread ursprakash6
Use FileReference class. detailes sample application is given in the below url you can refer with that. http://kennethteo.com/2007/10/08/uploading-images-using-flex-the-search-finally-done/ Gnanz... http://gnanz-flexworld.blogspot.com --- In flexcoders@yahoogroups.com, christophe_jacquelin

[flexcoders] Re: Navigate in Flex application

2009-02-05 Thread ursprakash6
In Flex you can directly do multipage applications like we do with Html. In Flex multipage applcaitions can be constructed by using states,Viewstack. Viewstack component is the most helpful one in achieving multipage applications. try search for viewstack,you will get more examples from net.

[flexcoders] Problem in Streaming Live data using Flash Media Server

2009-02-05 Thread akila_ksri
I have the client application and the FMS running on the same machine, the client app connects to the server successfully but fails to play any content(Pre-recorded flv/swf) which is also present in the same directory using NetStream.play(contentPath); and i always get

RE: [flexcoders] Re: Geting the 3dWall Pro to work as flex component ?

2009-02-05 Thread Grant Davies
I've blogged how to get the 3dWall working as flex component using the Flex Component kit for flash - here : http://theresidentalien.typepad.com/ginormous/2009/02/flashloaded-3dwall -working-in-flex-as-flex-component.html Cheers Grant ... b

[flexcoders] Re: Adding styles to UIComponents

2009-02-05 Thread Amy
--- In flexcoders@yahoogroups.com, superbokbok superbok...@... wrote: http://livedocs.adobe.com/flex/3/html/skinstyle_3.html There's no reason you can't call your style backgroundImage. Nice link :) I tried to implement code as per the examples in the link page, but the problem is I

[flexcoders] Invoking other module's actions

2009-02-05 Thread Wally Kolcz
Sorry if that was a little confusing...Here is the scenario. I have a module (myProjects) that has a viewstack (projectsVS) that allows me to switch between a 2 different sections (indexes). I want to, when the use logs out, make sure that the module's viewstack is set to

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread valdhor
Tracy I have been told before that I take things a little too literally. I should have thought through just what Vik really wanted rather than just answer the question. Well done for coming to the right conclusion. --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: Yes, Web

[flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread johnlukemills
If what you want to do is deploy a web service on your server, the simplest way by far is to use ColdFusion. The Cfcomponent from the ColdFusion 8 developers guide is all you need. cfcomponent cffunction name = echoString returnType = string output = no access = remote cfargument name = input

[flexcoders] Re: Passing values using mx:WebService

2009-02-05 Thread valdhor
Well, that's something I could do (I pored over lots of WSDL files whilst learning Web Service clients and servers). I have become somewhat of an expert on building clients based just on a WSDL file. Post the link to the WSDL. --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote:

[flexcoders] Re: Custom Event and bubbling phase

2009-02-05 Thread valdhor
You can listen to any event in the event flow chain - you just need to make sure which chain you are listening to. You are using the popupmanager so you need to use the chain that is based on systemmanager. Is there any particular reason the popup panel cannot handle the event itself? --- In

Re: [flexcoders] Re: Simplest way to create a webservice and deploy

2009-02-05 Thread Vik
Big Thankx to all you guys...especially to Tracy Nate Yes I really did not need a webservice to achieve what I was looking for. I was just in need of a xml response which I could achieve by simply creating a servlet which sends me a response as an XML. Thanks again!!! Thankx and Regards Vik

[flexcoders] Re: Login / Password Form

2009-02-05 Thread valdhor
These threads should get you started: http://www.nabble.com/Login-Registration-Page---tp21747714p21748295.html http://www.nabble.com/flex-login-popup-help-needed-please-tp20772482p20833766.html HTH Steve --- In flexcoders@yahoogroups.com, christophe_jacquelin

Re: [flexcoders] Navigate in Flex application

2009-02-05 Thread Howard Fore
What I did is largely what's described at the bottom of http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_3.html. Each of my views in the viewStack is a different .MXML file/component. The main file has the viewstack filling the screen, instead of the small area of the screen

[flexcoders] Re:Adjusting Linear Axis minimum and maximum dynamically

2009-02-05 Thread Gilbert Mizrahi
Check the range you get when getting data from the server. I am assuming -70 to 25 are values for the X axis. Since your min value is -70 and your max value is 25 set a dummy point at 70 with Y value = (empty). Hence the dummy value will not be plotted, but the X Axis will go from -70 to 70.

re: [flexcoders] Re: Login / Password Form

2009-02-05 Thread Wally Kolcz
I used a database and RemoteObject/Web Services to check a CFC with the query to see if the username and password matches and returns any info I need then I have something like this: public function loginHandler(e:ResultEvent):void { userData = e.result as ArrayCollection;

[flexcoders] XML - What var type can I use for my XML nodes?

2009-02-05 Thread sailorsea21
Hi everyone, I have the following: mx:XML id=testID format=e4x source=xml/test.xml/ mx:Text text={testID.result.(@now=='today').date}/ What var type can I use for testID.result.(@now=='today') to simply my text string? I would like to have the following: [Bindable] public var xmlvar:String =

Re: [flexcoders] C and ActionScript

2009-02-05 Thread Nate Beck
Convert your C code into AS3 bytecode using Alchemy. Alchemy will generate a SWC file which you can use within Flex / ActionScript On Thu, Feb 5, 2009 at 2:05 AM, Sam Lai samuel@gmail.com wrote: You can't, without a whole lot of plumbing in between, or possibly using the experimental

Re: [flexcoders] Memory leak in mx:HTML

2009-02-05 Thread Nate Beck
I just started with with the Adobe AIR HTML component this week. I hadn't noticed the memory leak, but of course I'm actively in development. I'll have a look at it today to see if it's happening to me as well. Also, mx:HTML is a Flex wrapper for HTMLLoader, I wonder if the same memory leak

Re: [flexcoders] Problem in Streaming Live data using Flash Media Server

2009-02-05 Thread Nate Beck
When you say... present in the same directory.. which directory are you referring to? The FLV file resides in the same directory as your application? It's been a while since I've used FMS... but in Wowza Media Server there is an audio folder where all of the stream FLV files are located. On Thu,

RE: [flexcoders] Java enum in Flex3

2009-02-05 Thread Maciek Sakrejda
Thanks, Seth. I'd read the article, but your e-mail clarifies the issues. I've looked over our usage and I think we're safe for now, but this is sort of a time bomb, and it might make sense to fall back to just Strings. The only alternative I see is ensuring to use .equals() everywhere, which is

[flexcoders] Multiple tool tip styles

2009-02-05 Thread djhatrick
How do i apply multiple tooltip styles to a flex app? Thanks, patrick By the way: YahooGroups search sucks, ugh, i hate it, always busy, why do we have to have this here?

[flexcoders] Re: Prevent ItemRenderer click from selecting row?

2009-02-05 Thread Tim Hoff
Yes, you'd have to extend DataGrid and override the mouseDownHandler and mouseUpHandler functions. if ( event.target is Button ) return; -TH --- In flexcoders@yahoogroups.com, Dennis Falling dfall...@... wrote: That's what I was trying- stopping propagation and preventing default.

RE: [flexcoders] XML - What var type can I use for my XML nodes?

2009-02-05 Thread Tracy Spratt
[Bindable]public var _xmlVar:XML; private function init():void{ _xmlVa = testID.result.(@now=='today')[0]; //NOTE the array[0] brackets. ... All e4x expessions return an XMLList, even if there is only one node, so you must specify that node toput it in an XML variable. Tracy Spratt

[flexcoders] Re: Hand Cursor and datagrid

2009-02-05 Thread Tim Hoff
Hi Alex, The only problems with setting it on the renderers, is the vertical gap between the renderer and the row. The cursor will flicker back and forth between the hand and pointer as you move it up and down the list. Perhaps the highlight indicator is a possible place to try. -TH --- In

RE: [flexcoders] Invoking other module's actions

2009-02-05 Thread Alex Harui
I'm still confused. Importing and using a module in the main app links the module into the main app defeating the point of modules. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Login / Password Form

2009-02-05 Thread Tracy Spratt
You could also store your authentication credentials in a file(xml?) on the server. The starting place is to choose your back-end platform/language(Java, php, CF,.net, etc). Then choose the RPC protocol(RemoteObject, HTTPService, WebService) you will use between flex and that platform. Then

RE: [flexcoders] Displaying UIComponents vertically

2009-02-05 Thread Alex Harui
Each child of VBox must report have either its measuredWidth/Height or explicitWidth/Height set, otherwise the VBox doesn't know how big they are Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Custom List Item Render to have multiline (so variable Height)

2009-02-05 Thread Alex Harui
TextArea defaults to editable. Use Text, or just set wordWrap=true and use the default renderer. It knows how to do multiline Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Prevent ItemRenderer click from selecting row?

2009-02-05 Thread Alex Harui
Sure, because it set up its listener first. You can set your listener at a higher priority. I'd still start with my list selection example on my blog. You should be able to tweak it to just not allow selection if the event.target is a button. Alex Harui Flex SDK Developer Adobe Systems

RE: [flexcoders] Re: Array Collection

2009-02-05 Thread Tracy Spratt
If it is a dynamic object, you can use for..in or for..each loops to enumerate all of the properties. Note, If you have an object, like: var oLookup:Object = {p1:v1, p2:v2, pa:va, pb:vb}; You can randomly access the properties like this: var sPropertyName:String = pa; var

[flexcoders] ColorPicker - without the picker!

2009-02-05 Thread tchredeemed
I was wondering if I could build a flex app that has the SwatchPanel by default, instead of having to click on the icon to have it drop down. Yes/No?

[flexcoders] How to increase datagrid Last Column WIDTH

2009-02-05 Thread Dharmendra Chauhan
HI All, I am struggling with last column of flex2 dataGrid. I have set HS policy to auto, all column are resizable except last. I can decrease its width but It does not allow me increase it. Does anybody know how STRECH last column widht to increase at at right of the DG Thanks,

RE: [flexcoders] Re: Geting the 3dWall Pro to work as flex component ?

2009-02-05 Thread David Kramer
I read on their site that licensing is for 1 workstation and unlimited websiteshow does that work when your in the AIR environment? - Original Message - From: Grant Davies To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Geting the 3dWall Pro to work as flex

RE: [flexcoders] Re: Geting the 3dWall Pro to work as flex component ?

2009-02-05 Thread Wally Kolcz
It would probably be best for you to contact them regarding that issue. Most companies that make Flash widgets don't think about AIR. From: David Kramer davidkra...@consultant.com Sent: Thursday, February 05, 2009 10:47 AM To: flexcoders@yahoogroups.com

[flexcoders] Using FABridge with SWFObject 2?

2009-02-05 Thread Keith Hughitt
Hi all, I was wondering if anyone has been able to successful use SWFObject with the Flex-Ajax Bridge (FABridge)? The SWFObject wiki offers a modified version of FABridge.js is supposed to resolve issues with supporting the FABridge, but I have not had any luck with it. I have a simple Flex

Re: [flexcoders] How to increase datagrid Last Column WIDTH

2009-02-05 Thread Jeffry Houser
Columns are only resizable within DataGrid, and clicking / dragging columns does not change the width of the DataGrid. If I understand correctly you want to be able to expand the DataGrid by clicking and dragging the last column; is that correct? Off the top of my head, I don't know of

Re: [flexcoders] Expand Panel in VDividedBox like TourDeFlex

2009-02-05 Thread Jeffry Houser
Look into the Flex MDI project. http://code.google.com/p/flexmdi/ I don't know if that is what is used by Tour De Flex, but I believe it can produce similar functionality. Monali Gandhi wrote: Hi there... can anybody teach me how can i do expand panel effect like TourDeFlex in the

[flexcoders] Re: Multiple tool tip styles

2009-02-05 Thread valdhor
I have no idea on your tooltip question but in regards to YahooGroups search, I have given up on it. Either it is busy or doesn't give me any results (Like I know something was posted in the past few weeks but when I search, the latest results are from October of 2008. I now use Nabble for my

[flexcoders] very strange combobox problem when switching dataproviders

2009-02-05 Thread Pan Troglodytes
I'm running into something fairly perplexing. Read the following code and think of what you'd expect it to do when you click the change button. Then run it and click the change button. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical

Re: [flexcoders] Re: Prevent ItemRenderer click from selecting row?

2009-02-05 Thread Dennis Falling
Wow, I don't know how many times I've typed ,0 and ignored priority. Thanks! On Thu, Feb 5, 2009 at 12:14 PM, Alex Harui aha...@adobe.com wrote: Sure, because it set up its listener first. You can set your listener at a higher priority. I'd still start with my list selection example on

[flexcoders] What comes out of a datagrid

2009-02-05 Thread Wally Kolcz
Lets say I have 2 DataGrids, one has user info in it (populated with a binded ArrayCollection) and the other is blank (lets call it id=teamDG). You can drag the people from the populated to the blank to populate it. Got that part to work fine. When you have dragged all the people you wanted to

[flexcoders] AxisRenderer Embedded Font Bug?

2009-02-05 Thread Battershall, Jeff
I've got a vertical axis with an axisrenderer and I'm trying to rotate the labels 90 degrees. I'm referring to a font embedded in a stylesheet. The labels won't display - it appears that room is being made for the labels to appear, but the labels aren't getting rendered. I'm using MyriadWebPro

Re: [flexcoders] XML - What var type can I use for my XML nodes?

2009-02-05 Thread - -
Hi Tracy, I get An Internal build error... with: text={_xmlVar.date} Thanks! -David From: Tracy Spratt tspr...@lariatinc.com To: flexcoders@yahoogroups.com Sent: Thursday, February 5, 2009 1:03:41 PM Subject: RE: [flexcoders] XML - What var type can I use

[flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread valdhor
Did you notice that Tracy had an error in his syntax? Did you fix it? _xmlVa = testID.result. (@now=='today' )[0]; should have been: _xmlVar = testID.result. (@now=='today' )[0]; ie. He forgot the r on the end. --- In flexcoders@yahoogroups.com, - - sailorse...@... wrote: Hi Tracy, I get

[flexcoders] Re: very strange combobox problem when switching dataproviders

2009-02-05 Thread kuroiryu42
Yep its a bug, didn't bother to look it up but if you need a work around you could extend and override the combobox collectionChangeHandler look for the reset kind and remove the listener at that point. --- In flexcoders@yahoogroups.com, Pan Troglodytes chimpathe...@... wrote: I'm running into

[flexcoders] AlivePdf and scroll bars

2009-02-05 Thread kuroiryu42
I have a list that has scroll bars that I want to go away when I drop it into the PDF. I am just using the addImage function of PDF so it is basically taking a screen shot of the list that i pass in. Anyone have a solution for this? Thanks

[flexcoders] localConnection not working from Air to Air

2009-02-05 Thread luvfotography
Any hints on getting a localConnection to work from AIR to AIR? It works from FLEX to FLEX, I am using the code from the livedocs example. I am getting a statusEvent of 'error'. thanks, ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Upload images

2009-02-05 Thread Alan K
http://weblog.cahlan.com/2006/12/flex-upload-component.html Hello, I want to Upload images from the user computer into my flex application. Which instruction to use to upload images ? Thank you, Christophe,

Re: [flexcoders] Login / Password Form

2009-02-05 Thread Alan K
No, you can use a PHP file, for example, to hold and check against. Hello, I am searching a code source exemple for a classical login / password form in a flex application. Did I need absolutely a database to store Passwords ? Thank you, Christophe,

RE: [flexcoders] Re: Multiple tool tip styles

2009-02-05 Thread Gregor Kiddie
Can I suggest the SearchCoder AIR app? It's very nice! Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

RE: [flexcoders] AxisRenderer Embedded Font Bug?

2009-02-05 Thread Battershall, Jeff
Additional info - the chart is in a TitleWindow. There seems to be a lot of posts about this and similar issues with charts within modules, etc. I just haven't been able to get the magic incantation that will make the fonts render. I could just say f-it and render the labels using device fonts

Re: [flexcoders] Re: Detect exeptions - help!!

2009-02-05 Thread John McCormack
Thanks Alex. I had a peek at your blog and followed the link for localhost but they say it doesn't work at for the local ip address of 127.0.0.1 - on Windows. All the same, thank you for telling me about it, it sounds really good. I shall give it a go for other purposes. I wonder if Charles

[flexcoders] Re: Using FABridge with SWFObject 2?

2009-02-05 Thread Keith Hughitt
Update: I figured out how to get the FABridge to work with SWFObject. Here is a simple working example with a button which when pressed calls a function test in the Flex app: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; html head

Re: [flexcoders] Re: Detect exeptions - help!!

2009-02-05 Thread John McCormack
Thanks valdhor, Does Charles manage to capture the local host traffic? I want to capture the messages between an exe and an Adobe swf file. John valdhor wrote: My favorite (The one I own) is Charles (http://www.charlesproxy.com). The two things that made it my pick is that it is cross

RE: [flexcoders] XML - What var type can I use for my XML nodes?

2009-02-05 Thread Tracy Spratt
Clean the Project: Menu, Project, Clean. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of - - Sent: Thursday, February 05, 2009 2:48 PM To:

RE: [flexcoders] What comes out of a datagrid

2009-02-05 Thread Tracy Spratt
That would be the dataProvider for the teamDG. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Thursday, February 05, 2009 2:32 PM To:

Re: [flexcoders] What comes out of a datagrid

2009-02-05 Thread Adrian Williams
Hi Wally, We have something that's practically identical to what you have described. For ours, instead of waiting until all the people have been dragged, we setup a number of listeners on our blank ADG (DRAG_START, DRAG_ENTER, DRAG_DROP) and as soon as the person is dropped, we reference

[flexcoders] Re: ZendAmf Setup issue 1.7 where gateway filw working ?

2009-02-05 Thread valdhor
Saj I think you have multiple problems in your setup. Here is a quick HelloWorld example: My PHP server is set up with two directories - Zend (Holds the Zend Framework) and ZendServices (Where all my AMF Services files are located in sub directories). In this ZendServices directory I have a

[flexcoders] Re: Detect exeptions - help!!

2009-02-05 Thread valdhor
John Yes it does. It acts as a proxy between whatever application you are using and whatever you are trying to contact. It automagically sets up Firefox and Internet Exploiter. For other apps you may need to manually set the proxy to the local machine and port. BTW. My name is Steve - Valdhor

Re: [flexcoders] XML - What var type can I use for my XML nodes?

2009-02-05 Thread - -
Hi Tracy, it still doesn't work... From: Tracy Spratt tspr...@lariatinc.com To: flexcoders@yahoogroups.com Sent: Thursday, February 5, 2009 3:54:34 PM Subject: RE: [flexcoders] XML - What var type can I use for my XML nodes? Clean the Project: Menu, Project,

[flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread valdhor
OK, ignore my post. See if I care (pout). Sometimes, I wonder why I bother. --- In flexcoders@yahoogroups.com, - - sailorse...@... wrote: Hi Tracy, it still doesn't work... From: Tracy Spratt tspr...@... To: flexcoders@yahoogroups.com Sent:

[flexcoders] Complicated form layout

2009-02-05 Thread mmormando
I find it odd that if I layout a flex form as mx:HBox mx:Form mxFormItem label=A Label mx:TextInput/ /mx:FormItem /mx:Form mx:Form mxFormItem label=B Label mx:TextInput/ /mx:FormItem /mx:Form /mx:HBox I get the same behavior programmatically as

Re: [flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread - -
Sorry valdhor , I did correct the mistake but I still can't get it to work Thanks. :) From: valdhor valdhorli...@embarqmail.com To: flexcoders@yahoogroups.com Sent: Thursday, February 5, 2009 4:10:31 PM Subject: [flexcoders] Re: XML - What var type can I

RE: [flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread Tracy Spratt
I really have come to dislike the words it doesn't work, please do not use them any more. Are you still getting the same compile error? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com

RE: [flexcoders] localConnection not working from Air to Air

2009-02-05 Thread Kevin Benz
There is a security context that runs between Air applications that you need to make happy. Air expects to share a security token between caller and callee in order to accept the transport. As a fast-track, I would explore Arthropod to see their discussion of security integration between Air

[flexcoders] How to set up a Flex,coldfusion development enviroment in Flex Builder?

2009-02-05 Thread markflex2007
Hi, I want to use same tool to develop CFML,as and mxml. Thanks for help. Mark

RE: [flexcoders] Complicated form layout

2009-02-05 Thread Tracy Spratt
An HBox in a Form is a very different thing than a Form in an HBox. A container is going to layout its children according to is own rules. You can't expect it to alter those rules depending upon its parent. Tracy Spratt Lariat Services Flex development bandwidth available

Re: [flexcoders] Re: XML - What var type can I use for my XML nodes?

2009-02-05 Thread - -
never again :) It's working now. Once I cleared IE's cache and restarted it... Thanks again :) -David From: Tracy Spratt tspr...@lariatinc.com To: flexcoders@yahoogroups.com Sent: Thursday, February 5, 2009 4:59:59 PM Subject: RE: [flexcoders] Re: XML - What

[flexcoders] The First Flex Open Iteration Meeting

2009-02-05 Thread flex_coders
When: February 10th – 10:30am PT / 1:30pm ET / 6:00pm GMT (duration 1 hour and 15 minutes) Find your time zone here http://www.timeanddate.com/worldclock/fixedtime.html?month=2day=10yea\ r=2009hour=10min=30sec=0p1=224 . Where: via Connect: http://my.adobe.acrobat.com/foi/

Re: [flexcoders] Re: very strange combobox problem when switching dataproviders

2009-02-05 Thread Pan Troglodytes
Okay, entered as https://bugs.adobe.com/jira/browse/SDK-19145 if anyone is interested in voting for it or watching it. On Thu, Feb 5, 2009 at 1:56 PM, kuroiryu42 kuroiry...@yahoo.com wrote: Yep its a bug, didn't bother to look it up but if you need a work around you could extend and

[flexcoders] Multiple views of same data

2009-02-05 Thread Annette Spooner
Hi, I have an application that requires multiple views of the same data. Thus, in practice, I would ideally like to have two DataGrids, each with the same ArrayCollection as dataProvider, but each sorted differently. I know that sorting a DataGrid sorts the underlying dataProvider, so is there

Re: [flexcoders] Multiple views of same data

2009-02-05 Thread Paul Andrews
- Original Message - From: Annette Spooner To: flexcoders@yahoogroups.com Sent: Thursday, February 05, 2009 11:18 PM Subject: [flexcoders] Multiple views of same data Hi, I have an application that requires multiple views of the same data. Thus, in practice, I would

Re: [flexcoders] How to set up a Flex,coldfusion development enviroment in Flex Builder?

2009-02-05 Thread Jeffry Houser
Install both Flex Builder and CFEclipse as plugins to the same Eclipse install. markflex2007 wrote: Hi, I want to use same tool to develop CFML,as and mxml. Thanks for help. Mark -- Flexcoders Mailing List FAQ:

Re: [flexcoders] The First Flex Open Iteration Meeting

2009-02-05 Thread Nate Beck
Fx prefix is an ongoing discussion that will NOT be discussed in this meeting Awesome. On Thu, Feb 5, 2009 at 2:57 PM, flex_coders ve...@adobe.com wrote: *When:* February 10th – 10:30am PT / 1:30pm ET / 6:00pm GMT (duration 1 hour and 15 minutes) Find your time zone

[flexcoders] Re: Installing an AIR APP with configuration

2009-02-05 Thread dmkramerica
Did you ever make progress or solve this? --- In flexcoders@yahoogroups.com, bjorn itrashm...@... wrote: What's the best practice here? I need my app to know the username of the user who install it. So I'm thinking of adding it as a parameter to the app in the installer badge, and then

[flexcoders] AdvancedDataGrid.SelectedItem - ??

2009-02-05 Thread Libby
Hello people, I am messing with an AdvancedDataGrid for the first time. Have read the Adobe docs and it appears that you can listen for ITEM_OPEN and ITEM_CLOSE and such and be able to access the current item. However, they in my case are always null. I am trying to figure out where in the tree

Re: [flexcoders] Re: Flex Feedback for the Future

2009-02-05 Thread dorkie dork from dorktown
I'd like a real wysiwyg rich text editor with support for images (text wrapping around an image). I'd like a companion text component that shows the rich text content correctly. That's what I really really really really really need. On Sat, Jan 31, 2009 at 8:30 AM, Igor Costa igorco...@gmail.com

[flexcoders] Re: AxisRenderer Embedded Font Bug?

2009-02-05 Thread Darrell Loverin
The problem sounds like it might be this bug https://bugs.adobe.com/jira/browse/FLEXDMV-1883 which was fixed in Flex 3.2. -Darrell --- In flexcoders@yahoogroups.com, Battershall, Jeff jeff.battersh...@... wrote: Additional info - the chart is in a TitleWindow. There seems to be a lot of

[flexcoders] Adobe Presentation Tool

2009-02-05 Thread Erich Cervantez
So I saw Evan Gifford give a flash component kit lecture at Flex Camp in Orange County last weekend and he used the beta version of Adobe Presentation Tool and it was wicked. Problem is I can't find any mention of it anywhere except on Andrew Shorten's blog (here's a screenshot:

[flexcoders] multiple select in List w/o holding ctrl key?

2009-02-05 Thread coder3
Hi All, I have a mx:List that allows multipleSelection. It works. But in order to do multiple select/unselect, i need to hold the Ctrl key, otherwise, it will be single select/unselect. Is there a way to do the multiple select w/o holding the Ctrl Key? Thanks C -- View this message in

Re: [flexcoders] Adobe Presentation Tool

2009-02-05 Thread Matt Chotin
It's an internal use only project but I'm not sure it's even being worked on right now. I'll be honest, not exactly ready for prime time last I saw it... On 2/5/09 4:38 PM, Erich Cervantez f...@noofusion.com wrote: So I saw Evan Gifford give a flash component kit lecture at Flex Camp in

Re: [flexcoders] Login / Password Form

2009-02-05 Thread anuj sharma
I made something like that where I use Flex to develop my UI and store the login info in XML file on the server. To read and write data to that xml file I use server side language PHP though amfPHP , Encryption can be done using action script library as3crypto but in my project we use JavaScript

Re: [flexcoders] multiple select in List w/o holding ctrl key?

2009-02-05 Thread Doug McCune
I wrote this a few years ago, might be what you're looking for: http://dougmccune.com/blog/2007/04/01/list-control-for-the-one-armed-man-take-two/ Doug On Thu, Feb 5, 2009 at 4:50 PM, coder3 rrhu...@hotmail.com wrote: Hi All, I have a mx:List that allows multipleSelection. It works. But in

  1   2   >