Re: Ri£º [flexcoders] Flex 2 problem about remoteobject in tomcat

2006-04-25 Thread Peter Blazejewicz
Hello sank, there's someone who already wrote such tuto: http://www.silver-island.com/arts/flex/FDS2.0_on_Tomcat/jms_chat_on_ tomcat.html good luck! :D kind regards, Peter Blazejewicz -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Se

[flexcoders] Re: Dynamic create child in Flex1.5

2006-04-25 Thread bhaq1972
dont forget your component_name has to be the full name, including the folder structure. eg if My_Components sits in a folder called MyComponents then your full name is "MyComponents.My_Component" --- In flexcoders@yahoogroups.com, "sinacapho" <[EMAIL PROTECTED]> wrote: > > Dear all, > >  th

[flexcoders] Re: Flex 1.5 ViewStack child creation

2006-04-25 Thread nahruka
Hi Stanislav, what I'm trying to do is just the opposite: avoid children to be created at the begining. After reading the documentation I can't understand why this is happening... I've put a trace sentence at the initialize property of each child and I've debugged the application. The trace mess

[flexcoders] Re: Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-25 Thread Suzy Lawson
Have you tried debugging? set a breakpoint in your onResult of the Command class and where you explictly set the selectedUser in the model locator. Once that line has passed, you should stop again then check your text box to see if it has the value. I find I get a lot further debugging then

[flexcoders] Flex2b2 - DataGrid bug - using ArrayCollection of ValueObjects as data provider

2006-04-25 Thread Andrea Varga
Hi Here is my vrey simple test: http://virtualro.co.uk/~andi/flex/datagrid/Test1.html View Source is enabled. Conains 2 very simple files. You can see that the first DataGrid works well, the second does not. The only difference between them is the structure of the dataprovder. The first one i

[flexcoders] Re: Autocompletion textfield

2006-04-25 Thread Suzy Lawson
Capho-   Sorry, to elaborate more. You could have a canvas below the text box that by default is set to visible=false...and then appears as data comes back...something like this. Hope this helps get you going http://www.macromedia.com/2003/mxml"> height="50">   --- In flexcode

[flexcoders] [Flex2 Beta2] setting up flex/coldfusion connectivity on j2ee multiserver installations

2006-04-25 Thread Thomas Rühl -akitogo-
hi flexcoders, is there any possibility to get the flex/coldfusion connectivity up and running already with the beta2 versions available from labs? i read in some forums and ben's blog, that this will only be supported in the final version (or possibly later betas)... for that, the install

RE: [flexcoders] Re: Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-25 Thread Robert Brueckmann
Thanks Suzy but my problem isn't with populating a combobox...my combobox of users populates just fine, when I select a user from the list and the user is fetched, the user object whose fields are bound to various textinput fields in my form are not shown...it's only when I 'touch' the file and

Re: [flexcoders] Flex 1.5 ViewStack child creation

2006-04-25 Thread Stanislav Zayarsky
>From Help: Navigator containers such as Accordion, TabNavigator, and ViewStack implement the auto policy by creating all their children immediately, but wait to create the deeper descendants of a child until it becomes the selected child of the navigator container. So if you want to create all

[flexcoders] Re: Autocompletion textfield

2006-04-25 Thread Suzy Lawson
Sho posted a nice example in Flex 2.0. It works pretty much the same way in 1.5. http://weblogs.macromedia.com/sho/archives/2006/04/new_version_of.cfm wrote: > > Dear all, >  is there any help about the autocompletion textfield in Flex > 1.5, basically i want to use web service to r

[flexcoders] Re: How to user setInterval() to call the remoteobject method?

2006-04-25 Thread Suzy Lawson
Or changing the method to like this would work: (notice the parenthesis) function test(){   setInterval(getUser(),3000); } --- In flexcoders@yahoogroups.com, "Joshua Garnett" <[EMAIL PROTECTED]> wrote: > > Try calling setInterval like this,  intervalID = > setInterval(this,"getUser",1); 

[flexcoders] Flex 1.5 ViewStack child creation

2006-04-25 Thread nahruka
I'm using the following ViewStack  within my application: I've been reading about the ViewStack component and found that children (except the first one) are only created when the user explicitly makes an action that causes the selected child to chang

Re: [flexcoders] How to user setInterval() to call the remoteobject method?

2006-04-25 Thread Joshua Garnett
Try calling setInterval like this,  intervalID = setInterval(this,"getUser",1);  Also, in the getUser function add clearInterval(intervalID);--JoshOn 4/25/06, loveewind <[EMAIL PROTECTED]> wrote: Hi All, I have a piece of code below:http://www.macromedia.com/2003/mxml "initialize="test()"> 

RE: [flexcoders] Re: Looping output

