[flexcoders] how to forbid pasting text into a textArea£¿

2005-09-20 Thread xiankevin2005
hi all, i forgot this question right now..i have to force the user to type the text manually rather than using the paste command from the context menu,or merely pressing ctrl+v to paste the text that in the clip board.is it possible? any prompt would be appreciated.. thanks! kevin

[flexcoders] 2 problems about textArea

2005-09-20 Thread xiankevin2005
hi all, there're 2 problem about textArea confused me.. 1: where set a html text for a textArea,then print the textArea.text property in the trace window,what is displaying is the same with the htmlText property. but sometimes,the result is correct without any html tags..why?

[flexcoders] Datagrid cell edit.

2005-09-20 Thread Omar Ramos
Hi All, Anyone knows how to detect when a cell on a editable datagrid changes value? I know I can use value committed but I can not access that specific cell. Anyone knows how to do this? Thanks. Omar Ramos System Developer -- Flexcoders Mailing List FAQ:

[flexcoders] Re: doLater and deletePopUp with Cairngorm

2005-09-20 Thread fowleryj
Thanks for all the help. =) It turns out this solution (http://groups.yahoo.com/group/flexcoders/message/17858) and the one shown 4/5 of the way down this page (http://www.jessewarden.com/archives/flex/) is exactly what I needed, just in case someone else is having similar issues. --- In

RE: [flexcoders] namespace problems

2005-09-20 Thread Husain Kitabi
Hi Tracy Tks again for your email. The problem seems to go off temporarily only to come back again! Btw, my still searching for my second issue: I have one more problem rising here. How wouldi call my value object inmy command or delegate class from an accordion in a stack. Regs Husain Tracy

RE: [flexcoders] Remote objects and when they exist

2005-09-20 Thread Peter Farland
isAdmin is a function... So you need to use parentheses () to invoke it, even when there are no arguments. public function loadPerms():Void { srvPermissions.isAdmin() } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: doLater and deletePopUp with Cairngorm

2005-09-20 Thread Allen Manning
I thought it was an issue with un-registering view helpers. Ok cool. Best, Allen www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fowleryj Sent: 20 September 2005 14:57 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] Communication betwen two .as files

2005-09-20 Thread nostra72
How do you have an mxml file that has two .as files and one .as file has a function in it that calls the method in the other .as file. Let me show you what I want to do, here is the mxml file What I want to do is to have someone press the testouttwo button then have it call the acivatetwo()

Re: [flexcoders] Datagrid cell edit.

2005-09-20 Thread Jim Laing
From http://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/DataGrid.html#events cellEdit - Broadcast when a cell's value has been changed via a cell editor. Only broadcast if the cell/column is editable. The event object contains the properties: - itemIndex Index of the selected item. -

[flexcoders] Re: MACR +3.35

2005-09-20 Thread cnewroth55
no you dont, i lost about 2000.00 in that little deal due to jeremy's screwing around with itthen in class action lawsuit only recovered about 30cents on the dollar... they make great products yes, but they get enough of my monies with out me having to invest in them as well.. ;) --- In

[flexcoders] Flex Upload

2005-09-20 Thread morslay777
Hello, I have a simple JSP that upload into server a file that is received from the other jsp. The parameter that JSP receive is a file from htmlform type. How Can I use flex to send this file to JSP and complete de process? Thank you! Yahoo! Groups Sponsor

RE: [flexcoders] Communication betwen two .as files

2005-09-20 Thread Tracy Spratt
Breaking up code into components like that is good practice. It will be easier to maintain and it will help avoid the 32k issue. At first look the code seems ok. Ill try to run it and see if I see anything. Tracy From: flexcoders@yahoogroups.com

RE: [flexcoders] Communication betwen two .as files

2005-09-20 Thread Gordon Smith
Call parentDocument.tna.press() from the second component. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 8:27 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Communication betwen

RE: [flexcoders] Communication betwen two .as files

2005-09-20 Thread Tracy Spratt
I ran your code and it worked fine, except for one thing: The reference to the press method was not quite right. I changed it from this: tview.press(); //this would require a press method at the application level To this: tview.tna.press(); //this runs the method on the

[flexcoders] Can a Flex app (Tomcat 5) use an asp.net security token

2005-09-20 Thread Tracy Spratt
Title: Can a Flex app (Tomcat 5) use an asp.net security token My Flex app is called in a custom wrapper residing in an asp.net application which is secured by forms (cookie-based) authentication. (NOT NTLM / Windows Integrated). I need to secure the Flex app, but I don't want the user to

[flexcoders] How to pass selected value from combox

2005-09-20 Thread sandip_patil01
Hi All, I am still not able to find how to pass value selected from combox to my java method. Here what I done, I have my combo box populated with data retrived from database as mx:ComboBox id=item dataProvider={listInfo} where listInfo is populated with records from database. Let say with

[flexcoders] dependency validation

2005-09-20 Thread Doodi, Hari - BLS CTR
Hi All, I am new to validations. I have a situation where in I have to validate user input such that if user enter FirstName then user must enter LastName. This should took place only when user click saveButton. I was asked to do custom validation class for this. Can some one help

[flexcoders] How to disable tabNavigator if two tabNavigator there

2005-09-20 Thread sandip_patil01
Hi All, I have two tab navigator. when I type URl in browser i need to display one tab navigator out of two navigator. And when click on let say on a button another tab navigator will be display. Means how to achive this enabling and disabling of tab navigator. Thx in advance. sandip patil

[flexcoders] Flex Licensing / Pricing / handling

2005-09-20 Thread Alex Alex
Hello all and especially MM people, I was told to post a message here about specific license needs. I am currently about to launch a website developed in FLEX. I cannot reveal what exactly this site does, as its unique to date. I will be getting about 2000 logins a day and I need to know an

