RE: [flexcoders] Flex-Struts configration

2006-02-07 Thread Srikanth, R
Title: RE: [flexcoders] Flex-Struts configration Hi David, I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html. I have  some doubt. Please clarify the following doubts. 1. In that link they have given a Flex client application. May I know what the extention

Re: [flexcoders] Flex 2 addTreeNode

2006-02-07 Thread Jason Y. Kwong
To answer your specific question about adding nodes...  Since you have an XML dataProvider, the selectedNode property will return an XML object.  You can then use the appendChild() method to add child nodes. eg:   var node: XML = XML(tree.selectedNode); node.appendChild();  On 2/5/06, Brendan M

[flexcoders] On Workstyles

2006-02-07 Thread Pedro Campos
Hi guys, I'm conducting a scientific study on the working styles of interaction designers, information architects and software engineers. Our goal is to characterize transitions in working styles, which is why we ask for your cooperation in answering the following survey. The survey shoul

Re: [flexcoders] Flex 2 addTreeNode

2006-02-07 Thread Hari Kolasani
I think , the Flex 2.0 Tree related classes have been changed quite a bit with the introduction of Hierarchical Data Providers and stuff. Here is some sample .mxml/as  code that worked for me.  Hope this will help. - Hari ***

Re: [flexcoders] New Inline cell renderers

2006-02-07 Thread Manish Jethani
On 2/7/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote: > This may be right in theory, but not in practice. Try this out – in the > dataProvider is a field called "compare" that is always false. Everything > takes 2 clicks. [snip] If you could provide a standalone example (without any web servic

Re: [flexcoders] Cairngorm2 Store Example ?

2006-02-07 Thread Fernando Lobos
Hi , i job in project with Flex , RO and sql server 2000 , i used the ODBC JDBC Drivers to conect RO with sql server 2000 , The cuestion is as it is the best JDBC Drivers for sql server (jrun JDBC, Microsoft sql server JDBC) and the most important free !! -- Flexcoders Mailing List FAQ: h

Re: [flexcoders] Control with focus when application starts

2006-02-07 Thread Manish Jethani
On 2/7/06, tobiaspatton <[EMAIL PROTECTED]> wrote: [snip] > What it does is this: when the application starts, 'ti1' is drawn > with a focus ring, as though it had focus, but it does not receive > keyboard events. If I hit Tab once, the browser's "location" text > edit field is highlighted. The

Re: [flexcoders] Change in Panel Styles

2006-02-07 Thread Manish Jethani
On 2/7/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote: > In Flex Alpha, setting the panel marginLeft and marginRight to 0, resulted in > the side borders from the header being gone. > > Anyone know how in Beta to get rid of the side borders that come from the > header of a Panel? In Beta 1, th

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
Thanks for the link. Will dig around in Flex 2.0 :-)   - superabe   On 2/7/06, Roger Gonzalez <[EMAIL PROTECTED]> wrote: Nope, just 2.0.  For 1.5, all you could really do was to share commonclasses in RSLs between the application and loaded "mini-apps".  See my RSL article on devnet for details.

RE: [flexcoders] Cairngorm2 Store Example ?

2006-02-07 Thread Steven Webster
Tim, The priority for Cairngorm 2 was to give you guys a build that you could begin to work with in your own examples. We achieved that the day after beta 1 was made available to you. The *concepts* have not changed between Cairngorm 0.99 and Cairngorm 2.0 - rather the implementation of the fram

[flexcoders] Cairngorm2 Store Example ?

2006-02-07 Thread sufibaba
Hi List, Does anyone know if or when Cairngorm 0.99 Store will be updated to Cairngorm 2. As I understand it, the changes from 0.99 to version 2 is quite substantial yet the only substantial best practice example is the Cairngorm store, which does not work for Flex2. Perhaps migrating the Cairng

[flexcoders] Control with focus when application starts

2006-02-07 Thread tobiaspatton
Hello; I'm trying to find a way to give a particular field focus when the application starts. The code that I think should work is at the bottom of this message. What it does is this: when the application starts, 'ti1' is drawn with a focus ring, as though it had focus, but it does not receiv

RE: [flexcoders] Does Cairngorm work at all with the new flex2 coldfusion adapter.