2006-04-25 Thread Karl Johnson
When you say loop over components, do you mean loop over existing UI objects? Or do you mean create UI objects? If you are creating, then do something like the following to create a label and/or textbox control for each index of the array returned: For loop {   var newLabel = myVBox.create

[flexcoders] Re: Dynamic create child in Flex1.5

2006-04-25 Thread sinacapho
Dear all, that mean can i do at this way? var component_name = "My_Component"; My_VBox.createChild(mx.utils.ClassUtil.findClass(component_name),undefined); But i fail in using this method>_< . can someone help me? thx capho --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECT

[flexcoders] Re: sandbox issue

2006-04-25 Thread flexlearner
No ! the swf contains just a graphic and i have not used any effects in flash 8 like shadow or blur..etc. --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Does your Flash 8 SWF have AS code that is trying to execute?  That > unfortunately is not allowed (we don'

[flexcoders] force image reload

2006-04-25 Thread Andrea Varga
Hello I have a DataGrid with an ItemRenderer to display images. My DataGrid is binded to an ArrayCollection ( contains the URL to the images) I know that the image file on the server has changed, but the content of the ArrayCollection is always the same (the name of the image files do not ch

[flexcoders] Autocompletion textfield

2006-04-25 Thread sinacapho
Dear all, is there any help about the autocompletion textfield in Flex 1.5, basically i want to use web service to refresh ,can somebody have any resource about that? thx capho -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Sea

[flexcoders] Re: Attaching component dynamically

2006-04-25 Thread flexlearner
yeah understood! thanks a lot Regards Flex Learner --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > No, the Repeater is not a container; you will need to place a > repeater object within a container (I used VBox in the sample, but > any container should do).

Re: [flexcoders] Re: dispatching from an MXML component

2006-04-25 Thread Webdevotion
I think Metadata is what I'm looking for.Thanks for the space bar tip, didn't know that, great feature : )  On 4/25/06, Tim Hoff <[EMAIL PROTECTED]> wrote: Hi,If you click inside the dataGrid tag and press the space bar, you willsee a list of code hinting properties and events, that are availabl

[flexcoders] Re: Flex 2.0 Remote Objects over SecureAMFChannel (HTTPS)

2006-04-25 Thread Steven Toth
Still trying to get this working.  It's been over a week of different configurations and a SecureAMF-only (HTTPS) solution only works on standalone JRun.  Have the guys at Macromedia tested Flex 2 Remoting over HTTPS on anything other than JRun? Thanks, Steven --- In flexcoders@yahoogroups

Re: [flexcoders] Flex2B2 :: backgroundImage problem :: not working

2006-04-25 Thread Michael Schmalle
Matt, thanks That was it. For some reason, Flex isn't copying the .png files into the bin/images/ directory. The odd thing is; I have .ai files with the same names as the 'exported' .pngs f those .ai files. Flex copies the .ai files intot bin/images/ directory but not the actual .png that are

[flexcoders] Sourcesafe for Flex beta 2 / eclipse 3.1x

2006-04-25 Thread Jonas Windey
Hi,   I’m trying to use MS Sourcesafe in our flex application (since CVS isn’t installed on our server), but I’m having some difficulties. I found a plugin that should enable Eclipse 3.1 to use VSS here: http://sourceforge.net/projects/vssplugin/   Is anyone using that plugin succes

[flexcoders] Re: mx:States and databinding issue

2006-04-25 Thread sof4real03
After tracing my code, I'm sure that the event is being propagated, but the button still doesn't become enabled even when the forms are valid. Could it be the issue of creating this state on the component's parent? --- In flexcoders@yahoogroups.com, "sof4real03" <[EMAIL PROTECTED]> wrote: > > Y

[flexcoders] Re: Flex2B2 Problem with XML insertChildBefore

2006-04-25 Thread greenfishinwater
I found another way of achieving what I wanted to do, I used .setChildren. Thank you Andrew --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I haven't tried this but it may need to be > productData.category[0].insertChildBefore(x, y) > > -Original Message---

[flexcoders] Re: How to access the tag name in a tree XML data provider

2006-04-25 Thread greenfishinwater
I forgot to mention that this is using Flex 2 Beta 2 --- In flexcoders@yahoogroups.com, "greenfishinwater" <[EMAIL PROTECTED]> wrote: > > In my tree I use an XML based data provider. An example is: > > >   > >   > > > When a user opens a tree node, I can access an attribute as: > >

[flexcoders] Objects and arrays as treeview datasource

2006-04-25 Thread Jonas Windey
Hi,   I’m trying to fill my treeview with data retrieved from a webservice. I have my resultformat set to default (Object), as e4x or xml doesn’t give the correct result.   Filling a datagrid with the data I retrieve works perfectly, but the problem is when there are nested objects in

[flexcoders] How to access the tag name in a tree XML data provider

2006-04-25 Thread greenfishinwater
In my tree I use an XML based data provider. An example is:         When a user opens a tree node, I can access an attribute as: var n:String = [EMAIL PROTECTED]; How can I access the tag name to find out if it is a category, group or brand etc. Thank you Andrew -- Flexcoder

[flexcoders] Re: Flex2B2 - calling a function in the base class to manipulate a base string var

2006-04-25 Thread bhaq1972
Please ignore. my mistake (noticed it while i was trying to make a testcase) --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Yes, I would expect that to work.  Can you provide a complete testcase? > > -Original Message- > From: flexcoders@yahoogroups.c

[flexcoders] How to user setInterval() to call the remoteobject method?

2006-04-25 Thread loveewind
Hi All, I have a piece of code below: http://www.macromedia.com/2003/mxml"  initialize="test()"> source="net.wind.proxy.UserProxy" >       it seems the setInterval function can't execute remoteobject method, Who has such experience,wait for your help, Thanks -- Flex

RE: [flexcoders] Uncaught exceptions in Flex 1.5

2006-04-25 Thread Sergey Kovalyov
But is there any way to centralize the calling code? The only solution I see is to create own Delegate class with try..catch..finally statement and also with static method execute() that executes any function in any context using this Delegate class. That static method execute() is not obligator

<    1   2