Re: [flexcoders] Remote objects and when they exist

2005-09-20 Thread David Harris
true that was a typo in my example. I seem to have got it going by doing an init() on bob I *think* this may be something to do with that my root MXML element is mx:Box What do use for the root element if you are writing a MXML file as a class? On 9/21/05, Peter Farland [EMAIL PROTECTED]

[flexcoders] Changing Stylesheets

2005-09-20 Thread Jeremy Crane
Is it possibly to switch stylesheets within an application? I have an application where I want to load the appropriate stylesheet once the user has logged in to the system. So my login screen has a general appearance, that changes to a company specific appearance when logged in.

Re: [flexcoders] Changing Stylesheets

2005-09-20 Thread Tariq Ahmed
Kinda, but not really, depending, but... :) Read this thead: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg04781.html Jeremy Crane wrote: Is it possibly to switch stylesheets within an application? I have an application where I want to load the appropriate

Re: [flexcoders] Flex Licensing / Pricing / handling

2005-09-20 Thread Pushkar Phatak
Alex, Do you know how many concurrent sessions you are planning to have? that is a more critical number. Also how big is each transaction or the nature of transaction, i.e. is it local to the browser or is it making a large number of server calls ? If you troll through the mailing list, you

RE: [flexcoders] How to disable tabNavigator if two tabNavigator there

2005-09-20 Thread Ashish Goyal
Use ViewStack.. Check Flex docs for the ViewStack usage. -Ashish -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Tuesday, September 20, 2005 11:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to

Re: [flexcoders] Flex Upload

2005-09-20 Thread Clint Modien
You can do file upload 2 ways now 1st way... pop up your file upload jsp using the getUrl method in actionscript. or (and slightly more complicated for your situation) 2nd way... using flash player 8 and the new file upload feature...

[flexcoders] Trying to compile with mxmlc - can't find JVM

2005-09-20 Thread Libby
Hello, I am trying to compile all my flex objects using mxmlc and I always get can't find JVM. I have edited my jvm.cfg and jvm.config files to no avail. Could someone with working mxmlc jobs post their versions of these files for me so I can see what dumb mistake I am making? I have j2sdk1.4.2.04

[flexcoders] binary data to render...

2005-09-20 Thread Raymond Camden
If I call a web service that returns a base64 encoded version of a JPG file, is there anyway to actually render the image in Flex? Or must I call a local WS, pass in the data there, have it save and then load it via URL? -- ===

Re: [flexcoders] Flex Upload

2005-09-20 Thread Felipe Tadeus
But, how can I get the file from my pc and sendo to jsp with GetUrl ? On 9/20/05, Clint Modien [EMAIL PROTECTED] wrote: You can do file upload 2 ways now 1st way... pop up your file upload jsp using the getUrl method in actionscript. or (and slightly more complicated for your situation)

Re: [flexcoders] Flex Upload

2005-09-20 Thread Felipe Tadeus
Anypeople, can write a example that use Flash Player 8 and JSP with HTTP Service POST... to send the file? On 9/20/05, Felipe Tadeus [EMAIL PROTECTED] wrote: But, how can I get the file from my pc and sendo to jsp with GetUrl ? On 9/20/05, Clint Modien [EMAIL PROTECTED] wrote: You can do

[flexcoders] Images in datagrid

2005-09-20 Thread Jeremy Crane
Is it possible to place an icon in a datagrid? I have a tree setup that is drag enabled so I can drag the node over to a datagrid ( sort of a favorites container), and I want to populate the datagrid with an icon next to the node name. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Flex Upload

2005-09-20 Thread Kelly
Use the Flash player 8 way. Its badass and its really easy to implement. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien Sent: Tuesday, September 20, 2005 5:35 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] Setting ColumnSeries.showDataEffect at runtime

2005-09-20 Thread Aldo Bucchi
Hi all, I am creating some ColumnSeries dynamically, but I can't set the showDataEffect. The effect is declared in mxml mx:Effect mx:SeriesInterpolate duration=800 minimumElementDuration=100 offset=0 elementOffset=100 name=interpolateFx / /mx:Effect And the series that

RE: [flexcoders] How to pass selected value from combox

2005-09-20 Thread Tracy Spratt
Have you tried something like this in a change event handler: search.participantName= event.target.selectedItem.myValue Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Tuesday, September 20, 2005 2:12 PM To:

RE: [flexcoders] Remote objects and when they exist

2005-09-20 Thread Tracy Spratt
What do use for the root element... That depends on what your mxml component is going to do. To date, there is no faceless mxml component to extend for non-visible work. Box is ok, Canvas is probably the lightest weight component. Do you have to instantiate with AS? You could declare the

Re: [flexcoders] Images in datagrid

2005-09-20 Thread Tariq Ahmed
You need to make a cell renderer. Check out: http://www.richinternetapps.com/archives/48.html Jeremy Crane wrote: Is it possible to place an icon in a datagrid? I have a tree setup that is drag enabled so I can drag the node over to a datagrid ( sort of a favorites

[flexcoders] Re: Flex Upload

2005-09-20 Thread owls_yang
You use getURL to open a jsp, where you would write a form type=file to select a file on your pc and then submit it to server- side. You cannot use getURL to select file or send it to server, flex cannot manipulate your local files on the client side. FYI Owls. --- In

[flexcoders] Undefined weirdness

2005-09-20 Thread Dimitrios Gianninas
Maybe its late and just me, but maybe someone can shed some light on the subject. Here is a debug dump of the AgentVO coming back from the server. As you can see, it contains a field called acctList, which is an ArrayList that contains BasicListItem objects. (Typed Object #0