2006-02-07 Thread Steven Webster
Hey, Further to Matt Chotin's post, most of the technical members of the Adobe team are in San Jose at an internal summit right now, so we're not responding to emails in our usual fashion. I personally don't have an example of integrating Cairngorm 2 and Flex 2 with the Coldfusion adapter; see

[flexcoders] Change in Panel Styles

2006-02-07 Thread Jonathan Miranda
In Flex Alpha, setting the panel marginLeft and marginRight to 0, resulted in the side borders from the header being gone. Anyone know how in Beta to get rid of the side borders that come from the header of a Panel?   _ Jonathan Miranda Flexibl

RE: [flexcoders] Cairngorm 2 event question.

2006-02-07 Thread Alex Uhlmann
Hi Tim, It depends what the relationship of your two MXML files are to your application. In general, when building reusable view and business components, I would not suggest using Cairngorm in them. Think about Cairngorm as the glue of your application components. It does not relieve you on build

RE: [Norton AntiSpam] [flexcoders] setting a z-index

2006-02-07 Thread Sauro, Nick
Ah, I guess if I waited a tad longer I would of found it J  (slowly burning out hehe)   Thanks for pointing that out, that’s gold!!   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Tapper Sent: Tuesday, February 07, 2006 6:09 PM To: flexcoders@yah

Re: [Norton AntiSpam] [flexcoders] setting a z-index

2006-02-07 Thread Jeff Tapper
In the flash player the z-index is referred to as depth. take a look at docs for getDepth() swapDepths() etc. However, if you are running flex 2, take a look at the PopupButton class, this may provide a lot of what you are trying to do. At 05:59 PM 2/7/2006, you wrote: >Hey everyone, I'm tryin

[flexcoders] setting a z-index

2006-02-07 Thread Sauro, Nick
Hey everyone, I’m trying to create a customized sort of ComboBox.   Essentially it’s a button, that when clicked, will set visible a list directly below it(using some kind of effect, probably a resize from 0-x).  I could use a combobox, but the appearance of this component is way diffe

[flexcoders] Cairngorm 2 event question.

2006-02-07 Thread sufibaba
Hi all, Situation: form1.mxml ( contains a combobox) form2.mxml ( contains a listbox) When the form1 combobox is selected, form2 listbox should change based on form1 combobox selection. With the new Cairngorm2, what would be a best practice approach to handle the above situation. Cheers,

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread Carlos Rovira
Hi Roger,Modularize large applications is really needed so I'll be waiting for your article because that always was a veryproblematic task in Flash based applications. Hope I should not wait to much for the article! Thanks in advance! : ) 2006/2/7, Roger Gonzalez <[EMAIL PROTECTED]>: Nope, j

[flexcoders] Re: Flex/Coldfusion connectivity test app

2006-02-07 Thread sufibaba
Thanks for the excellent reply. You saved the day. We do have CF working with Flex. There's also the Phones example on the Adobe Labs site that shows this connectivity. All of this is working fine. The challenge we were having was with the new version of Cairngorm. We have been using ARP

[flexcoders] Re: Tree dataprovider refresh

2006-02-07 Thread Karl
I think this was what Stacey was saying, but can you just update the label property of the objects in the dp instead of the object its self? If nothing else works naturally, you could walk the list of tree items to find out which ones are open. You could have two trees that you swap whenever

RE: [flexcoders] Does Cairngorm work at all with the new flex2 coldfusion adapter.

2006-02-07 Thread Benoit Hediard
Yes, it works, but first of all, you need to test your Flex/ColdFusion connectivity (without Cairngorm). See the message I just sent few minutes ago, with a sample app. Then, to use your service CFCs in a cairngorm application, you just need to add the RemoteObject definition in your ServiceLocato

