Re: REPOST: [flexcoders] PrintJob cutting text on datagrid

2005-12-26 Thread Manish Jethani
On 12/21/05, Mika Kiljunen [EMAIL PROTECTED] wrote: Here comes a small sample. It has a datagrid on a popup and it needs to get printed. It seems to lose the bottom tails of g,y,p,q letters. Hi, Mika. I just confirmed that this is a known problem and has been logged as a bug. I am currently

Re: [flexcoders] Re: PopupWindow's MenuBar can't handle event if ...

2005-12-26 Thread Manish Jethani
On 12/21/05, sn197412 [EMAIL PROTECTED] wrote: Here is a sample source of a component. [snip] hm I guess that TitleWindow has many bugs about events. Thanks, Shigeru - that's very helpful. I think the core issue is that clicking on a TitleWindow does not make it the topmost window

Re: [flexcoders] Flex 2.0 Tree control dataprovider problem.

2005-12-26 Thread Manish Jethani
On 12/25/05, Jonas Windey [EMAIL PROTECTED] wrote: I'm experimenting a bit with flex 2.0 alpha, and I'm trying to use a webservice to provide the datasource of my tree control. I took the xml structure that can be found in the examples explorer, and made a webservice that is giving exactly

Re: [flexcoders] How to embed XML in AS3?

2005-12-26 Thread Manish Jethani
On 12/24/05, flexhtoo [EMAIL PROTECTED] wrote: I want to konw how to embed XML in AS2? Is xml MIME type? I don't think there's a way to embed XML in ActionScript. You'll have to use the XML element in MXML. Manish Yahoo! Groups Sponsor ~-- Get

[flexcoders] Error executing database querry

2005-12-26 Thread vmlr123
Can any body just tell me why Error executing database querry . Im new to flex and just trying to connect my db2 database with flex using coldfusion. I dont find any error in the sql querry im using. cfquery datasource=DSFORCF INSERT INTO SPFLEX.M_BRAND_DETAILS

RE: [flexcoders] Flex 2.0 Tree control dataprovider problem.

2005-12-26 Thread Jonas Windey
No luck, if I use event.result.node.node, I get a flash player 8.5 warning stating: TypeError: Error #1010: undefined has no properties. at PixcoLabs/__catWS_result() at flash.events::EventDispatcher/dispatchEvent() -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Would this make a program secure

2005-12-26 Thread nostra72
Do you use an http:service tag to store a password? Is this in all of your opinions the best way to do it? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] Would this make a program secure

2005-12-26 Thread Tracy Spratt
The mx:HTTPService tag is simply a way to establish a connection with some server-based data. You cant store anything in it. You could use the middle tier to store a list of the valid user/password combinations, then use HTTPService to send what the user enters to the middle tier, which

RE: [flexcoders] Flex 2.0 Tree control dataprovider problem.

2005-12-26 Thread Tracy Spratt
In 1.5, there were issues with whitespace in the xml causing unexpected nodes to display in the tree. The 1.5 fix is to tell the parser to ignore whitespace. Can you remove the linefeeds from the xml for testing? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Error executing database querry

2005-12-26 Thread Tracy Spratt
I don't do CF, but that error does not sound like it is related to flex. Can you get your cfquery to display in a normal browser page? Or a cf generated test page? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vmlr123 Sent: Monday,

Re: [flexcoders] How to embed XML in AS3?

2005-12-26 Thread Stanislav Zayarsky
I want to konw how to embed XML in AS2? Is xml MIME type? Let's try the next thing: create XML element in mxml and before this set in flex-config.xml file keep-generated-astrue/keep-generated-as. and then compile mxml. Then open generated *.as file and see what is there. From there we can take

Re: [flexcoders] Would this make a program secure

2005-12-26 Thread nostra72
Ok so what your saying is I use the tag to connect to the server. What I do is I store the information on a database on the server. I know you do not store a password with the HTTPService tag but what I want to know is do you use it to make information secure? -- Flexcoders Mailing List

[flexcoders] Nested faceless components. keeping IDs and DataBinding

2005-12-26 Thread Aldo Bucchi
Hi all, It would be great to have IDs and databinding available to faceless data structures. Unfortunately, there are some restrictions that apply to faceless components. Is there any (hacky) way to declare a nested faceless component in an MXML document and assign a document scoped ID to it ??

Re: [flexcoders] Error executing database querry

2005-12-26 Thread Tariq Ahmed
One of the practices I've been using in Flex development using CF is to build a function test page that can be used to test functions in the CFC's that your Flex app will be calling. This makes it easier when debugging to verify if everything on the CF side is good and get the detailed CF

[flexcoders] DataGrid with colspans

2005-12-26 Thread Mohanraj Jayaraman
Hi, I am trying to create a DataGrid with the following structure Colspaned Grid | Col B | Col A | Col B1 | Col B2 | Col B3 | Clicking on the bottom

RE: [flexcoders] Error executing database querry

2005-12-26 Thread Tracy Spratt
Yeah, if you can get CF to display or trace or log the final, evaluated SQL string, you can copy that and try it directly against the database using Query Analyzer or some other database query tool. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] How to embed XML in AS3?

2005-12-26 Thread JesterXL
E4X in AS3 allows true embedded XML, like so: var some_xml:XML = somexml/some; AS2 doesn't support that format, so you could do: var some_xml:XML = new XML(somexml/some); or: var some_xml:XML = new XML(); some_xml.parseXML(somexml/some); or use the MXML mx:XML tag which will embed XML.

[flexcoders] Re: Would this make a program secure

2005-12-26 Thread Dave Wolf
Here is a little mini review of how authetication works in a J2EE container. Authentication: Authentication is the act of supplying credentials to the server to establish your identity. In the J2EE world authentication is initiated by a challenge from which the client provides a response. A