[flexcoders] Re: Special characters (eg. Cyrillic) TextArea

2009-12-02 Thread polestar11
Thanks Andriy for your help I've managed to track down the issue (but not explain it) One of our team - also using Mac OSX - built his project using a manually updated version of Flex 3.2 sdk (versus updating to flexbuilder 3.0.2, which automatically udpates to the 3.2 sdk) If I build the

[flexcoders] Re: remote php

2009-12-02 Thread valdhor
Download WebORB for PHP (http://www.themidnightcoders.com/products/weborb-for-php/overview.html) and place it on your server somewhere. When you create your Flex project, do NOT set a server type (All this does is setup your project for you. You can do it manually). You can either code your

RE: [flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-12-02 Thread dennis
Nobody knows about AWS!? dennis From: dennis [mailto:den...@anel.cc] Sent: Monday, November 30, 2009 11:57 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210 Guys have a look at the AWS. the Amazon

[flexcoders] Trying to compile LZW compresses resource strings into aResource Rodule

2009-12-02 Thread taude1
Hello, I'm using the command-line flex compiler to compile LZW resource strings into a SWF that can be dynamically loaded into an application at run time. I have no problem generating the Module and and loading it into the application when I'm doing simple name value pairs. I wish to use

[flexcoders] Re: the most popular way to be connected with sql server REFdn0085136210

2009-12-02 Thread valdhor
I know that I don't. I use my own local web services. --- In flexcoders@yahoogroups.com, dennis den...@... wrote: Nobody knows about AWS!? dennis From: dennis [mailto:den...@...] Sent: Monday, November 30, 2009 11:57 PM To: 'flexcoders@yahoogroups.com' Subject: RE:

[flexcoders] Re: Trying to compile LZW compresses resource strings into aResource Rodule

2009-12-02 Thread taude1
I've changed my strategy a bit on this and I'm using the [Embed] directive with application/octet-stream. It seems that there's some default compression going on when the MXMLC compiler embeds these text assets. Does anyone know what it is? I can't find much in the docs, though I probably

[flexcoders] XMLList += operator

2009-12-02 Thread Breizo
Hi, I am a bit puzzled by the XMLList operator +=. I created the following small test code: var xmll:XMLList = new XMLList(); xmll+=node1/; trace(xmll.toXMLString()); addX(xmll); trace(xmll.toXMLString()); private function addX(x:XMLList):void{ x+=node2/; trace(x.toXMLString()); } and I

[flexcoders] Multiple -services in Flex compiler

2009-12-02 Thread Wally Kolcz
Ok, here is a fun one that I might be wrong on, but... I am using ColdFusion to connect with the majority of my data in an application. It works fine and all is right in the world. However, I am also attempting to use WebORB.NET to do chat and video chat. I kept getting this error when ever I

[flexcoders] Re: Multiple -services in Flex compiler

2009-12-02 Thread valdhor
You can only include one -services argument to the compiler but you could try using the XML command: service-include file-path=c:\Inetpub\wwwroot\weborb30\web-inf\flex\services-config.xml / inside your current services-config.xml file. --- In flexcoders@yahoogroups.com, Wally Kolcz

[flexcoders] Passing Excel file to Java

2009-12-02 Thread Matthew
Hi - I have a Flex UI and I want to allow a user to upload an Excel file. Since parsing Excel in Flex is quite difficult I'd rather pass it to Java (via Blaze DS) and have Java return me a CSV file. But I'm doubtful that I can pass an Excel file thru Blaze. Can I? Is there some other

[flexcoders] Help, please

2009-12-02 Thread Greg Morphis
I need help when trying to compile a Flex 2 app with SSL using Ant I keep getting an error. I've Googled Error: Unable to locate specified base class 'mx.core.Application' for component class 'index' with not much help. I'm using Eclipse with Flex builder 2 lugin. Please help. Buildfile:

[flexcoders] Re: Passing Excel file to Java

2009-12-02 Thread valdhor
I came across this just the other day (It's no use to me as I don't use Java) which may be useful to you: http://www.adobe.com/devnet/flex/articles/file_upload.html --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: Hi - I have a Flex UI and I want to allow a user to upload an

[flexcoders] html_template replaces in js folder at random

2009-12-02 Thread djhatrick
It's always replacing these files - I don't know where it gets them from, they are not in my project. Is there a way to make the ones I want 'stick', I have my html_template connected with subversion, so I can get my files back. Thanks for your time, patrick

[flexcoders] Re: Changing the background of an AS3 project in Flex

2009-12-02 Thread djhatrick
If you don't need it to by dynamic put this at the top of your constructor: [SWF(width=1000, height=1000, frameRate=24, backgroundColor=#00)] P --- In flexcoders@yahoogroups.com, Calbeans jwrigh...@... wrote: --- In flexcoders@yahoogroups.com, Michael mportuesi@ wrote:

[flexcoders] Re: html_template replaces in js folder at random

2009-12-02 Thread djhatrick
I misspoke, it's actually my bin_debug js folder that's getting these mysterious js files in there... Does just replacing the folder fix this issue, thx? --- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote: It's always replacing these files - I don't know where it gets them

[flexcoders] Flex and Weblogic JMS

2009-12-02 Thread Nick Collins
I am having a problem with consuming messages using WebLogic 10.2's JMS to send messages to my Flex client. The error I am getting is the following: *ArgumentError: Error #2173: Unable to read object in stream. The class weblogic.jndi.internal.WLEventContextImpl does not implement

[flexcoders] How can i give tooltip to images in ADG column without using an Image renderer?

2009-12-02 Thread Thomas Silvester
Hi All, Is there any way can I give tooltip to images w/o using an Image renderer since for some reason When I use an Image renderer the images are not created properly. Some of the icons gets created and some of them are missing. I have 5000 to 1 icons in the AdvancedGridColumn.   Below is

[flexcoders] Does any one know why ican not drag and drop ADG column with icons as data

2009-12-02 Thread Thomas Silvester
Hi All, Doea anyone know why I can not Drag and Drop coulms with icons as Data? Is there any way i can do this?   thanks, Anitha.

[flexcoders] How can I sort ADGColumn with icons as data?

2009-12-02 Thread Thomas Silvester
Hi All,  How can I sort icons according to  severity in an ADG column? Please if any one know can you give me sample code? thanks, Anitha.

[flexcoders] DataGrid adds extra row unexpectedly

2009-12-02 Thread Amy
Hi, all; I have a datagrid whose rowcount is set to thedataGrid.dataProvider.length -1 (because the datagrid has no header row, I have to subtract 1). The problem is that, even though the datagrid's editable property is set to false, there appears to be an extra, invisible row at the bottom of

[flexcoders] Logging in flex (urgent help)

2009-12-02 Thread Shashi
Hi All, Can anybody help me in creating logs in flex. For example when i click a button it should create a log in a file in specified destination

Re: [flexcoders] Re: Starting with Cairngorm or PureMvc

2009-12-02 Thread Malik Jaibeer
Hi Christophe, There are multiple things you would like to explore about different available Flex MVC frameworks. The list is big like Cairngorm, PureMVC, Swiz, Mate, MVCS, RobotLegs, Parsley etc. and each one has its own pros and cons. But compare these with your requirements: -Learning

[flexcoders] Chart Markers

2009-12-02 Thread deanriverson
Is there a way to draw a marker on top of a line chart? In my case, I need to draw and update this marker (a simple line would do) as a video is being played. Regards, Dean

[flexcoders] 5.1 soundchannel

2009-12-02 Thread Csomák Gábor
Hello! anyone has an idea, how to make a stereo sound played on all speakers in a 5.1 system? thanks!

[flexcoders] Re: remote php

2009-12-02 Thread gandalfhr
ok.. im new at this so help me out a little bit more in order to use bind to data function in flash builder with php service type, i have to set my project's server type to php and fill out the Web Root and Root URL parameters. I know that i can install say apache server on my pc and then use

[flexcoders] How use an environment variable in a custom config.xml given to mxmlc ?

2009-12-02 Thread Yannick Lacaute
Hi, I am using FlexAntTask and I am using a custom config.xml, given to mxmlc like this: mxmlc ... load-config filename=${APP_ROOT_DIR}/${APP_CONFIG_FILE}/ compiler.source-path path-element=${SRC_DIR}/ /mxmlc It works, but i can't use environment variables in the config.xml, unless

[flexcoders] Re: How use an environment variable in a custom config.xml given to mxmlc ?

2009-12-02 Thread Yannick Lacaute
Ok, i solved my problem. In fact, I don't use FlexAntTask anymore which is definitevely useless in my mind, just the executables, config file (xml) and build.properties. SOLUTION: To give variables to the config.xml loaded by -load-config, add arguments to the compiler executable (mxmlc or

RE: [SPAM] [flexcoders] Logging in flex (urgent help)

2009-12-02 Thread Tracy Spratt
For logging in production, look into to the mx.logging classes in the docs. For debugging I just use trace(). Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Shashi Sent: Wednesday,