Re: [flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Anatole Tartakovsky
    Simplest way to pinpoint the problem is to keep generated files and review generated code. You can change the code in click="" to click="mx.utils.Delegate.create(this, click)" if you think that it fails context recognition. In most cases we would just delegate processing to container w

Re: [flexcoders] Re: how to improve performance when calling a Java remoteobject?

2006-02-07 Thread Oscar . Cortes
I guess we are confused because the Onresult should only run when results are available. We added a timer to see when they are available, and they are in the first 2 or 3 seconds of the 10-15 that it actually takes to see the clock go away. If we ask for the length of the result, it is actually ava

Re: [flexcoders] AS2: is it Pass By Reference?

2006-02-07 Thread Brian Lesser
Hi, Technically all values are passed by value. However, objects and array values are references. So when you pass an object or array the reference value is copied into the local variable. Yours truly, -Brian JesterXL wrote: >Primitives are pass by val, whereas all complex types are pass by re

RE: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread Roger Gonzalez
Nope, just 2.0. For 1.5, all you could really do was to share common classes in RSLs between the application and loaded "mini-apps". See my RSL article on devnet for details. http://www.macromedia.com/devnet/flex/articles/rsl.html No real estimates of timing. Everything is actually already in 2

[flexcoders] Re: how to improve performance when calling a Java remoteobject?

2006-02-07 Thread Dmitry Miller
Oscar, hi I don't think that you can improve RemoteObject performance. I had a similar problem and I ended up paginating the data. i.e. return the following object { items:Array; hasMoreRecords:Boolean; } Hopefully this helps --- Dmitry --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] w

[flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Kevin Ewok
Anatole- Thanks for your response. I have traces in both my 'setValue() and 'arrowClick' methods. I see the trace statements for both the setValue(...) and arrowClick(event) methods when the com.StatusPicker cellRenderer is applied to the mx:Datagrid mxml tag. However, for the dynamic datagrid,

Re: [flexcoders] AS2: is it Pass By Reference?

2006-02-07 Thread JesterXL
Primitives are pass by val, whereas all complex types are pass by ref.   String & Number == pass by val Date, Array, Object, etc. == pass by ref   When in doubt, assume by ref.   - Original Message - From: Sauro, Nick To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 200

Re: [flexcoders] Horizontal DataGrids

2006-02-07 Thread Sreejith Unnikrishnan
public function horizontalDataGrid() {     if (1.5) {         refer to http://www.richinternetapps.com/archives/000101.html         } else {             refer to property columnCount and set it to 1         }         use cellRenderer to give the header look'n'feel for the first column    

Re: [flexcoders] datagrid.selectedIndex not correct in cellPress - flex2

2006-02-07 Thread Manish Jethani
On 2/7/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > Following from my previous post about datagrid cellpress event. i'm > checking the selectedIndex property. the rowIndex is correct but the > selectedIndex is incorrect. its always my previous rowIndex Yes, because the selectedIndex property is updat

[flexcoders] Horizontal DataGrids

2006-02-07 Thread Jonathan Miranda
There any easy way to make a datagrid with headers on the left and data being listed in columns and not rows?   _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see your pieces."  

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
Thanks Roger.   That would be really helpful. This is something I was quite familiar with while architecting pure Flash based RIA's but has been somewhat of  mystery when it came to Flex.   The stuff you will be posting to labs, would that apply to Flex1.5 as well?   Also (not putting pressure a

[flexcoders] AS2: is it Pass By Reference?

2006-02-07 Thread Sauro, Nick
Does anyone know?  From what I’ve seen, it seems not, but am I wrong? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] how to improve performance when calling a Java remoteobject?

2006-02-07 Thread Oscar . Cortes
We are doing some searches using a RemoteObject and displaying the result on a grid. We noticed that when getting more than 2000 records aprox, it was taking some time( between 10 and 15 seconds) before they were displayed . At the beginning we thought that it was the Grid which was slowing dow

RE: [flexcoders] Flex/Coldfusion connectivity test app

2006-02-07 Thread Benoit Hediard
This sample app also shows how CFC/AS3 VO mappings (or remote class alias) works. Have fun! Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Benoit Hediard Envoyé : mardi 7 février 2006 20:37 À : flexcoders@yahoogroups.com Objet

[flexcoders] Flex/Coldfusion connectivity test app

2006-02-07 Thread Benoit Hediard
Since some people seems to have issues to use the Flex/ColdFusion connectivity, here is a sample app to test your connectivity. ColdFusion / Server side Save the following value object CFC in {wwwroot}/com/mycompany/myapp/model/TestVO.cfc

[flexcoders] Bug with Tree disclosure icon

2006-02-07 Thread Jason Y. Kwong
It worked fine in the Alpha, but with Beta 1, setting a Tree's disclosure icon makes the icon unresponsive to mouse clicks.  My example: Now when you click on the disclosure icon, the node does not expand.  My icon is a simple 13x13 png that's filled with all blue. -- Flexcoders Mailing Li

[flexcoders] Solved: Can not find named service

2006-02-07 Thread Stacy Young
There was an old flash mx gateway jar being picked up in the build process. Eek     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Tuesday, February 07, 2006 12:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can n

Re: [flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Anatole Tartakovsky
I am using both mxml and AS - works in both. Try to use trace in setValue to verify if the trace output is sent. Also, I am not sure what you mean by saying that you add mxml dynamically - it is either referenced in the code statically with var _fake:com.StatusPicker=null; or has to be in R

RE: [flexcoders] New Inline cell renderers

2006-02-07 Thread Jonathan Miranda
  Just wanted to say I didn’t mean to come across as rude saying “this may be right in theory”. Sorry about that.   _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see your piece

Re: [flexcoders] Re: Tree control in Flex 2 Beta 1

2006-02-07 Thread Jason Y. Kwong
Hari,Thanks for the code sample.  It has given me a couple of ideas.Cheers! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Re: Tree control in Flex 2 Beta 1

2006-02-07 Thread Jason Y. Kwong
Michael,Thanks for your timely response.  It does clear up a few things.  My comment about the XML approach being more supported was an (admittedly) obscure reference to my own experiments with the ITreeDataDescriptor interface.  It again goes back to visually updating the Tree.  If the dataProv

RE: [flexcoders] New Inline cell renderers

2006-02-07 Thread Jonathan Miranda
This may be right in theory, but not in practice. Try this out – in the dataProvider is a field called “compare” that is always false. Everything takes 2 clicks.                       

RE: [flexcoders] New Inline cell renderers

2006-02-07 Thread Jonathan Miranda
And as soon as I say that, I get another problem. Scrolling down the datagrid randomnly checks and unchecks the boxes.     _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see yo

Re: [flexcoders] New Inline cell renderers

2006-02-07 Thread Manish Jethani
On 2/7/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote: > Awesome man, thanks - saved me an hour of banging my head on the table. > I've no clue why your example and mine cause a different amount of > clicks needed though. If you use "editorClass", it needs two clicks - one for activating the cell

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Sreejith Unnikrishnan
It does create the HTML tag. But the value is the file-name minus the extension.   Sree - Original Message - From: Abdul Qabiz To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 7:12 PM Subject: Re: [flexcoders] pageTitle bu g? Ok, check out t

RE: [flexcoders] New Inline cell renderers

2006-02-07 Thread Jonathan Miranda
Awesome man, thanks - saved me an hour of banging my head on the table. I've no clue why your example and mine cause a different amount of clicks needed though. _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let

RE: [flexcoders] Tree dataprovider refresh

2006-02-07 Thread Stacey Mulcahy
Could you try perhaps setting a bindable prop for the labels? I assume you’re done dataProvider.refresh() and its closes the nodes… Or you could look into the XMLListCollection classes and do a notifyItemUpdate to the dataprovider if you are just changing a prop on the existing DP rather

Re: [flexcoders] Flex 2.0 beta TextArea question

2006-02-07 Thread Manish Jethani
On 2/7/06, Jonas Windey <[EMAIL PROTECTED]> wrote: > > How would I set the scrollPosition of a textarea to it's maximum position? > I'm trying to create an msn-like socket application, and need to have my > textArea scrolled to the lowest position. > > I tried txtLog.vPosition = txtLog.maxVPosi

[flexcoders] Tree dataprovider refresh

2006-02-07 Thread Ghislain Simard
I am trying to maintain the state of open nodes in a tree control after the dataprovider has changed. In a multilingual application tree data is stored in xml files, per language. When the user toggles the language a new xml file is loaded for the selected language, unfortunately the tree con

Re: [flexcoders] New Inline cell renderers

2006-02-07 Thread Manish Jethani
On 2/7/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote: > Well I'm closer but no cigar yet. I can get the dataProvider to update with > the checkbox click, but each checkbox click requires 2 clicks! One to get > focus in the box and one to actually change the checkbox… There are two ways to set

[flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Kevin Ewok
I have traces at the beginning of my 'arrowClick' method which is linked to the click event of the button. When the mxml file is applied to the mx:DataGrid cellRenderer...I see all traces. However when I add the mxml file dynamically, I do not see the trace of my 'arrowClick' function. I'm creatin

Re: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread JesterXL
Deferred instantiation, Loader like you said, or createChild/removeChild.   - Original Message - From: superabe superabe To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 12:37 PM Subject: [flexcoders] Split a single Flex application into parts Hi List,   I have a

Re: [flexcoders] Set Scroll Position

2006-02-07 Thread Manish Jethani
On 2/7/06, More García <[EMAIL PROTECTED]> wrote: > Anyone know how can i do to set the vertical position of a tilelist´s > scollbar to 0? I want to return the scrollbar to the top when user > click a button. > > I have tried with resetScrollPositions(), vPosition=0, but it´s seems > that dont wor

RE: [flexcoders] Split a single Flex application into parts

2006-02-07 Thread Roger Gonzalez
I'll be posting some stuff (probably to labs) to make all this much simpler, but basically the best way to do it at the moment is to roll some pure Actionscript classes to act as a loader, and to hook in to the deferred instantiation mechanism to pull the appropriate child SWF in late. The tricky

Re: [flexcoders] Calendar Drop Down (Flex 1.5)

2006-02-07 Thread Manish Jethani
On 2/7/06, Jaime Hemmett <[EMAIL PROTECTED]> wrote: > I'd like to put a datechooser in a drop down or popup at the top of my > application in the control bar for people to pick the date. [snip] You can pretty much use it as a pop-up with PopUpManager. var popUp = PopUpManager.createPopUp(DateC

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Manish Jethani
On 2/7/06, Abdul Qabiz <[EMAIL PROTECTED]> wrote: >Ok, check out the html file it generates. Does it have tag in it > with the expected value. It doesn't in Flex Builder 2.0 Beta 1. Bug. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Sear

[flexcoders] Does Cairngorm work at all with the new flex2 coldfusion adapter.

2006-02-07 Thread sufibaba
Hi, We've posted a few questions about cairngorm alpha and coldfusion and so far no replies. ( no replies, as we have learned from our past experiences with cairngorm means that there might be problems... however, it could also be that everyone is so busy) Does anyone have experience with Cairn

[flexcoders] Re: Problem to consum Complex return type from webservice

2006-02-07 Thread thunderstumpgesatwork
I had this same issue. See the thread here: http://groups.yahoo.com/group/flexcoders/message/28607?threaded=1 I don't know if they're planning any fixes, but for now my solution is to use Java RemoteObjects with Enterprise Services... I am able to return the org.w3c.dom.Document XML back now, so

[flexcoders] Split a single Flex application into parts

2006-02-07 Thread superabe superabe
Hi List,   I have a potential use case where my top level Application consists of a ViewStack that might have around 10 children that are themselves composite components with multiple views It seems pretty certain that if I create one single Flex (Flex 1.5) application, I would most probably run

[flexcoders] Can not find named service

2006-02-07 Thread Stacy Young
Just started a new project, app server is Weblogic and application is deployed as an EAR. Trying to get a simple remote call working and I'm getting an exception: "No service named serviceSystem is known to Flash" 1. Named service is configured in flex-config.xml 2. The class it points to exists

RE: [flexcoders] Re: Flexunit for Flex 2

2006-02-07 Thread Steven Webster
Chris, The iteration::two flex unit codebase is used internally within Macromedia to test some of the Flex appmodel, and has been converted into ActionScript 3.0 for internal use. This is going to be released *imminently* on Adobe Labs. Though the initial port of the iteration::two codebase to A

[flexcoders] Flex 2.0 beta TextArea question

2006-02-07 Thread Jonas Windey
Hi,   How would I set the scrollPosition of a textarea to it’s maximum position? I’m trying to create an msn-like socket application, and need to have my textArea scrolled to the lowest position.   I tried txtLog.vPosition = txtLog.maxVPosition; and txtLog.vPosition = txtLog.textFiel

Re: [flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Anatole Tartakovsky
One side note - all "dynamic" classes have to be statically referenced unless RSL are used. - Original Message - From: bhaq1972 To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 11:08 AM Subject: [flexcoders] Re: cellRenderer not recognizing cli

[flexcoders] datagrid.selectedIndex not correct in cellPress - flex2

2006-02-07 Thread bhaq1972
Following from my previous post about datagrid cellpress event. i'm checking the selectedIndex property. the rowIndex is correct but the selectedIndex is incorrect. its always my previous rowIndex http://www.macromedia.com/2005/mxml"; backgroundColor="#FF">

[flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread bhaq1972
Kevin, > _dgc.cellRenderer = "com.StatusPicker"; Are u sure this should be in double quotes. when i did a dynamic datagrid with a cellRenderer, i never used double quotes -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http

RE: [flexcoders] New Inline cell renderers

2006-02-07 Thread Jonathan Miranda
Well I’m closer but no cigar yet. I can get the dataProvider to update with the checkbox click, but each checkbox click requires 2 clicks! One to get focus in the box and one to actually change the checkbox…and I can’t figure out how to center the Checkbox now since it’s not in an HBox an

[flexcoders] Re: Set Scroll Position

2006-02-07 Thread More García
Sorry, i don´t know why, but with myTileList.resetScrollPositions(), the scrollbar return to the the top. Sorry, and thanks for you fast response. --- In flexcoders@yahoogroups.com, "Jason Hawryluk" <[EMAIL PROTECTED]> wrote: > > Try mytilelist.selectedIndex = 0; or somthing similar, i have no

[flexcoders] Re: how to loop thru mx.events.DataGridEvent (flex 2)

2006-02-07 Thread bhaq1972
Thanks. this is very useful as was the previous suggestion (using ObjectUtil). --- In flexcoders@yahoogroups.com, "Matt Horn" <[EMAIL PROTECTED]> wrote: > > You can try the describeType() method. See if this does what you want: > > > http://www.macromedia.com/2005/mxml";> > >

Re: [flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Anatole Tartakovsky
Kevin,     I am a bit confused. Do you have other traces in the application? Can you see them? Here is tracer that I use : http://ajaxmaker.com/xpanel     We are using cellrenderers within dynamic datagrids (layout persisted in DB) all the time - no issues there - they do have mouseDown an

Re: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-07 Thread Chris Velevitch
On 2/8/06, Stephen Gilson <[EMAIL PROTECTED]> wrote: > The idea of a single table that shows all the class elements, both > defined in the class and inherited, is a bit daunting. For example, the > table for the DataGrid would contain over 200 rows, probably closer to > 250 rows. I appreciate that

RE: [flexcoders] Re: Flexunit for Flex 2

2006-02-07 Thread Matt Chotin
It should be showing up on Labs sometime soon. We're all at an engineering summit this week so I won't imagine it up by Friday, but we did do a port of FlexUnit to AS3 and the Developer Relations team took ownership of it and has planned on getting it up soon. Matt -Original Message- Fro

[flexcoders] Problem to consum Complex return type from webservice

2006-02-07 Thread durieuxnicolas
Hi In Flex 1.5, it was easy to consum a webservice method which return complex type like .NET Dataset, Vector in Java, custom class... Now with Flex 2.0, Flex can't parse this type of data (I have this message: Element http://www.mysite.com/webservices/ws/:myTypeResponse not resolvable) Do you

[flexcoders] Calendar Drop Down (Flex 1.5)

2006-02-07 Thread Jaime Hemmett
I'd like to put a datechooser in a drop down or popup at the top of my application in the control bar for people to pick the date. I saw an example in the archives of someone using a datechooser in a javascript popup window that uses a LocalConnection to send the information between them. h

RE: [flexcoders] Re: how to loop thru mx.events.DataGridEvent (flex 2)

2006-02-07 Thread Matt Horn
You can try the describeType() method. See if this does what you want: http://www.macromedia.com/2005/mxml";> import mx.utils.ObjectUtil; import flash.util.*; public function printObject(e:MouseEvent) { // Get the ev

[flexcoders] Re: cellRenderer not recognizing click events for Custom Mxml Cell Renderer

2006-02-07 Thread Kevin Ewok
Hello all- I've spent the last day now trying to get a handle of the dispatched event from the cell renderer to the mxml file and I still cannot do it. I've tried several of the techniques in Chapter 16 of the "Developing Rich Clients" Flex book and still no luck. What boggles me is that the 'c

RE: [flexcoders] shared object security with flex 1.5

2006-02-07 Thread Jason Hawryluk
Your logging in people automatically ? This is an intranet correct? If not you may want to rethink your strategy. If it's an "intranet" then what about people changing computers, I'm sick someone using my cpu etc.., oop's. If "internet" think open door cyber cafe, or welcome to my work ki

RE: [flexcoders] Set Scroll Position

2006-02-07 Thread Jason Hawryluk
Try mytilelist.selectedIndex = 0; or somthing similar, i have not looked at this so if that does not work report back here... -Message d'origine-De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de More GarcíaEnvoyé : mardi 7 février 2006 13:44À : flexco

RE: [flexcoders] shared object security with flex 1.5

2006-02-07 Thread Robert Brueckmann
Great idea Taka!  I will indeed try that.  Thanks so much!  I can’t believe I didn’t think of that…sometimes the most obvious is right in front of you…thanks for your help!   robert l. brueckmann vice president merlin securities 595 madison avenue new york, ny 10022 p: 212.822.482

RE: [flexcoders] Panel resize effect with dissolve effect for children

2006-02-07 Thread Sergey Kovalyov
Thanks to all, but I have already found it at http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/ht ml/wwhelp.htm?context=Flex_Documentation&file=2228.htm -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov

[flexcoders] Set Scroll Position

2006-02-07 Thread More García
Hi. Anyone know how can i do to set the vertical position of a tilelist´s scollbar to 0? I want to return the scrollbar to the top when user click a button. I have tried with resetScrollPositions(), vPosition=0, but it´s seems that dont works. Thanks to any help. -- Flexcoders Mailing Li

[flexcoders] Re: how to loop thru mx.events.DataGridEvent (flex 2)

2006-02-07 Thread bhaq1972
Thanks for your suggestion, but its giving me a 'StackOverflowError' for this example. any ideas? --- In flexcoders@yahoogroups.com, Teoti Graphix <[EMAIL PROTECTED]> wrote: > > Hey, > > import mx.utils.ObjectUtil; > > trace(ObjectUtil.toString(evt)); > > or... > > out.text += "\n" + Object

RE: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-07 Thread Stephen Gilson
Hi Chris, We have a few ideas on how to better show the inherited items. One idea is to show all inherited items, for example methods, in a single summary table rather than as a collection of tables that list each inherited item. The summary table would look like the summary table for the methods

Re: [flexcoders] New Inline cell renderers

2006-02-07 Thread Dominick Accattato
There are CellRenderer's and CellEditors.  A cell renderer just adjusts the display from the default textinput to a checkbox etc... However, if you change the cellrenderer, that won't have any affect on the underlying dataprovider. You need to set the cellrenderer's isCellEditor property to true

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Abdul Qabiz
Ok, check out the html file it generates. Does it have tag in it with  the expected value.I think, when you build it should ideally create html file with same title...If  might be a known issue, still send your feedback. -abdulOn 2/7/06, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote:

[flexcoders] Panel resize effect with dissolve effect for children

2006-02-07 Thread Sergey Kovalyov
Hi All! Is there any comprehensive tutorial or code samples on how to implement panel resize effect with dissolve effect for children. The best example of what I would like to do is http://flexapps.macromedia.com/flex15/flexstore/flexstore.mxml Sergey. -- Flexcoders Mailing List FAQ: http://gr

[flexcoders] DataGrid data increases memory usage in firefox...

2006-02-07 Thread rohitrjpm
I am using firefox (version 1.5) as the browser.The memory usage increases constantly if DataGrid loaded the data through Cell Renderers(implemented through UI Component). The memory usage increases even if I donnot do any actions on the Grid. Here is the reading for Memory usage. 53572

Re: [flexcoders] Re: Flexunit for Flex 2

2006-02-07 Thread Chris Velevitch
On 2/8/06, Clint Modien <[EMAIL PROTECTED]> wrote: >Here is a response from macromedia last august about unit testing... > From: Todd Rein <@macromedia.com >Mailed-By: returns.groups.yahoo.com > We can't announce any details yet, but I can let you know that we are working > on functional UI te

Re: [flexcoders] Re: Flexunit for Flex 2

2006-02-07 Thread Clint Modien
Here is a response from macromedia last august about unit testing... Todd Rein <@macromedia.com >to flexcoders Hide options   8/16/05 From: Todd Rein <@macromedia.com >Mailed-By: returns.groups.yahoo.com Reply-To: flexcoders@yahoogroups.co

Re: [flexcoders] how to loop thru mx.events.DataGridEvent (flex 2)

2006-02-07 Thread Teoti Graphix
Hey, import mx.utils.ObjectUtil; trace(ObjectUtil.toString(evt)); or... out.text += "\n" + ObjectUtil.toString(evt); Does a WONDERFUL job. You will never look at objects the same ;-) Peace, Mike On 2/7/06, bhaq1972 <[EMAIL PROTECTED]> wrote: i have cellPress event in my DataGrid. The f

[flexcoders] Re: Flexunit for Flex 2

2006-02-07 Thread Chris Velevitch
Isn't anyone doing unit testing in Flex 2? On 2/6/06, Chris Velevitch <[EMAIL PROTECTED]> wrote: > Is there a version of Flexunit for Flex 2 or will Flexunit 0.9 work with Flex > 2? > > > Chris > -- > Chris Velevitch > Manager - Sydney Flash Platform Developers Group > www.flashdev.org.au > --

Re: [flexcoders] TabNavigator Tab Align - Bug?

2006-02-07 Thread Sreejith Unnikrishnan
Yes, 2.0. - Original Message - From: Manish Jethani To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 4:43 PM Subject: Re: [flexcoders] TabNavigator Tab Align - Bug? On 2/7/06, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote:> The TabNavigator

[flexcoders] how to loop thru mx.events.DataGridEvent (flex 2)

2006-02-07 Thread bhaq1972
i have cellPress event in my DataGrid. The following code doesnt work. can someone tell me the correct syntax private myCellPressEvnt(event:DataGridEvent):void { for(var obj1:Object in event) { //out is a out.text += obj1 + event[obj1] + "\n"; } } TIA bod -- Flexcoders Mail

Re: [flexcoders] TabNavigator Tab Align - Bug?

2006-02-07 Thread Manish Jethani
On 2/7/06, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote: > The TabNavigator does not seem to respect the horizontalAlign style. > > Tried following sample to align tabs to the right. [snip] 2.0? Sounds like a bug. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/fi

[flexcoders] TabNavigator Tab Align - Bug?

2006-02-07 Thread Sreejith Unnikrishnan
The TabNavigator does not seem to respect the horizontalAlign style.   Tried following sample to align tabs to the right.   http://www.macromedia.com/2005/mxml" xmlns="*" layout="vertical">   Sree -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/f

[flexcoders] problem with player detection and player 8.5

2006-02-07 Thread Paolo Bernardini
I have a problem with the detection of flash player, I had some pages that use the espress installation detection that check for player 8, after installing the player 8.5 when I open those pages it ask me to install the player even if the version that I'm check for is lower then 8.5. This is th

Re: [flexcoders] pageTitle bu g?

2006-02-07 Thread Sreejith Unnikrishnan
Hmm ... I am not seeing anything. :-) Isnt it supposed to display the string on the title bar of the browser? It doesnt :(   Yes, I am using FlexBuilder 2.0   Sree - Original Message - From: Abdul Qabiz To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006

Re: Security risk found in message "[flexcoders] Re: SetEventHandler Limitations?" Contact TAVANT IS Team

2006-02-07 Thread Sreejith Unnikrishnan
Pim, for greater good, please check if your system is infected with the W32 virus! This should hold good for all of us on a public mailing system!   Sree - Original Message - From: pim To: flexcoders@yahoogroups.com Sent: Tuesday, February 07, 2006 9:47 AM Subject

  1   2   >